diff --git a/Dockerfile b/Dockerfile index 0975855..7184d96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ USER node # initial update of av databases RUN freshclam -VOLUME /var/lib/clamav +# VOLUME /var/lib/clamav COPY --chown=node:clamav docker-entrypoint.sh /home/node/app/docker-entrypoint.sh RUN chmod +x /home/node/app/docker-entrypoint.sh ENV TZ="Europe/Vienna" diff --git a/ace-manifest.json b/ace-manifest.json index 485d3b5..3a4ec65 100644 --- a/ace-manifest.json +++ b/ace-manifest.json @@ -1,5 +1,17 @@ { "commands": { + "index:datasets": { + "settings": { + "loadApp": true, + "stayAlive": false + }, + "commandPath": "./commands/IndexDatasets", + "commandName": "index:datasets", + "description": "", + "args": [], + "aliases": [], + "flags": [] + }, "validate:checksum": { "settings": { "loadApp": true, diff --git a/app/Controllers/Http/Editor/DatasetsController.ts b/app/Controllers/Http/Editor/DatasetsController.ts new file mode 100644 index 0000000..f30dff9 --- /dev/null +++ b/app/Controllers/Http/Editor/DatasetsController.ts @@ -0,0 +1,175 @@ +import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'; +import { Client } from '@opensearch-project/opensearch'; +import Dataset from 'App/Models/Dataset'; +import XmlModel from 'App/Library/XmlModel'; +import { XMLBuilder } from 'xmlbuilder2/lib/interfaces'; +import { create } from 'xmlbuilder2'; +import { readFileSync } from 'fs'; +import { transform } from 'saxon-js'; + +// Create a new instance of the client +const client = new Client({ node: 'http://localhost:9200' }); // replace with your OpenSearch endpoint + +export default class DatasetsController { + private proc; + + constructor() { + this.proc = readFileSync('public/assets2/solr.sef.json'); + // Load the XSLT file + // this.proc = readFileSync('public/assets2/datasetxml2oai.sef.json'); + } + + public async index({}: HttpContextContract) {} + + public async create({}: HttpContextContract) {} + + public async store({}: HttpContextContract) {} + + public async show({}: HttpContextContract) {} + + public async edit({}: HttpContextContract) {} + + // public async update({}: HttpContextContract) {} + public async update({ request, response }) { + const id = 273; //request.param('id'); + const dataset = await Dataset.query().preload('xmlCache').where('id', id).firstOrFail(); + // add xml elements + let xml = create({ version: '1.0', encoding: 'UTF-8', standalone: true }, ''); + const datasetNode = xml.root().ele('Dataset'); + await this.createXmlRecord(dataset, datasetNode); + // const domNode = await this.getDatasetXmlDomNode(dataset); + // const xmlString = xml.end({ prettyPrint: true }); + + // const data = request.only(['field1', 'field2']); // get it from xslt + + // Create an index with non-default settings. + var index_name = 'tethys-features'; + + const xmlString = xml.end({ prettyPrint: false }); + let doc = ''; + try { + const result = await transform({ + // stylesheetFileName: `${config.TMP_BASE_DIR}/data-quality/rules/iati.sef.json`, + stylesheetText: this.proc, + destination: 'serialized', + // sourceFileName: sourceFile, + sourceText: xmlString, + // stylesheetParams: xsltParameter, + // logLevel: 10, + }); + doc = result.principalResult; + } catch (error) { + return response.status(500).json({ + message: 'An error occurred while creating the user', + error: error.message, + }); + } + + // var settings = { + // settings: { + // index: { + // number_of_shards: 4, + // number_of_replicas: 3, + // }, + // }, + // }; + // var test = await client.indices.create({ + // index: index_name, + // body: settings, + // }); + + // var document = { + // title: 'Sample Document', + // authors: [ + // { + // first_name: 'John', + // last_name: 'Doe', + // }, + // { + // first_name: 'Jane', + // last_name: 'Smith', + // }, + // ], + // year: '2018', + // genre: 'Crime fiction', + // }; + + // http://localhost:9200/datastets/_doc/1 + + // var id = '1'; + + try { + // console.log(doc); + let document = JSON.parse(`${doc}`); + + // https://opensearch.org/docs/2.1/opensearch/supported-field-types/geo-shape/ + // Define the new document + // const document = { + // title: 'Your Document Name', + // id: dataset.publish_id, + // doctype: 'GIS', + // // "location" : { + // // "type" : "point", + // // "coordinates" : [74.00, 40.71] + // // }, + // geo_location: { + // type: 'linestring', + // coordinates: [ + // [-77.03653, 38.897676], + // [-77.009051, 38.889939], + // ], + // }, + // // geo_location: 'BBOX (71.0589, 74.0060, 42.3601, 40.7128)' + // // geo_location: { + // // type: 'envelope', + // // coordinates: [ + // // [13.0, 53.0], + // // [14.0, 52.0], + // // ], // Define your BBOX coordinates + // // }, + // }; + + // Update the document + var test = await client.index({ + id: dataset.publish_id, + index: index_name, + body: document, + refresh: true, + }); + + // Return the result + return response.json(test.body); + } catch (error) { + // Handle any errors + console.error(error); + return response.status(500).json({ error: 'An error occurred while updating the data.' }); + } + } + + public async destroy({}: HttpContextContract) {} + + public async syncOpensearch({}: HttpContextContract) {} + + private async createXmlRecord(dataset: Dataset, datasetNode: XMLBuilder) { + const domNode = await this.getDatasetXmlDomNode(dataset); + if (domNode) { + datasetNode.import(domNode); + } + } + + private async getDatasetXmlDomNode(dataset: Dataset) { + const xmlModel = new XmlModel(dataset); + // xmlModel.setModel(dataset); + xmlModel.excludeEmptyFields(); + xmlModel.caching = true; + // const cache = dataset.xmlCache ? dataset.xmlCache : null; + // dataset.load('xmlCache'); + if (dataset.xmlCache) { + xmlModel.xmlCache = dataset.xmlCache; + } + + // return cache.getDomDocument(); + const domDocument: XMLBuilder | null = await xmlModel.getDomDocument(); + return domDocument; + } +} diff --git a/app/Library/XmlModel.ts b/app/Library/XmlModel.ts index df15916..96ca60f 100644 --- a/app/Library/XmlModel.ts +++ b/app/Library/XmlModel.ts @@ -85,7 +85,7 @@ export default class XmlModel { this.cache = this.cache || new DocumentXmlCache(); this.cache.document_id = dataset.id; this.cache.xml_version = 1; // (int)$this->strategy->getVersion(); - this.cache.server_date_modified = dataset.server_date_modified.toFormat("yyyy-MM-dd HH:mm:ss"); + this.cache.server_date_modified = dataset.server_date_modified.toFormat('yyyy-MM-dd HH:mm:ss'); this.cache.xml_data = domDocument.end(); await this.cache.save(); } @@ -97,7 +97,7 @@ export default class XmlModel { false, true, )?.node; - if(node != undefined) { + if (node != undefined) { domDocument = builder({ version: '1.0', encoding: 'UTF-8', standalone: true }, node); } } diff --git a/app/Models/BaseModel.ts b/app/Models/BaseModel.ts index 5954db6..324d59e 100644 --- a/app/Models/BaseModel.ts +++ b/app/Models/BaseModel.ts @@ -13,7 +13,6 @@ import { BaseModel as LucidBaseModel } from '@ioc:Adonis/Lucid/Orm'; // } // } - /** * Helper to find if value is a valid Object or * not @@ -22,7 +21,7 @@ export function isObject(value: any): boolean { return value !== null && typeof value === 'object' && !Array.isArray(value); } -export default class BaseModel extends LucidBaseModel { +export default class BaseModel extends LucidBaseModel { /** * When `fill` method is called, then we may have a situation where it * removed the values which exists in `original` and hence the dirty @@ -117,7 +116,6 @@ export default class BaseModel extends LucidBaseModel { return this; } - } // export class DatasetRelatedBaseModel extends LucidBaseModel { diff --git a/app/Models/Collection.ts b/app/Models/Collection.ts index 0d67be3..e8a0c79 100644 --- a/app/Models/Collection.ts +++ b/app/Models/Collection.ts @@ -49,5 +49,4 @@ export default class Collection extends BaseModel { foreignKey: 'role_id', }) public collectionRole: BelongsTo; - } diff --git a/app/Models/Traits/DatasetExtension.ts b/app/Models/Traits/DatasetExtension.ts index 926f14c..0403014 100644 --- a/app/Models/Traits/DatasetExtension.ts +++ b/app/Models/Traits/DatasetExtension.ts @@ -30,7 +30,6 @@ export type DatasetRelatedModel = | typeof DatasetIdentifier | typeof File; - export default abstract class DatasetExtension extends LucidBaseModel { public abstract id; public externalFields: Record = this.getExternalFields(); @@ -323,7 +322,7 @@ export default abstract class DatasetExtension extends LucidBaseModel { private convertColumnToFieldname(columnName: string): string { return columnName .split(/[-_]/) - .map((word) => (word.charAt(0).toUpperCase() + word.slice(1))) + .map((word) => word.charAt(0).toUpperCase() + word.slice(1)) .join(''); } } diff --git a/commands/IndexDatasets.ts b/commands/IndexDatasets.ts new file mode 100644 index 0000000..6044af4 --- /dev/null +++ b/commands/IndexDatasets.ts @@ -0,0 +1,115 @@ +import { BaseCommand, flags } from '@adonisjs/core/build/standalone'; +import Logger from '@ioc:Adonis/Core/Logger'; +import { XMLBuilder } from 'xmlbuilder2/lib/interfaces'; +import { create } from 'xmlbuilder2'; +import Dataset from 'App/Models/Dataset'; +import XmlModel from 'App/Library/XmlModel'; +import { readFileSync } from 'fs'; +import { transform } from 'saxon-js'; +import { Client } from '@opensearch-project/opensearch'; + +const client = new Client({ node: 'http://localhost:9200' }); // replace with your OpenSearch endpoint + +export default class IndexDatasets extends BaseCommand { + public static commandName = 'index:datasets'; + public static description = 'Index datasets based on publish_id'; + + @flags.number({ alias: 'p' }) + public publish_id: number; + + public static settings = { + /** + * Set the following value to true, if you want to load the application + * before running the command. Don't forget to call `node ace generate:manifest` + * afterwards. + */ + loadApp: true, + + /** + * Set the following value to true, if you want this command to keep running until + * you manually decide to exit the process. Don't forget to call + * `node ace generate:manifest` afterwards. + */ + stayAlive: false, + }; + + public async run() { + this.logger.info('Hello world!'); + // const { default: Dataset } = await import('App/Models/Dataset'); + const datasets = await this.getDatasets(); + const proc = readFileSync('public/assets2/solr.sef.json'); + const index_name = 'tethys-records'; + + for (var dataset of datasets) { + // Logger.info(`File publish_id ${dataset.publish_id}`); + const jsonString = await this.getJsonString(dataset, proc); + // console.log(jsonString); + await this.indexDocument(dataset, index_name, jsonString); + } + } + + private async getDatasets(): Promise { + const query = Dataset.query().preload('xmlCache').where('server_state', 'published'); + if (this.publish_id) { + query.where('publish_id', this.publish_id); + } + return await query; + } + + private async getJsonString(dataset, proc) { + let xml = create({ version: '1.0', encoding: 'UTF-8', standalone: true }, ''); + const datasetNode = xml.root().ele('Dataset'); + await this.createXmlRecord(dataset, datasetNode); + const xmlString = xml.end({ prettyPrint: false }); + + try { + const result = await transform({ + stylesheetText: proc, + destination: 'serialized', + sourceText: xmlString, + }); + return result.principalResult; + } catch (error) { + Logger.error(`An error occurred while creating the user, error: ${error.message},`); + return ''; + } + } + + private async indexDocument(dataset: Dataset, index_name: string, doc: string): Promise { + try { + let document = JSON.parse(doc); + await client.index({ + id: dataset.publish_id?.toString(), + index: index_name, + body: document, + refresh: true, + }); + Logger.info(`dataset with publish_id ${dataset.publish_id} successfully indexed`); + } catch (error) { + Logger.error(`An error occurred while uindexing datsaet with publish_id ${dataset.publish_id}.`); + } + } + + private async createXmlRecord(dataset: Dataset, datasetNode: XMLBuilder): Promise { + const domNode = await this.getDatasetXmlDomNode(dataset); + if (domNode) { + datasetNode.import(domNode); + } + } + + private async getDatasetXmlDomNode(dataset: Dataset): Promise { + const xmlModel = new XmlModel(dataset); + // xmlModel.setModel(dataset); + xmlModel.excludeEmptyFields(); + xmlModel.caching = true; + // const cache = dataset.xmlCache ? dataset.xmlCache : null; + // dataset.load('xmlCache'); + if (dataset.xmlCache) { + xmlModel.xmlCache = dataset.xmlCache; + } + + // return cache.getDomDocument(); + const domDocument: XMLBuilder | null = await xmlModel.getDomDocument(); + return domDocument; + } +} diff --git a/config/database.ts b/config/database.ts index 0952a45..36a1748 100644 --- a/config/database.ts +++ b/config/database.ts @@ -48,8 +48,7 @@ const databaseConfig: DatabaseConfig = { }, healthCheck: false, debug: false, - pool: { min: 1, max: 100 }, - + pool: { min: 1, max: 100 }, }, }, }; diff --git a/package-lock.json b/package-lock.json index b092ca3..0041ef5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,6 +21,7 @@ "@fontsource/inter": "^5.0.1", "@inertiajs/inertia": "^0.11.1", "@inertiajs/vue3": "^1.0.0", + "@opensearch-project/opensearch": "^2.4.0", "bcryptjs": "^2.4.3", "clamscan": "^2.1.2", "crypto": "^1.0.1", @@ -46,8 +47,8 @@ "@babel/plugin-transform-runtime": "^7.19.6", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.18.6", - "@japa/preset-adonis": "^1.0.16", - "@japa/runner": "^2.0.8", + "@japa/preset-adonis": "^1.2.0", + "@japa/runner": "^2.5.1", "@mdi/js": "^7.1.96", "@symfony/webpack-encore": "^4.2.0", "@tailwindcss/forms": "^0.5.2", @@ -65,7 +66,7 @@ "eslint-config-prettier": "^9.0.0", "eslint-plugin-adonis": "^2.1.1", "eslint-plugin-prettier": "^5.0.0-alpha.2", - "naive-ui": "^2.34.3", + "naive-ui": "^2.35.0", "numeral": "^2.0.6", "pinia": "^2.0.30", "pino-pretty": "^10.0.0", @@ -150,9 +151,9 @@ } }, "node_modules/@adonisjs/assembler": { - "version": "5.9.5", - "resolved": "https://registry.npmjs.org/@adonisjs/assembler/-/assembler-5.9.5.tgz", - "integrity": "sha512-wCtQRZ4KoIZkzi+ux5NrDUDNASRomytRZ7AZBdw8Hi3LlEOeac4T8+47y7gXwJFKH2nnGoiIwnXGIgJyolXEfQ==", + "version": "5.9.6", + "resolved": "https://registry.npmjs.org/@adonisjs/assembler/-/assembler-5.9.6.tgz", + "integrity": "sha512-8CLAX8vlsfsYmtoBxI8YfyZyNZwtUB0FiplEbd8hmo5iv1/52SU2LEU1R6gPk4hkJbqHx22aS8UeZoogPqnmwg==", "dev": true, "dependencies": { "@adonisjs/application": "^5.2.5", @@ -173,6 +174,9 @@ "picomatch": "^2.3.1", "slash": "^3.0.0" }, + "engines": { + "node": ">=14.0.0" + }, "peerDependencies": { "@adonisjs/core": "^5.1.0" } @@ -779,18 +783,18 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz", - "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", + "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz", - "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", + "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", @@ -798,10 +802,10 @@ "@babel/generator": "^7.23.0", "@babel/helper-compilation-targets": "^7.22.15", "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.0", + "@babel/helpers": "^7.23.2", "@babel/parser": "^7.23.0", "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.0", + "@babel/traverse": "^7.23.2", "@babel/types": "^7.23.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", @@ -949,9 +953,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz", - "integrity": "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -1174,13 +1178,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.23.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz", - "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", + "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", "dev": true, "dependencies": { "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.0", + "@babel/traverse": "^7.23.2", "@babel/types": "^7.23.0" }, "engines": { @@ -1262,9 +1266,9 @@ } }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.0.tgz", - "integrity": "sha512-kYsT+f5ARWF6AdFmqoEEp+hpqxEB8vGmRWfw2aj78M2vTwS2uHW91EF58iFm1Z9U8Y/RrLu2XKJn46P9ca1b0w==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.2.tgz", + "integrity": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==", "dev": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.15", @@ -1588,14 +1592,14 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz", - "integrity": "sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", + "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.9", + "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { @@ -2206,16 +2210,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz", - "integrity": "sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", + "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", "dev": true, "dependencies": { "@babel/helper-module-imports": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.5", - "babel-plugin-polyfill-corejs3": "^0.8.3", - "babel-plugin-polyfill-regenerator": "^0.5.2", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", "semver": "^6.3.1" }, "engines": { @@ -2392,12 +2396,12 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.20.tgz", - "integrity": "sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", + "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.20", + "@babel/compat-data": "^7.23.2", "@babel/helper-compilation-targets": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-option": "^7.22.15", @@ -2423,15 +2427,15 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.15", + "@babel/plugin-transform-async-generator-functions": "^7.23.2", "@babel/plugin-transform-async-to-generator": "^7.22.5", "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.15", + "@babel/plugin-transform-block-scoping": "^7.23.0", "@babel/plugin-transform-class-properties": "^7.22.5", "@babel/plugin-transform-class-static-block": "^7.22.11", "@babel/plugin-transform-classes": "^7.22.15", "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.15", + "@babel/plugin-transform-destructuring": "^7.23.0", "@babel/plugin-transform-dotall-regex": "^7.22.5", "@babel/plugin-transform-duplicate-keys": "^7.22.5", "@babel/plugin-transform-dynamic-import": "^7.22.11", @@ -2443,9 +2447,9 @@ "@babel/plugin-transform-literals": "^7.22.5", "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.15", - "@babel/plugin-transform-modules-systemjs": "^7.22.11", + "@babel/plugin-transform-modules-amd": "^7.23.0", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-modules-systemjs": "^7.23.0", "@babel/plugin-transform-modules-umd": "^7.22.5", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", "@babel/plugin-transform-new-target": "^7.22.5", @@ -2454,7 +2458,7 @@ "@babel/plugin-transform-object-rest-spread": "^7.22.15", "@babel/plugin-transform-object-super": "^7.22.5", "@babel/plugin-transform-optional-catch-binding": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.22.15", + "@babel/plugin-transform-optional-chaining": "^7.23.0", "@babel/plugin-transform-parameters": "^7.22.15", "@babel/plugin-transform-private-methods": "^7.22.5", "@babel/plugin-transform-private-property-in-object": "^7.22.11", @@ -2471,10 +2475,10 @@ "@babel/plugin-transform-unicode-regex": "^7.22.5", "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", "@babel/preset-modules": "0.1.6-no-external-plugins", - "@babel/types": "^7.22.19", - "babel-plugin-polyfill-corejs2": "^0.4.5", - "babel-plugin-polyfill-corejs3": "^0.8.3", - "babel-plugin-polyfill-regenerator": "^0.5.2", + "@babel/types": "^7.23.0", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -2509,9 +2513,9 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.0.tgz", - "integrity": "sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz", + "integrity": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2534,9 +2538,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.23.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz", - "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -2560,9 +2564,9 @@ } }, "node_modules/@babel/traverse": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz", - "integrity": "sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", "dev": true, "dependencies": { "@babel/code-frame": "^7.22.13", @@ -2678,9 +2682,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.0.tgz", - "integrity": "sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz", + "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -2716,9 +2720,9 @@ "dev": true }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -2755,18 +2759,18 @@ } }, "node_modules/@eslint/js": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz", - "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "version": "8.51.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.51.0.tgz", + "integrity": "sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@faker-js/faker": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.1.0.tgz", - "integrity": "sha512-38DT60rumHfBYynif3lmtxMqMqmsOQIxQgEuPZxCk2yUYN0eqWpTACgxi0VpidvsJB8CRxCpvP7B3anK85FjtQ==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.2.0.tgz", + "integrity": "sha512-VacmzZqVxdWdf9y64lDOMZNDMM/FQdtM9IsaOPKOm2suYwEatb8VkdHqOzXcDnZbk7YDE2BmsJmy/2Hmkn563g==", "funding": [ { "type": "opencollective", @@ -2779,14 +2783,14 @@ } }, "node_modules/@fontsource/archivo-black": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@fontsource/archivo-black/-/archivo-black-5.0.13.tgz", - "integrity": "sha512-zFAxd0j3XrVBqSHMLdA0A7ZExGhgM7EO0Sx7MewQdRcYGJ45PBojGIp22f5Deb8DuZB9nESz+qAHABUF1XKpFA==" + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/@fontsource/archivo-black/-/archivo-black-5.0.15.tgz", + "integrity": "sha512-5NDJFAsYSZ7lkVQL6d+ulB46KiQGNOQsKdpR+xKSx5CfaaR1Cx9TZVDqvsLtnh9baEJThzwzNsydtQP+SGTg+w==" }, "node_modules/@fontsource/inter": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-5.0.8.tgz", - "integrity": "sha512-28knWH1BfOiRalfLs90U4sge5mpQ8ZH6FS0PTT+IZMKrZ7wNHDHRuKa1kQJg+uHcc6axBppnxll+HXM4c7zo/Q==" + "version": "5.0.13", + "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-5.0.13.tgz", + "integrity": "sha512-FVIBhP9X/x02blF2VQl2Pji/c3jUjkWEQ9bom4vIrGwO1MlHRDXhXx9iA1hhjpcCIfH3oX68ihIBdYcFnOXhsg==" }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.11", @@ -2822,9 +2826,9 @@ "dev": true }, "node_modules/@inertiajs/core": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-1.0.11.tgz", - "integrity": "sha512-EFUvVsq8TvvIaUDrfbL/pvEBvu67gdBvV/cyepDZqCdAolld0N3AO+TZ7i7UtwKwLKw8eAFbixgbkicugojhGA==", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-1.0.12.tgz", + "integrity": "sha512-N9RBmkL7p6N81NT4pBJpU6CmLqO1/VrTdVjIoEjnOpqTjNJnX6Zyq4j8ld2tqLDEd7FZ2tITY30AV1ncvI7B6g==", "dependencies": { "axios": "^1.2.0", "deepmerge": "^4.0.0", @@ -2853,11 +2857,11 @@ } }, "node_modules/@inertiajs/vue3": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@inertiajs/vue3/-/vue3-1.0.11.tgz", - "integrity": "sha512-4lqOsXWXxbeqq5dXZhpNSFabNfxHItHjc005+dqd+cKbhZ5n+dr8n2IGSDBfMNcT7bJfDUyUS2XKdY5y1EnAuw==", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@inertiajs/vue3/-/vue3-1.0.12.tgz", + "integrity": "sha512-ycMtiCequV/IyPhzXQAnS0uFXTBVkmaXqygAADrLNtkLczGqpCuazULXp3lIArJfotjtx10kEQ8ojTHcQ4bg1g==", "dependencies": { - "@inertiajs/core": "1.0.11", + "@inertiajs/core": "1.0.12", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" }, @@ -3198,9 +3202,9 @@ "dev": true }, "node_modules/@mdi/js": { - "version": "7.2.96", - "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.2.96.tgz", - "integrity": "sha512-paR9M9ZT7rKbh2boksNUynuSZMHhqRYnEZOm/KrZTjQ4/FzyhjLHuvw/8XYzP+E7fS4+/Ms/82EN1pl/OFsiIA==", + "version": "7.3.67", + "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.3.67.tgz", + "integrity": "sha512-MnRjknFqpTC6FifhGHjZ0+QYq2bAkZFQqIj8JA2AdPZbBxUvr8QSgB2yPAJ8/ob/XkR41xlg5majDR3c1JP1hw==", "dev": true }, "node_modules/@mrmlnc/readdir-enhanced": { @@ -3320,6 +3324,22 @@ "node": ">=8.0" } }, + "node_modules/@opensearch-project/opensearch": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@opensearch-project/opensearch/-/opensearch-2.4.0.tgz", + "integrity": "sha512-r0ZNIlDxAua1ZecOBJ8qOXshf2ZQhNKmfly7o0aNuACf0pDa6Et/8mWMZuaFOu7xlNEeRNB7IjDQUYFy2SPElw==", + "dependencies": { + "aws4": "^1.11.0", + "debug": "^4.3.1", + "hpagent": "^1.2.0", + "ms": "^2.1.3", + "secure-json-parse": "^2.4.0" + }, + "engines": { + "node": ">=10", + "yarn": "^1.22.10" + } + }, "node_modules/@phc/format": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@phc/format/-/format-1.0.0.tgz", @@ -3872,9 +3892,9 @@ "integrity": "sha512-92b6q7CSYBMVZDtMZh5PuKm3LjZwcU7s6H8e9sU20Z1tOrTuXN+Hz3VuP9E8axiQRaCoiEOMN1duqPCEIhamrQ==" }, "node_modules/@types/chai": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.6.tgz", - "integrity": "sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw==", + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.8.tgz", + "integrity": "sha512-yW/qTM4mRBBcsA9Xw9FbcImYtFPY7sgr+G/O5RDYVmxiy9a+pE5FyoFUi8JYCZY5nicj8atrr1pcfPiYpeNGOA==", "dev": true }, "node_modules/@types/clamscan": { @@ -3922,9 +3942,9 @@ "dev": true }, "node_modules/@types/eslint": { - "version": "8.44.3", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.3.tgz", - "integrity": "sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==", + "version": "8.44.4", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.4.tgz", + "integrity": "sha512-lOzjyfY/D9QR4hY9oblZ76B90MYTB3RrQ4z2vBIJKj9ROCRqdkYl2gSUx1x1a4IWPjKJZLL4Aw1Zfay7eMnmnA==", "dev": true, "peer": true, "dependencies": { @@ -3951,9 +3971,9 @@ "peer": true }, "node_modules/@types/express": { - "version": "4.17.18", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.18.tgz", - "integrity": "sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==", + "version": "4.17.19", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.19.tgz", + "integrity": "sha512-UtOfBtzN9OvpZPPbnnYunfjM7XCI4jyk1NvnFhTVz5krYAnW4o5DCoIekvms+8ApqhB4+9wSge1kBijdfTSmfg==", "dev": true, "dependencies": { "@types/body-parser": "*", @@ -4050,9 +4070,9 @@ "dev": true }, "node_modules/@types/katex": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.14.0.tgz", - "integrity": "sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA==", + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.3.tgz", + "integrity": "sha512-CeVMX9EhVUW8MWnei05eIRks4D5Wscw/W9Byz1s3PA+yJvcdvq9SaDjiUKvRvEgjpdTyJMjQA43ae4KTwsvOPg==", "dev": true }, "node_modules/@types/leaflet": { @@ -4102,9 +4122,12 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.8.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.0.tgz", - "integrity": "sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ==" + "version": "20.8.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.6.tgz", + "integrity": "sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==", + "dependencies": { + "undici-types": "~5.25.1" + } }, "node_modules/@types/pino": { "version": "6.3.12", @@ -4227,14 +4250,14 @@ } }, "node_modules/@types/validator": { - "version": "13.11.2", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.2.tgz", - "integrity": "sha512-nIKVVQKT6kGKysnNt+xLobr+pFJNssJRi2s034wgWeFBUx01fI8BeHTW2TcRp7VcFu9QCYG8IlChTuovcm0oKQ==" + "version": "13.11.3", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.3.tgz", + "integrity": "sha512-jxjhh33aTYDHnrV1vZ3AvWQHfrGx2f5UxKjaP13l5q04fG+/hCKKm0MfodIoCqxevhbcfBb6ZjynyHuQ/jueGQ==" }, "node_modules/@types/ws": { - "version": "8.5.6", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.6.tgz", - "integrity": "sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==", + "version": "8.5.7", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.7.tgz", + "integrity": "sha512-6UrLjiDUvn40CMrAubXuIVtj2PEfKDffJS7ychvnPU44j+KVeXmdHHTgqcM/dxLUTHxlXHiFM8Skmb8ozGdTnQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -4562,9 +4585,9 @@ } }, "node_modules/@vue/devtools-api": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.0.tgz", - "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.1.tgz", + "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==", "dev": true }, "node_modules/@vue/reactivity": { @@ -5539,6 +5562,11 @@ "postcss": "^8.1.0" } }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + }, "node_modules/axios": { "version": "0.21.4", "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", @@ -5648,13 +5676,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz", - "integrity": "sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==", + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.2", + "@babel/helper-define-polyfill-provider": "^0.4.3", "semver": "^6.3.1" }, "peerDependencies": { @@ -5671,12 +5699,12 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz", - "integrity": "sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==", + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz", + "integrity": "sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.2", + "@babel/helper-define-polyfill-provider": "^0.4.3", "core-js-compat": "^3.32.2" }, "peerDependencies": { @@ -5684,12 +5712,12 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz", - "integrity": "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.2" + "@babel/helper-define-polyfill-provider": "^0.4.3" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -6144,9 +6172,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001542", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001542.tgz", - "integrity": "sha512-UrtAXVcj1mvPBFQ4sKd38daP8dEcXXr5sQe6QNNinaPd0iA/cxg9/l3VrSdL73jgw5sKyuQ6jNgiKO12W3SsVA==", + "version": "1.0.30001549", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001549.tgz", + "integrity": "sha512-qRp48dPYSCYaP+KurZLhDYdVE+yEyht/3NlmcJgVQ2VMGt6JL36ndQ/7rgspdZsJuxDPFIo/OzBT2+GmIJ53BA==", "dev": true, "funding": [ { @@ -6328,9 +6356,9 @@ } }, "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -7360,9 +7388,9 @@ } }, "node_modules/date-fns-tz": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/date-fns-tz/-/date-fns-tz-1.3.8.tgz", - "integrity": "sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/date-fns-tz/-/date-fns-tz-2.0.0.tgz", + "integrity": "sha512-OAtcLdB9vxSXTWHdT8b398ARImVwQMyjfYGkKD2zaGpHseG2UPHbHjXELReErZFxWdSLph3c2zOaaTyHfOhERQ==", "dev": true, "peerDependencies": { "date-fns": ">=2.0.0" @@ -8040,9 +8068,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.537", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.537.tgz", - "integrity": "sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==", + "version": "1.4.556", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.556.tgz", + "integrity": "sha512-6RPN0hHfzDU8D56E72YkDvnLw5Cj2NMXZGg3UkgyoHxjVhG99KZpsKgBWMmTy0Ei89xwan+rbRsVB9yzATmYzQ==", "dev": true }, "node_modules/emittery": { @@ -8191,15 +8219,15 @@ } }, "node_modules/eslint": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz", - "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "version": "8.51.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.51.0.tgz", + "integrity": "sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.50.0", + "@eslint/js": "8.51.0", "@humanwhocodes/config-array": "^0.11.11", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -8273,9 +8301,9 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz", - "integrity": "sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz", + "integrity": "sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0", @@ -8385,9 +8413,9 @@ "dev": true }, "node_modules/eslint/node_modules/globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -9081,13 +9109,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "peer": true, + "bin": { + "flat": "cli.js" + } + }, "node_modules/flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", + "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", "dev": true, "dependencies": { - "flatted": "^3.2.7", + "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, @@ -9194,9 +9232,9 @@ } }, "node_modules/fraction.js": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz", - "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "engines": { "node": "*" @@ -9269,9 +9307,12 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/generic-pool": { "version": "3.9.0", @@ -9649,12 +9690,9 @@ "dev": true }, "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "engines": { "node": ">= 0.4.0" } @@ -9921,9 +9959,9 @@ } }, "node_modules/highlight.js": { - "version": "11.8.0", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz", - "integrity": "sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==", + "version": "11.9.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.9.0.tgz", + "integrity": "sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==", "dev": true, "engines": { "node": ">=12.0.0" @@ -9971,6 +10009,14 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/hpagent": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", + "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==", + "engines": { + "node": ">=14" + } + }, "node_modules/html-entities": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", @@ -10228,9 +10274,9 @@ } }, "node_modules/inflation": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inflation/-/inflation-2.0.0.tgz", - "integrity": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/inflation/-/inflation-2.1.0.tgz", + "integrity": "sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==", "engines": { "node": ">= 0.8.0" } @@ -10880,9 +10926,9 @@ } }, "node_modules/jest-util/node_modules/@types/yargs": { - "version": "17.0.26", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.26.tgz", - "integrity": "sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==", + "version": "17.0.28", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.28.tgz", + "integrity": "sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" @@ -11132,9 +11178,9 @@ } }, "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { "json-buffer": "3.0.1" @@ -11219,13 +11265,13 @@ } }, "node_modules/launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", "dev": true, "dependencies": { "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" + "shell-quote": "^1.8.1" } }, "node_modules/leaflet": { @@ -11401,12 +11447,12 @@ } }, "node_modules/loupe": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", - "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", "dev": true, "dependencies": { - "get-func-name": "^2.0.0" + "get-func-name": "^2.0.1" } }, "node_modules/lower-case": { @@ -11440,9 +11486,9 @@ "integrity": "sha512-QS9p+Q20YBxpE0dJBnF6CPURP7p1GUsxnhTxTWH5nG3A1F5w8Rg3T4Xyh5UlrFSbHp88oOciVP/0agsNLhkHdQ==" }, "node_modules/magic-string": { - "version": "0.30.4", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.4.tgz", - "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" }, @@ -12012,22 +12058,22 @@ } }, "node_modules/naive-ui": { - "version": "2.34.4", - "resolved": "https://registry.npmjs.org/naive-ui/-/naive-ui-2.34.4.tgz", - "integrity": "sha512-aPG8PDfhSzIzn/jSC9y3Jb3Pe2wHJ7F0cFV1EWlbImSrZECeUmoc+fIcOSWbizoztkKfaUAeKwYdMl09MKkj1g==", + "version": "2.35.0", + "resolved": "https://registry.npmjs.org/naive-ui/-/naive-ui-2.35.0.tgz", + "integrity": "sha512-PdnLpOip1LQaKs5+rXLZoPDPQkTq26TnHWeABvUA2eOQjtHxE4+TQvj0Jq/W8clM2On/7jptoGmenLt48G3Bhg==", "dev": true, "dependencies": { - "@css-render/plugin-bem": "^0.15.10", - "@css-render/vue3-ssr": "^0.15.10", - "@types/katex": "^0.14.0", - "@types/lodash": "^4.14.181", - "@types/lodash-es": "^4.17.6", - "async-validator": "^4.0.7", - "css-render": "^0.15.10", - "date-fns": "^2.28.0", - "date-fns-tz": "^1.3.3", + "@css-render/plugin-bem": "^0.15.12", + "@css-render/vue3-ssr": "^0.15.12", + "@types/katex": "^0.16.2", + "@types/lodash": "^4.14.198", + "@types/lodash-es": "^4.17.9", + "async-validator": "^4.2.5", + "css-render": "^0.15.12", + "date-fns": "^2.30.0", + "date-fns-tz": "^2.0.0", "evtd": "^0.2.4", - "highlight.js": "^11.5.0", + "highlight.js": "^11.8.0", "lodash": "^4.17.21", "lodash-es": "^4.17.21", "seemly": "^0.3.6", @@ -12339,9 +12385,9 @@ } }, "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.0.tgz", + "integrity": "sha512-HQ4J+ic8hKrgIt3mqk6cVOVrW2ozL4KdvHlqpBv9vDYWx9ysAgENAdvy4FoGF+KFdhR7nQTNm5J0ctAeOwn+3g==", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -12377,9 +12423,12 @@ "dev": true }, "node_modules/on-exit-leak-free": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.0.tgz", - "integrity": "sha512-VuCaZZAjReZ3vUwgOB8LxAosIurDiAW0s13rI1YwmaP++jvcxP77AWoQvenZebpCA2m8WC1/EosPYPMjnRAp/w==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", + "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", + "engines": { + "node": ">=14.0.0" + } }, "node_modules/on-finished": { "version": "2.4.1", @@ -12938,9 +12987,9 @@ } }, "node_modules/pinia": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.1.6.tgz", - "integrity": "sha512-bIU6QuE5qZviMmct5XwCesXelb5VavdOWKWaB17ggk++NUwQWWbP5YnsONTk3b752QkW9sACiR81rorpeOMSvQ==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.1.7.tgz", + "integrity": "sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==", "dev": true, "dependencies": { "@vue/devtools-api": "^6.5.0", @@ -13037,9 +13086,9 @@ } }, "node_modules/pino-pretty": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.2.0.tgz", - "integrity": "sha512-tRvpyEmGtc2D+Lr3FulIZ+R1baggQ4S3xD2Ar93KixFEDx6SEAUP3W5aYuEw1C73d6ROrNcB2IXLteW8itlwhA==", + "version": "10.2.3", + "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.2.3.tgz", + "integrity": "sha512-4jfIUc8TC1GPUfDyMSlW1STeORqkoxec71yhxIpLDQapUu8WOuoz2TTCoidrIssyz78LZC69whBMPIKCMbi3cw==", "dependencies": { "colorette": "^2.0.7", "dateformat": "^4.6.3", @@ -13061,9 +13110,9 @@ } }, "node_modules/pino-pretty/node_modules/sonic-boom": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.4.0.tgz", - "integrity": "sha512-zSe9QQW30nPzjkSJ0glFQO5T9lHsk39tz+2bAAwCj8CNgEG8ItZiX7Wb2ZgA8I04dwRGCcf1m3ABJa8AYm12Fw==", + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.7.0.tgz", + "integrity": "sha512-IudtNvSqA/ObjN97tfgNmOKyDOs4dNcg4cUUsHDebqsgb8wGBBwb31LIgShNO8fye0dFI52X1+tFoKKI6Rq1Gg==", "dependencies": { "atomic-sleep": "^1.0.0" } @@ -14431,9 +14480,9 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -14634,19 +14683,21 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/saxon-js": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/saxon-js/-/saxon-js-2.5.0.tgz", - "integrity": "sha512-bdUmnW//mNha5OFYGDA/rqh+4ZuHPtYUQor8yqnOIhFb0JxD+mauFuZbp2GpEwHnTEpFTQ8OcoVFLcDxu7SXAg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/saxon-js/-/saxon-js-2.6.0.tgz", + "integrity": "sha512-4dinQEGz/OQX0cnmwLTbjVFY9KciMGRyfA6AUsMCO/mKDOwDxOJFmzoLStieTpEiOB/98E1E4VKV1ElsiD88yQ==", "dependencies": { - "axios": "^0.24.0" + "axios": "^1.5.1" } }, "node_modules/saxon-js/node_modules/axios": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", - "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.1.tgz", + "integrity": "sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==", "dependencies": { - "follow-redirects": "^1.14.4" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/schema-utils": { @@ -16062,9 +16113,9 @@ } }, "node_modules/terser": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz", - "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==", + "version": "5.22.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.22.0.tgz", + "integrity": "sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -16351,15 +16402,16 @@ "dev": true }, "node_modules/ts-loader": { - "version": "9.4.4", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", - "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.0.tgz", + "integrity": "sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==", "dev": true, "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", - "semver": "^7.3.4" + "semver": "^7.3.4", + "source-map": "^0.7.4" }, "engines": { "node": ">=12.0.0" @@ -16427,6 +16479,15 @@ "node": ">=8" } }, + "node_modules/ts-loader/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, "node_modules/ts-loader/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -16549,6 +16610,11 @@ "node": ">= 0.8" } }, + "node_modules/undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -16854,18 +16920,18 @@ } }, "node_modules/vue-facing-decorator": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vue-facing-decorator/-/vue-facing-decorator-3.0.3.tgz", - "integrity": "sha512-gMeyi6l+IBUijBITIzVcOQ6fPYHqbfqRGmazMmVNkR/TE+aW7OLDF2MW6+GBnzC+hUKTm8KtK5uPw1x/pkiZmA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/vue-facing-decorator/-/vue-facing-decorator-3.0.4.tgz", + "integrity": "sha512-Lk90PevJllB6qRRdLvLFjATZrv00nof1Ob6afavKL7Pc7V3eEin3vhdvEDRORdWKVvNoXhJbHejngWVuT0Pt0g==", "dev": true, "peerDependencies": { "vue": "^3.0.0" } }, "node_modules/vue-loader": { - "version": "17.2.2", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.2.2.tgz", - "integrity": "sha512-aqNvKJvnz2A/6VWeJZodAo8XLoAlVwBv+2Z6dama+LHsAF+P/xijQ+OfWrxIs0wcGSJduvdzvTuATzXbNKkpiw==", + "version": "17.3.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.3.0.tgz", + "integrity": "sha512-VUURABiN0TIUz0yvJJ/V/rZjGUh10JZtD+IDI5bXFslzFi9mV6ebKkPzoqiSi8e0vh8Ip7JHJx+I0AzAG0KsCA==", "dev": true, "dependencies": { "chalk": "^4.1.0", @@ -17015,9 +17081,9 @@ } }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "dev": true, "peer": true, "dependencies": { @@ -17119,13 +17185,14 @@ } }, "node_modules/webpack-cli/node_modules/webpack-merge": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", - "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "dev": true, "peer": true, "dependencies": { "clone-deep": "^4.0.1", + "flat": "^5.0.2", "wildcard": "^2.0.0" }, "engines": { @@ -17548,25 +17615,27 @@ } }, "node_modules/xslt3": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/xslt3/-/xslt3-2.5.0.tgz", - "integrity": "sha512-ZtdcA7di6dATmN21t3yX9tAbpuXPda2gjBCwCBSdTr5BFVbDFtIeaOhi50onwz785Wowr04m0qdb7wCL80y0fQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xslt3/-/xslt3-2.6.0.tgz", + "integrity": "sha512-3xL1+40zMR8FfCrjOnqVaLM88lJ0UOwMhJAB5Wp6fC2fG+Wcd5ydnKMQDET1byl22v67U05Qaf65/GsAl2ca+Q==", "dev": true, "dependencies": { - "axios": "^0.24.0", - "saxon-js": "^2.5.0" + "axios": "^1.5.1", + "saxon-js": "^2.6.0" }, "bin": { "xslt3": "xslt3.js" } }, "node_modules/xslt3/node_modules/axios": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", - "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.1.tgz", + "integrity": "sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.4" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/xtend": { @@ -17584,9 +17653,9 @@ "dev": true }, "node_modules/yaml": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.2.tgz", - "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.3.tgz", + "integrity": "sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==", "dev": true, "engines": { "node": ">= 14" diff --git a/package.json b/package.json index e7c4397..0800cfb 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "type-check": "tsc --noEmit", "dev": "node ace serve --watch", "compress:xslt": "./node_modules/xslt3/xslt3.js -xsl:public/assets2/datasetxml2oai-pmh.xslt -export:public/assets2/datasetxml2oai.sef.json -t -nogo '-ns:##html5'", + "compress:solr": "./node_modules/xslt3/xslt3.js -xsl:public/assets2/solr.xslt -export:public/assets2/solr.sef.json -t -nogo '-ns:##html5'", "build": "node ace build --production", "start": "node server.js", "lint": "eslint . --ext=.ts", @@ -27,8 +28,8 @@ "@babel/plugin-transform-runtime": "^7.19.6", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.18.6", - "@japa/preset-adonis": "^1.0.16", - "@japa/runner": "^2.0.8", + "@japa/preset-adonis": "^1.2.0", + "@japa/runner": "^2.5.1", "@mdi/js": "^7.1.96", "@symfony/webpack-encore": "^4.2.0", "@tailwindcss/forms": "^0.5.2", @@ -46,7 +47,7 @@ "eslint-config-prettier": "^9.0.0", "eslint-plugin-adonis": "^2.1.1", "eslint-plugin-prettier": "^5.0.0-alpha.2", - "naive-ui": "^2.34.3", + "naive-ui": "^2.35.0", "numeral": "^2.0.6", "pinia": "^2.0.30", "pino-pretty": "^10.0.0", @@ -77,6 +78,7 @@ "@fontsource/inter": "^5.0.1", "@inertiajs/inertia": "^0.11.1", "@inertiajs/vue3": "^1.0.0", + "@opensearch-project/opensearch": "^2.4.0", "bcryptjs": "^2.4.3", "clamscan": "^2.1.2", "crypto": "^1.0.1", diff --git a/public/assets2/datasetxml2oai.sef.json b/public/assets2/datasetxml2oai.sef.json index 5a9e83a..ca7659f 100644 --- a/public/assets2/datasetxml2oai.sef.json +++ b/public/assets2/datasetxml2oai.sef.json @@ -1 +1 @@ -{"N":"package","version":"30","packageVersion":"1","saxonVersion":"SaxonJS 2.5","target":"JS","targetVersion":"2","name":"TOP-LEVEL","relocatable":"false","buildDateTime":"2023-09-29T16:24:29.074+02:00","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"co","id":"0","uniform":"true","binds":"26","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}RdrDate2","line":"147","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"148","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"148","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"0"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"149","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"150","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Available"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NT ","line":"155","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"155","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"159","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","line":"159","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"160","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"created"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}createdAt","slot":"0","sType":"*NT ","line":"166","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"166","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"167","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}createdAt","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"167"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"1","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}CamelCaseWord","line":"225","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}text","slot":"0","sType":"* ","as":"* ","flags":"","line":"226","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}firstLower","slot":"1","sType":"* ","as":"* ","flags":"","line":"227","C":[{"N":"true","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"227"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"let","var":"Q{}Upper","slot":"2","sType":"*NT ","line":"228","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ABCDEFGHIJKLMNOPQRSTUVQXYZ"}]}]},{"N":"let","var":"Q{}Lower","slot":"3","sType":"*NT ","line":"229","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"abcdefghijklmnopqrstuvwxyz"}]}]},{"N":"forEach","sType":"*NT ","line":"230","C":[{"N":"fn","name":"tokenize","sType":"*AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"230","C":[{"N":"treat","as":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"data","diag":"0|0||tokenize","C":[{"N":"varRef","name":"Q{}text","slot":"0"}]}]}]}]}]},{"N":"str","val":"_"}]},{"N":"sequence","sType":"*NT ","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"231","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"232","C":[{"N":"compareToInt","op":"eq","val":"1","C":[{"N":"fn","name":"position"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}firstLower","slot":"1"}]},{"N":"true"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"233","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"233","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"236","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"236","C":[{"N":"fn","name":"substring","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}Lower","slot":"3"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}Upper","slot":"2"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"239","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"239","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"fn","name":"string-length","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"2","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","name":"Q{}AlternateIdentifier","line":"309","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","C":[{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"body","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}landingpage","role":"select","line":"315","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}landingpage","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage","sType":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"3","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}datestamp","line":"385","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","C":[{"N":"elem","name":"gmd:dateStamp","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"386","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*NE ","line":"388","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"389","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"390","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"395","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"395","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"402","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"406","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"407","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"407","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"4","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}title","line":"413","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"414","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"415","C":[{"N":"forEach","sType":"* ","line":"416","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"416","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"417","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"418","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"419"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"421","C":[{"N":"compareToString","op":"eq","val":"Sub","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"422","C":[{"N":"str","val":"; Subtitle: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"424","C":[{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"425","C":[{"N":"str","val":"; Translated title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"427","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"428","C":[{"N":"str","val":"; Other title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","binds":"","id":"5","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}abstract","line":"663","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","C":[{"N":"elem","name":"gmd:abstract","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"664","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"665","C":[{"N":"forEach","sType":"* ","line":"666","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleAbstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAbstractAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"668","C":[{"N":"compareToString","op":"eq","val":"Abstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"669","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671","C":[{"N":"str","val":"\nAbstract: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"673","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"674","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"674","C":[{"N":"str","val":"\nTranslated Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"676","C":[{"N":"compareToString","op":"eq","val":"SeriesInformation","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"677","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"677","C":[{"N":"str","val":"\nSeries Information: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"679","C":[{"N":"compareToString","op":"eq","val":"TableOfContents","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"680","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"680","C":[{"N":"str","val":"\nTable of Contents: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"682","C":[{"N":"compareToString","op":"eq","val":"TechnicalInfo","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"683","C":[{"N":"str","val":"\nTechnical Info: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"685","C":[{"N":"compareToString","op":"eq","val":"Methods","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"686","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"686","C":[{"N":"str","val":"\nMethods: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"688","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"choose","sType":"? ","line":"689","C":[{"N":"fn","name":"not","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","val":"Related publications:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690","C":[{"N":"str","val":"\nOther Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","id":"6","uniform":"true","binds":"47 45 46 48 6","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}url-encode","line":"55","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}str","slot":"0","sType":"* ","as":"* ","flags":"","line":"56","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"choose","sType":"* ","line":"57","C":[{"N":"varRef","name":"Q{}str","slot":"0","sType":"*","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"57"},{"N":"let","var":"Q{}first-char","slot":"1","sType":"* ","line":"58","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"58","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"59","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"60","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}safe","bSlot":"0"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"61","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}first-char","slot":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"61"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"let","var":"Q{}codepoint","slot":"2","sType":"*NT ","line":"64","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"* ","type":"item()*","line":"65","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"66","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"67","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"32"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"69","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"70","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"70","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"160"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"sequence","sType":"* ","C":[{"N":"message","sType":"0 ","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"valueOf","sType":"1NT ","role":"select","C":[{"N":"str","sType":"1AS ","val":"Warning: string contains a character that is out of range! Substituting \"?\"."}]},{"N":"str","sType":"1AS ","val":"false","role":"terminate"},{"N":"str","sType":"1AS ","val":"Q{http://www.w3.org/2005/xqt-errors}XTMM9000","role":"error"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"63"}]}]}]}]},{"N":"let","var":"Q{}hex-digit1","slot":"3","sType":"*NT ","line":"78","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"78","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"fn","name":"floor","C":[{"N":"treat","as":"A m[AO,AD,AF]","diag":"0|0||floor","C":[{"N":"check","card":"?","diag":"0|0||floor","C":[{"N":"cvUntyped","to":"AO","diag":"0|0||floor","C":[{"N":"arith","op":"div","calc":"a/a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]}]}]}]}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"let","var":"Q{}hex-digit2","slot":"4","sType":"*NT ","line":"79","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"79","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"arith","op":"mod","calc":"a%a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"80","C":[{"N":"str","val":"%"},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}hex-digit1","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}hex-digit2","slot":"4"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"choose","sType":"* ","line":"83","C":[{"N":"compareToInt","op":"gt","val":"1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"83","C":[{"N":"fn","name":"string-length","C":[{"N":"treat","as":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}url-encode","line":"84","C":[{"N":"withParam","name":"Q{}str","slot":"0","sType":"1AS","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"85","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"7","uniform":"true","binds":"30 57 37 38 66 58 59","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}Rdr_Dataset_Data","line":"330","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"elem","name":"header","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}header ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"331","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"332","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"332","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]},{"N":"att","name":"status","sType":"1NA ","line":"333","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"deleted"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"337","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"339","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"0","role":"select","line":"339"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}PublishId","role":"select","line":"341","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}PublishId","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublishId","sType":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"datestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}datestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"343","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"344","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"345","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}dateModified","slot":"0","sType":"*NT ","line":"353","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"353","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"354","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dateModified","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"354"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}datePublished","slot":"0","sType":"*NT ","line":"364","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"364","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"365","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"365"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"373","mode":"#unnamed","bSlot":"1","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","role":"select","line":"373","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"374","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"open_access"}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"377","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"381","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"383","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"2"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]}]},{"N":"elem","name":"metadata","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadata ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"385","C":[{"N":"choose","sType":"* ","type":"item()*","line":"387","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"388","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_dc"}]},{"N":"applyT","sType":"* ","line":"389","mode":"Q{}oai_dc","bSlot":"4","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"389"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"391","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_datacite"}]},{"N":"applyT","sType":"* ","line":"392","mode":"Q{}oai_datacite","bSlot":"5","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"392"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"394","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"iso19139"}]},{"N":"applyT","sType":"* ","line":"395","mode":"Q{}iso19139","bSlot":"6","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"395"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"8","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}citation","line":"489","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","C":[{"N":"elem","name":"dc:source","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"490","C":[{"N":"let","var":"Q{}creatorName","slot":"0","sType":"*NT ","line":"491","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"492","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"492","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"PersonAuthor","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}person","slot":"0","sType":"* ","line":"493","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"493"},{"N":"let","var":"Q{}uppercase","slot":"1","sType":"* ","line":"494","C":[{"N":"str","val":"ABC..XYZ","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"494"},{"N":"let","var":"Q{}lowercase","slot":"2","sType":"* ","line":"495","C":[{"N":"str","val":"abc..zyz","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"495"},{"N":"let","var":"Q{}authorName","slot":"3","sType":"* ","line":"496","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"497","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"498","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]},{"N":"let","var":"Q{}name","slot":"3","sType":"*NT ","line":"501","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"501","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"concat","C":[{"N":"fn","name":"translate","C":[{"N":"fn","name":"substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}lowercase","slot":"2"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}uppercase","slot":"1"}]}]}]}]}]}]},{"N":"str","val":"."}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"502","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}name","slot":"3","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"502"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"505","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","role":"select","line":"505","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"509","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"509","C":[{"N":"treat","as":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"varRef","name":"Q{}authorName","slot":"3"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"510","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"511","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]}]}]},{"N":"let","var":"Q{}year","slot":"1","sType":"*NT ","line":"515","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"515","C":[{"N":"str","val":" ("},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"): "}]},{"N":"let","var":"Q{}mainTitle","slot":"2","sType":"*NT ","line":"516","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"516","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"let","var":"Q{}creatingCorporation","slot":"3","sType":"*NT ","line":"517","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"517","C":[{"N":"str","val":"."},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation"}]}]},{"N":"str","val":", "}]},{"N":"let","var":"Q{}publisherName","slot":"4","sType":"*NT ","line":"518","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"518","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherName"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"519","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"519","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"varRef","name":"Q{}creatorName","slot":"0"}]}]},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}year","slot":"1"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"2"}]}]},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"data","diag":"0|3||concat","C":[{"N":"varRef","name":"Q{}creatingCorporation","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|4||concat","C":[{"N":"data","diag":"0|4||concat","C":[{"N":"varRef","name":"Q{}publisherName","slot":"4"}]}]},{"N":"str","val":", Wien"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"9","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}RdrDate","line":"656","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","C":[{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"657","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"658","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","line":"659","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}publishedDate","slot":"0","sType":"*NT ","line":"664","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"664","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"665","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publishedDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"665"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}serverDatePublished","slot":"0","sType":"*NT ","line":"672","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"672","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"673","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}serverDatePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"673"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","id":"10","uniform":"true","binds":"51 50","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}hierarchylevel","line":"60","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","C":[{"N":"elem","name":"gmd:hierarchyLevel","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"61","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"62","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"63","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"64","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopelist","bSlot":"0","role":"select","line":"64"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"66","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"67"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"69","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"69"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"11","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadatacontact","line":"75","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","C":[{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"76","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"77","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"78","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"79","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"81","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"82","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"84","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"85","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Research Data Repository"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"87","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"88","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"89","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"90","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:deliveryPoint","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}deliveryPoint ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"91","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"92","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Neulinggasse 38"}]}]}]},{"N":"elem","name":"gmd:city","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}city ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"94","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"95","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:administrativeArea","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}administrativeArea ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"97","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"98","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:postalCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}postalCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"101","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1030"}]}]}]},{"N":"elem","name":"gmd:country","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}country ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"103","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"104","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"AT"}]}]}]},{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"106","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"107","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"112","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"113","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"114","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"115","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at"}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"117","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"118","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"124","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"125","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"12","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}resourcedates","line":"134","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"135","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"135","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"CreatedAt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"136","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"137","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"138","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*N ","line":"140","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"148","C":[{"N":"fn","name":"concat","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"151","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"152","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"153","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"154","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"155","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"159","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"160","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"161","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"173","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"174","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"174","C":[{"N":"str","val":"created date missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"179","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"180","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"creation"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"creation"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"185","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"187","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"EmbargoDate","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"188","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"189","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"190","C":[{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NE ","line":"195","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"195","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"196","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"197","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"197"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"200","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"201","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"206","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"ServerDatePublished","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"207","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"208","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"209","C":[{"N":"let","var":"Q{}publicationDate","slot":"0","sType":"*NE ","line":"217","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"217","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"218","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"219","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publicationDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"219"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"222","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"223","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"229","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]},{"N":"choose","sType":"? ","line":"234","C":[{"N":"docOrder","sType":"*NA nQ{}ServerDateModified","line":"234","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}ServerDateModified","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ServerDateModified","sType":"*NA nQ{}ServerDateModified","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"235","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"236","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"237","C":[{"N":"let","var":"Q{}updateDate","slot":"0","sType":"*N ","line":"238","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"238","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}ServerDateModified"}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"240","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"241","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"242","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"243","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"244","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"245","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"245"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"248","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"249","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"250","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"254","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"255","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"255"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"261","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"262","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"267","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"268","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"revision"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"revision"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"13","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}ci_responsibleparty","line":"275","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}individual","slot":"0","sType":"* ","as":"* ","flags":"","line":"276","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}httpuri","slot":"1","sType":"* ","as":"* ","flags":"","line":"277","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"param","name":"Q{}personidtype","slot":"2","sType":"* ","as":"* ","flags":"","line":"278","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"2","sType":"* "}]},{"N":"param","name":"Q{}organisation","slot":"3","sType":"* ","as":"* ","flags":"","line":"279","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"3","sType":"* "}]},{"N":"param","name":"Q{}position","slot":"4","sType":"* ","as":"* ","flags":"","line":"280","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"4","sType":"* "}]},{"N":"param","name":"Q{}role","slot":"5","sType":"* ","as":"* ","flags":"","line":"281","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"5","sType":"* "}]},{"N":"param","name":"Q{}email","slot":"6","sType":"* ","as":"* ","flags":"","line":"282","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"6","sType":"* "}]},{"N":"param","name":"Q{}datacite-creatorname","slot":"7","sType":"* ","as":"* ","flags":"","line":"283","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"7","sType":"* "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"285","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"287","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"287","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"288","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"289","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"290","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]},{"N":"true"},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"293","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"294","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}individual","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"295"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"302","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"302","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"303","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"304","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"305","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datacite-creatorname","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"305"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"310","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"310","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}organisation","slot":"3"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"311","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"312","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"313","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}organisation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"313"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"318","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"318","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}position","slot":"4"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"319","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"320","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"321","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}position","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"321"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"326","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"327","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"329","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"330","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"331","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"332","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"333","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}email","slot":"6"}]},{"N":"str","val":""}]},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"334","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"335","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"335"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"341","C":[{"N":"str","val":"repository@geologie.ac.at"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"choose","sType":"? ","line":"348","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"348","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}httpuri","slot":"1"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"349","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"350","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"351","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"352","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"353","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}httpuri","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"353"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}personidtype","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"368","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"369","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"370","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"371","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"372","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"372"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"14","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_custodian","line":"381","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"382","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"383","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"384","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"385","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"387","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"388","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"390","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"391","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"392","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"393","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"394","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"395","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"399","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"400","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"401","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"402","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"411","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"412","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"15","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_originator","line":"419","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"420","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"421","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"422","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"423","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"425","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"426","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"428","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"429","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"430","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"431","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"432","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"433","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"437","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"438","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"439","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"440","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"449","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"450","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"16","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}browseGraphictethys","line":"457","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","C":[{"N":"elem","name":"gmd:graphicOverview","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"458","C":[{"N":"elem","name":"gmd:MD_BrowseGraphic","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_BrowseGraphic ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"459","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:fileName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"460","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"461","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at/assets/TETHYS-Logo.svg"}]}]}]},{"N":"elem","name":"gmd:fileDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"463","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"464","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"TETHYS RDR"}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"17","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}freekeywords","line":"471","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"472","C":[{"N":"docOrder","sType":"*NE","line":"472","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"473","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"474","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"forEach","sType":"*NE nQ{http://www.isotc211.org/2005/gmd}keyword ","line":"475","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]},{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"476","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"477","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"478","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"478","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"482","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"483","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"theme"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"theme"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","id":"18","uniform":"true","binds":"43","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacenter_keyword","line":"491","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","C":[{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"492","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"493","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"494","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"495","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"496","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}datacentre","bSlot":"0","role":"select","line":"496"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"499","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"500","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataCentre"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"19","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}spatialcoverage","line":"507","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","C":[{"N":"elem","name":"gmd:extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"508","C":[{"N":"elem","name":"gmd:EX_Extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_Extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"509","C":[{"N":"choose","sType":"* ","line":"510","C":[{"N":"docOrder","sType":"*NE","line":"510","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Coverage","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]}]}]},{"N":"let","var":"Q{}sLat","slot":"0","sType":"* ","line":"512","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"513","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"514","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"515","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"515","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"518"}]}]}]},{"N":"let","var":"Q{}wLong","slot":"1","sType":"* ","line":"522","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"523","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"524","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"525","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"525","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"528","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"528"}]}]}]},{"N":"let","var":"Q{}nLat","slot":"2","sType":"* ","line":"532","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"533","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"534","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"535","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"538"}]}]}]},{"N":"let","var":"Q{}eLong","slot":"3","sType":"* ","line":"542","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"543","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"544","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"545","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"545","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"548","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"548"}]}]}]},{"N":"choose","sType":"* ","line":"554","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"and","C":[{"N":"and","C":[{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]}]}]}]},{"N":"choose","sType":"*NE ","type":"item()*","line":"556","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"559","C":[{"N":"elem","name":"gmd:EX_BoundingPolygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_BoundingPolygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"560","C":[{"N":"elem","name":"gmd:polygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}polygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"561","C":[{"N":"elem","name":"gml:Point","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}Point ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"562","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"gml:id","sType":"1NA ","nsuri":"http://www.opgeris.net/gml/3.2","line":"564","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"generate-id","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"565","C":[{"N":"treat","as":"N","diag":"0|0||generate-id","C":[{"N":"check","card":"?","diag":"0|0||generate-id","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"elem","name":"gml:pos","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}pos ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"567","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"568","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"568"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"570","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"570"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"579","C":[{"N":"gc","op":">","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]},{"N":"int","val":"0"}]},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"int","val":"0"}]}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"581","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"582","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"583","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"584","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"585","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"585"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"588","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"589","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"593","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"594","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"595","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"596","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"597","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"597"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"600","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"600"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"605","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"606","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"607","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"608","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"612"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"619","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"620","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"621","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"622","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"623","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"-180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"623"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"626","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"627","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"631","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"632","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"633","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"634","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"638","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"638"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"643","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"644","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"645","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"646","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"659","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"660","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:extentTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extentTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"661","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"662","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]},{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"664","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"665","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"666","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"669","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"670","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"674","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"675","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"676","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"677","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"678","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"678"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"681","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"681"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"686","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"687","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"688","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"693","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"693"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"20","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}datacite_identifier","line":"709","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"forEach","sType":"* ","role":"body","line":"710","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"710","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}identifier","slot":"0","sType":"* ","line":"711","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711"},{"N":"choose","sType":"? ","line":"712","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"712","C":[{"N":"or","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]}]},{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"713","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"714","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"715","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"716","C":[{"N":"choose","sType":"? ","type":"item()*","line":"717","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"718","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"720","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"720","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"data","diag":"0|0||substring-after","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"722","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"723","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"725","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"726","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"731","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"732","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"734","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"735","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Landing Page"}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"737","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"738","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"740","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"740","C":[{"N":"fn","name":"string","C":[{"N":"str","val":"Link to DOI landing page or data facility landing page if no DOI is assigned."}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"743","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"744","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"21","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}alternate_identifier","line":"753","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"754","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"754","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}landingpage"},{"N":"str","val":""}]},{"N":"fn","name":"starts-with","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]}]},{"N":"str","val":"http"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"755","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"756","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"757","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"758","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"759","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"759","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"762","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"763","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"765","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"766","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"767","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"767","C":[{"N":"str","val":"url"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"770","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Link to a web page related to the resource."}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"773","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"774","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","binds":"","id":"22","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}data_quality","line":"782","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","C":[{"N":"elem","name":"gmd:dataQualityInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"783","C":[{"N":"elem","name":"gmd:DQ_DataQuality","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DataQuality ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"784","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"785","C":[{"N":"elem","name":"gmd:DQ_Scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_Scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"786","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:level","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}level ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"787","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"788","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]}]}]}]},{"N":"elem","name":"gmd:levelDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}levelDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"790","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"inapplicable"}]}]}]}]}]},{"N":"elem","name":"gmd:report","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}report ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"793","C":[{"N":"elem","name":"gmd:DQ_DomainConsistency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DomainConsistency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"794","C":[{"N":"elem","name":"gmd:result","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}result ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"795","C":[{"N":"elem","name":"gmd:DQ_ConformanceResult","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_ConformanceResult ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"796","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:specification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}specification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"797","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"798","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"799","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"800","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"802","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"803","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"804","C":[{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"805","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2010-12-08"}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"807","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"808","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:explanation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}explanation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"814","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"815","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Datenstruktur entspricht INSPIRE"}]}]}]},{"N":"elem","name":"gmd:pass","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pass ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"817","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"818","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"824","C":[{"N":"elem","name":"gmd:LI_Lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LI_Lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"825","C":[{"N":"elem","name":"gmd:statement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}statement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"826","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"827","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Digitalisierung"}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"23","uniform":"true","binds":"52 53","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}distributor","line":"838","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","C":[{"N":"elem","name":"gmd:distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"839","C":[{"N":"elem","name":"gmd:MD_Distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"840","C":[{"N":"elem","name":"gmd:distributorContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributorContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"841","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"842","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"843","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"844","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"845","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorOrganisation","bSlot":"0","sType":"1AS","role":"select","line":"845"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"848","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"849","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"850","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"851","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"852","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"853","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"854","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorContactEmail","bSlot":"1","sType":"1AS","role":"select","line":"854"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"861","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"862","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"24","uniform":"true","binds":"54 55 56","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","name":"Q{}metadata_maintenance","line":"874","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","C":[{"N":"elem","name":"gmd:metadataMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"875","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"876","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"877","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"878","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]},{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"880","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"881","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"881","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0"}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"882","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"883","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0","sType":"1AS","role":"select","line":"883"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"886","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"887","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"888","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"889","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactName","bSlot":"1","sType":"1AS","role":"select","line":"889"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"892","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"893","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"894","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"895","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"896","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"897","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"898","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactEmail","bSlot":"2","sType":"1AS","role":"select","line":"898"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"905","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"906","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"processor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"processor"}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"25","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}responseDate","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"26","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}unixTimestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"27","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}email","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"28","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}earliestDatestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"29","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repositoryName","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"30","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"31","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}doiPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"32","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}sampleIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"33","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}dateDelete","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"34","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}totalIds","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"35","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}res","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"36","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}cursor","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"37","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_verb","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"38","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_metadataPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"39","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_code","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"40","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_message","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"41","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}baseURL","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"42","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}fileIdentifierPrefix","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"41","C":[{"N":"str","val":"at.tethys.dataset"}]}]}]},{"N":"co","binds":"","id":"43","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}datacentre","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"43","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"44","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"45","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"45","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"48","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"48","C":[{"N":"str","val":"Tethys RDR"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"44","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}nl","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"661","C":[{"N":"str","val":"\n"}]}]}]},{"N":"co","binds":"","id":"45","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}ascii","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"}]}]}]}]},{"N":"co","binds":"","id":"46","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}latin1","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"}]}]}]}]},{"N":"co","binds":"","id":"47","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}safe","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"!'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~"}]}]}]}]},{"N":"co","binds":"","id":"48","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}hex","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"0123456789ABCDEF"}]}]}]}]},{"N":"co","binds":"","id":"49","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}resourcetype","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]}]},{"N":"co","id":"50","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopecode","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"19","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"20","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"21","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"software"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"22","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"service"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"23","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"model"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"25","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}resourcetype","bSlot":"0","role":"select","line":"25"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","id":"51","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopelist","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"30","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"31","C":[{"N":"or","C":[{"N":"or","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]}]},{"N":"co","binds":"","id":"52","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorOrganisation","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"836","C":[{"N":"str","val":"Geological Survey of Austria"}]}]}]},{"N":"co","binds":"","id":"53","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"837","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","binds":"","id":"54","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactID","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"871","C":[{"N":"str","val":"https://www.re3data.org/repository/r3d100013400"}]}]}]},{"N":"co","binds":"","id":"55","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactName","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"872","C":[{"N":"str","val":"Tethys RDR"}]}]}]},{"N":"co","binds":"","id":"56","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"873","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","id":"57","binds":"25 37 38 41 39 40 65 60 63 61 64 62 7","C":[{"N":"mode","onNo":"SC","flags":"","patternSlots":"0","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"22","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"93","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"/root","prio":"0.5","matches":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]"},{"N":"p.nodeTest","test":"ND"}]},{"N":"sequence","role":"action","sType":"*N ","C":[{"N":"procInst","sType":"1NP ","C":[{"N":"str","sType":"1AS ","val":"xml-stylesheet"},{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"type=\"text/xsl\" href=\"assets2/oai2_style.xslt\""}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"elem","name":"OAI-PMH","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}OAI-PMH ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"99","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"}]},{"N":"elem","name":"responseDate","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}responseDate ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"100","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"101","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}responseDate","bSlot":"0","role":"select","line":"101"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"request","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}request ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"103","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"104","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"104","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":""}]},{"N":"att","name":"verb","sType":"1NA ","line":"105","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"106","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_verb","bSlot":"1","role":"select","line":"106"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"109","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"109","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"metadataPrefix","sType":"1NA ","line":"110","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"111","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_metadataPrefix","bSlot":"2","role":"select","line":"111"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"114","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"3","role":"select","line":"114"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"116","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"116","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]}]},{"N":"elem","name":"error","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}error ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"117","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"code","sType":"1NA ","line":"118","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"119","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"119","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_error_message","bSlot":"5","role":"select","line":"121"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","type":"item()*","line":"126","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"127","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"GetRecord"}]},{"N":"applyT","sType":"* ","line":"128","mode":"Q{}GetRecord","bSlot":"6","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"128"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"130","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"Identify"}]},{"N":"applyT","sType":"* ","line":"131","mode":"Q{}Identify","bSlot":"7","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"131"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"133","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"applyT","sType":"* ","line":"134","mode":"Q{}ListIdentifiers","bSlot":"8","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"134"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"136","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListMetadataFormats"}]},{"N":"applyT","sType":"* ","line":"137","mode":"Q{}ListMetadataFormats","bSlot":"9","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"137"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"139","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListRecords"}]},{"N":"applyT","sType":"* ","line":"140","mode":"Q{}ListRecords","bSlot":"10","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"140"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"142","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListSets"}]},{"N":"applyT","sType":"* ","line":"143","mode":"Q{}ListSets","bSlot":"11","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"143"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"31","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"404","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"SetSpec","prio":"0","matches":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"1NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"405","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"406","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"406"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"30","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"317","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"* ","type":"item()*","role":"action","line":"318","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"319","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"320"},{"N":"true"},{"N":"elem","name":"record","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}record ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"323","C":[{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"324"}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"26","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"256","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Sets","prio":"0","matches":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"1NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"set","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}set ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"257","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"258","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"setName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"261","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}TypeName","name":"attribute","nodeTest":"*NA nQ{}TypeName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"262"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"co","id":"58","binds":"1 58 30 0 2","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_datacite","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"12","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"395","module":"oai_datacite.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"format","sType":"1NE nQ{http://datacite.org/schema/kernel-4}format ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"396","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"397","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"398","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"402"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"13","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"409","module":"oai_datacite.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"410","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"411","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"412","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"412"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"414","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"414","C":[{"N":"attVal","name":"Q{}LinkLicence"},{"N":"str","val":""}]},{"N":"att","name":"rightsURI","sType":"1NA ","line":"415","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"416","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LinkLicence","name":"attribute","nodeTest":"*NA nQ{}LinkLicence","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"416"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"att","name":"schemeURI","sType":"1NA ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://spdx.org/licenses/"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifierScheme","sType":"1NA ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"SPDX"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifier","sType":"1NA ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Name","name":"attribute","nodeTest":"*NA nQ{}Name","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"428"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"430","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"430","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"431","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"rightsURI","sType":"1NA ","line":"432","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Open Access"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"11","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"352","module":"oai_datacite.xslt","expand-text":"false","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"creator","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creator ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"353","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"creatorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creatorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"354","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"355","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"355","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":""}]},{"N":"att","name":"nameType","sType":"1NA ","line":"356","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"357","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameType","name":"attribute","nodeTest":"*NA nQ{}NameType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"357"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"360","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"360"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"361","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"361","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"364","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"364"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"365","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"365","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"367","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"367"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"choose","sType":"* ","line":"372","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"372","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"givenName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}givenName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"373","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"familyName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}familyName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"376","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"377"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"affiliation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}affiliation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"379","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"GBA"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"382","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"382","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"},{"N":"str","val":""}]},{"N":"elem","name":"nameIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}nameIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"383","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"schemeURI","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://orcid.org/"}]},{"N":"att","name":"nameIdentifierScheme","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ORCID"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"384","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}IdentifierOrcid","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"384"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"10","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"333","module":"oai_datacite.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"contributor","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributor ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"334","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"335","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"335","C":[{"N":"attVal","name":"Q{}ContributorType"},{"N":"str","val":""}]},{"N":"att","name":"contributorType","sType":"1NA ","line":"336","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"337","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}ContributorType","name":"attribute","nodeTest":"*NA nQ{}ContributorType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"337"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"contributorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"attVal","name":"Q{}FirstName"}]},{"N":"str","val":" "},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"attVal","name":"Q{}LastName"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"9","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"320","module":"oai_datacite.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"relatedIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"321","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"relatedIdentifierType","sType":"1NA ","line":"322","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"323","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"323"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"relationType","sType":"1NA ","line":"325","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"326","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Relation","name":"attribute","nodeTest":"*NA nQ{}Relation","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"326"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"328","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"328"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"8","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"309","module":"oai_datacite.xslt","expand-text":"false","match":"AlternateIdentifier","prio":"0","matches":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","sType":"1NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}landingpage","name":"attribute","nodeTest":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"315"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"7","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"297","module":"oai_datacite.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"subject","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subject ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"298","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"299","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"299","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"300","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"301"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"6","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"271","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"272","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"273","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"273","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"275","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"275"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","type":"item()*","line":"278","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"279","C":[{"N":"and","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"281","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"281"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"285","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]},{"N":"att","name":"titleType","sType":"1NA ","line":"286","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"287","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"287"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"292","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"292"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"5","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"255","module":"oai_datacite.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"256","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"257","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"257","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"258","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"262","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"262","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"263","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"264","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"264"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"267","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"267"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"4","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"245","module":"oai_datacite.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"246","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"identifierType","sType":"1NA ","line":"247","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"DOI"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"250"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"3","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"208","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"209","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"210","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"211","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"211"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"213","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"213","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"214","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"callT","sType":"* ","bSlot":"0","name":"Q{}CamelCaseWord","line":"215","C":[{"N":"withParam","name":"Q{}text","slot":"0","sType":"*NA nQ{}Type","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type","sType":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"216"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"220","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"220"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"2","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"193","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"194","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"195","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"196","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"196"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"198","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"198","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"199","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Abstract"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"204","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"204"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"1","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"173","module":"oai_datacite.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"geoLocation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"174","C":[{"N":"elem","name":"geoLocationBox","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocationBox ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"175","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"westBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}westBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"176","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"177","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMin","name":"attribute","nodeTest":"*NA nQ{}XMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"177"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"eastBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}eastBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMax","name":"attribute","nodeTest":"*NA nQ{}XMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"southBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}southBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"182","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"183","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMin","name":"attribute","nodeTest":"*NA nQ{}YMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"183"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"northBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}northBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMax","name":"attribute","nodeTest":"*NA nQ{}YMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"0","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_datacite.xslt","line":"39","module":"oai_datacite.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"resource","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resource ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"41","C":[{"N":"sequence","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]},{"N":"choose","sType":"* ","type":"item()*","line":"45","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"46"},{"N":"applyT","sType":"* ","line":"47","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"47"}]},{"N":"true"},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"50","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"52","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"2","role":"select","line":"52"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"54","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishId","name":"attribute","nodeTest":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"54"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"creators","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creators ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"60","C":[{"N":"applyT","sType":"* ","line":"61","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"61"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"62"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"elem","name":"titles","sType":"1NE nQ{http://datacite.org/schema/kernel-4}titles ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"65","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"66","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"66"}]},{"N":"applyT","sType":"* ","line":"67","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"67"}]}]}]},{"N":"elem","name":"publisher","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publisher ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"69","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"71","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"71"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"publicationYear","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publicationYear ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"73","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"74","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"74","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"subjects","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subjects ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"76","C":[{"N":"applyT","sType":"* ","line":"77","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"77"}]}]},{"N":"elem","name":"language","sType":"1NE nQ{http://datacite.org/schema/kernel-4}language ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"79","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"80"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"82","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"82"},{"N":"elem","name":"contributors","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributors ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"83","C":[{"N":"applyT","sType":"* ","line":"84","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"84"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"85"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"dates","sType":"1NE nQ{http://datacite.org/schema/kernel-4}dates ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"89","C":[{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate2","line":"90"}]},{"N":"elem","name":"version","sType":"1NE nQ{http://datacite.org/schema/kernel-4}version ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"92","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"93","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Version","sType":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"94"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"95","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Version","name":"attribute","nodeTest":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"95"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1"}]}]}]},{"N":"elem","name":"resourceType","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resourceType ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"102","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"resourceTypeGeneral","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"elem","name":"alternateIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"107","C":[{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}AlternateIdentifier","line":"108"}]},{"N":"choose","sType":"? ","line":"111","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"111"},{"N":"elem","name":"relatedIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"112","C":[{"N":"applyT","sType":"* ","line":"113","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"113"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"rightsList","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rightsList ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"116","C":[{"N":"applyT","sType":"* ","line":"117","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"117"}]}]},{"N":"elem","name":"sizes","sType":"1NE nQ{http://datacite.org/schema/kernel-4}sizes ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"119","C":[{"N":"elem","name":"size","sType":"1NE nQ{http://datacite.org/schema/kernel-4}size ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"120","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1ADI","name":"count","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"121","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" datasets"}]}]}]}]},{"N":"elem","name":"formats","sType":"1NE nQ{http://datacite.org/schema/kernel-4}formats ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"125","C":[{"N":"applyT","sType":"* ","line":"126","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"126","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]},{"N":"elem","name":"descriptions","sType":"1NE nQ{http://datacite.org/schema/kernel-4}descriptions ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"128","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"129","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"129"}]},{"N":"applyT","sType":"* ","line":"130","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"130"}]}]}]},{"N":"elem","name":"geoLocations","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocations ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"132","C":[{"N":"applyT","sType":"* ","line":"133","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"133"}]}]}]}]}]}]}]},{"N":"co","id":"59","binds":"13 42 59 10 11 3 4 12 43 5 14 15 16 17 18 19 23 20 21 22 24","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}iso19139","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"21","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"737","module":"oai_2_iso19139.xslt","expand-text":"true","match":"File","prio":"0","matches":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"1NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"738","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"738","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]}]},{"N":"elem","name":"gmd:distributionFormat","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionFormat ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"739","C":[{"N":"elem","name":"gmd:MD_Format","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Format ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"740","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"741","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"742","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"743","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"746","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"20","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"701","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"704","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"704","C":[{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"missing"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"unknown"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"elem","name":"gmd:aggregationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"705","C":[{"N":"elem","name":"gmd:MD_AggregateInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_AggregateInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"706","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:aggregateDataSetIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregateDataSetIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"707","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"708","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"709","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"710","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:codeSpace","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}codeSpace ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"714","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"715","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"716","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"716","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:associationType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}associationType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"721","C":[{"N":"elem","type":"element()","name":"gmd:DS_AssociationTypeCode","sType":"1NE ","nsuri":"http://www.isotc211.org/2005/gmd","line":"722","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"724","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"724","C":[{"N":"str","val":"http://datacite.org/schema/kernel-4"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"727","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"729","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"729","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"19","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"550","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"let","var":"Q{}dcrole","slot":"0","sType":"*NE ","line":"551","role":"action","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"551","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ContributorType"}]}]}]}]}]},{"N":"let","var":"Q{}role","slot":"1","sType":"*NE ","line":"552","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"553","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ContactPerson"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"555","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCollector"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"556","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCurator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"557","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Distributor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"559","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Editor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"editor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"560","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Funder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"561","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"HostingInstitution"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"562","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"563","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"564","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectMember"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"565","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ResearchGroup"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"566","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Researcher"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"567","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"RightsHolder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"rightsHolder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"568","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Sponsor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"569","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"WorkPackageLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"contributor"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"573","C":[{"N":"let","var":"Q{}http-uri","slot":"2","sType":"* ","line":"574","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"575","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"576","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"580","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"583","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"588","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"588","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"3","sType":"* ","line":"593","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"594","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"595","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"596","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"596","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"599","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"4","sType":"* ","line":"603","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"604","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"605","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"606","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"606"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"5","sType":"* ","line":"613","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"614","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"615","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"616","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"616","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"619","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"619","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}contrnamestring","slot":"6","sType":"* ","line":"623","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"624","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"625","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"630","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"630","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"633","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"637","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"639","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}contrnamestring","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"639"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}httpuri","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"642","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"642"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"645","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"645"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"648","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"648"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}position","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"651","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dcrole","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"651"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"4","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"654","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"654"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"1","sType":"*","C":[{"N":"varRef","name":"Q{}role","slot":"1","sType":"*","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"656"}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"18","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"448","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"449","C":[{"N":"let","var":"Q{}http-uri","slot":"0","sType":"* ","line":"450","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"451","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"452","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"456","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"456","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"459","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"459","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"464","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"464","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"466"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"1","sType":"* ","line":"469","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"470","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"471","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"472","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"472","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"475","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"2","sType":"* ","line":"479","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"480","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"481","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"482","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"482"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"485","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"485","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"3","sType":"* ","line":"489","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"490","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"491","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"492","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"492","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"495","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"495","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}creatorname","slot":"4","sType":"* ","line":"499","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"500","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"500"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"501","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"501","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"504","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"504"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"505","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"505","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"507","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"507"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"let","var":"Q{}namestring","slot":"5","sType":"* ","line":"511","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"512","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"513","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"518","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"524","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"524","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"528","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"530","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}namestring","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"530"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"533","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"533"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"536"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"author"}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"2","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"540","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"540"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}datacite-creatorname","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}creatorname","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"543"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"17","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"437","module":"oai_2_iso19139.xslt","expand-text":"true","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"438","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"438","C":[{"N":"compareToString","op":"eq","val":"Alternative","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"elem","name":"gmd:alternateTitle","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}alternateTitle ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"439","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"440","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"441","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"441","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"16","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"368","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:fileIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"369","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"370","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"372","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"373","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}Value"}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374","C":[{"N":"gVarRef","name":"Q{}fileIdentifierPrefix","bSlot":"1"},{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","val":"/tethys."},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"377","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"15","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"341","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"sequence","role":"action","sType":"*NE ","C":[{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"342","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xlink:href","nsuri":"http://www.w3.org/1999/xlink","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://creativecommons.org/licenses/by/4.0/deed.en"}]},{"N":"elem","name":"gmd:MD_Constraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Constraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"343","C":[{"N":"elem","name":"gmd:useLimitation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}useLimitation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"344","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"345","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"351","C":[{"N":"elem","name":"gmd:MD_LegalConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_LegalConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"352","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:accessConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}accessConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"353","C":[{"N":"elem","name":"gmd:MD_RestrictionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RestrictionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"354","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_RestrictionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"otherRestrictions"}]}]}]}]},{"N":"elem","name":"gmd:otherConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}otherConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"14","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","line":"54","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:MD_Metadata","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Metadata ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","role":"action","line":"59","C":[{"N":"sequence","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd http://schemas.opengis.net/iso/19139/20060504/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://schemas.opengis.net/iso/19139/20060504/gmx/gmx.xsd http://www.isotc211.org/2005/srv http://schemas.opengis.net/iso/19139/20060504/srv/srv.xsd"}]},{"N":"choose","sType":"* ","line":"62","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"62"},{"N":"applyT","sType":"* ","line":"63","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"63"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"67","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"68","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:characterSet","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}characterSet ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"70","C":[{"N":"elem","name":"gmd:MD_CharacterSetCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_CharacterSetCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"71","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_CharacterSetCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"utf8"}]}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}hierarchylevel","line":"75"},{"N":"elem","name":"gmd:hierarchyLevelName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevelName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"77","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"78","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}metadatacontact","line":"84"},{"N":"callT","bSlot":"5","sType":"* ","name":"Q{}datestamp","line":"87"},{"N":"elem","name":"gmd:metadataStandardName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"89","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"90","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ISO 19139 Geographic Information - Metadata - Implementation Specification"}]}]}]},{"N":"elem","name":"gmd:metadataStandardVersion","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardVersion ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"92","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"93","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2007"}]}]}]},{"N":"elem","name":"gmd:referenceSystemInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"96","C":[{"N":"elem","name":"gmd:MD_ReferenceSystem","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ReferenceSystem ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"97","C":[{"N":"elem","name":"gmd:referenceSystemIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"98","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"99","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"102","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.opengis.net/def/crs/EPSG/0/31287"}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"104","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"105","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"6.11.2"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:identificationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identificationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"112","C":[{"N":"elem","name":"gmd:MD_DataIdentification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DataIdentification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"113","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"116","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"117","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"6","sType":"* ","name":"Q{}title","line":"119"},{"N":"applyT","sType":"* ","line":"122","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"122"}]},{"N":"callT","bSlot":"7","sType":"* ","name":"Q{}resourcedates","line":"125"},{"N":"elem","name":"gmd:identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"129","C":[{"N":"forEach","sType":"* ","line":"130","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"130","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"133","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"133","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"elem","name":"gmd:MD_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"134","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"135","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"136","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"137","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"138","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"fn","name":"contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi.org"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"139","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"139","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"141","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}datacentre","bSlot":"8"}]},{"N":"str","val":"Tethys RDR"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"145","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"145","C":[{"N":"str","val":"https://doi.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"148","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"applyT","sType":"* ","line":"159","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"159"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"160"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"applyT","sType":"* ","line":"164","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"164"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"165"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"169","C":[{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"170","C":[{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"172","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"172"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publisher"}]}]}]}]}]}]}]}]}]},{"N":"callT","bSlot":"9","sType":"* ","name":"Q{}abstract","line":"181"},{"N":"elem","name":"gmd:status","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}status ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"183","C":[{"N":"elem","name":"gmd:MD_ProgressCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ProgressCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"184","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Complete"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]}]}]}]},{"N":"callT","bSlot":"10","sType":"* ","name":"Q{}pointofcontact_custodian","line":"188"},{"N":"callT","bSlot":"11","sType":"* ","name":"Q{}pointofcontact_originator","line":"191"},{"N":"elem","name":"gmd:resourceMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"194","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"195","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"196","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"197","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]}]}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}browseGraphictethys","line":"230"},{"N":"callT","bSlot":"13","sType":"* ","name":"Q{}freekeywords","line":"233"},{"N":"callT","bSlot":"14","sType":"* ","name":"Q{}datacenter_keyword","line":"235"},{"N":"applyT","sType":"* ","line":"238","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"238"}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"239","C":[{"N":"elem","name":"gmd:MD_SecurityConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_SecurityConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"240","C":[{"N":"elem","name":"gmd:classification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}classification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"241","C":[{"N":"elem","name":"gmd:MD_ClassificationCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ClassificationCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"242","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_ClassificationCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"unclassified"}]}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"252","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"252"}]},{"N":"elem","name":"gmd:spatialResolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}spatialResolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"254","C":[{"N":"let","var":"Q{}mainTitle","slot":"0","sType":"*NE ","line":"255","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"257","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"257","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"258","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"258","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:MD_Resolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Resolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"263","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"264","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"265","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"0"}]}]}]}]}]},{"N":"str","val":"50.000"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gmd:equivalentScale","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}equivalentScale ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"266","C":[{"N":"elem","name":"gmd:MD_RepresentativeFraction","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RepresentativeFraction ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"267","C":[{"N":"elem","name":"gmd:denominator","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}denominator ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"268","C":[{"N":"elem","name":"gco:Integer","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Integer ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"270","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"50000"}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:distance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"276","C":[{"N":"elem","name":"gco:Distance","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Distance ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"277","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"uom","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"m"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"-1"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"285","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"286","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:topicCategory","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}topicCategory ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"290","C":[{"N":"elem","name":"gmd:MD_TopicCategoryCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_TopicCategoryCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"291","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"geoscientificInformation"}]}]}]},{"N":"callT","bSlot":"15","sType":"* ","name":"Q{}spatialcoverage","line":"295"}]}]}]},{"N":"elem","name":"gmd:distributionInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"304","C":[{"N":"elem","name":"gmd:MD_Distribution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distribution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"305","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"308","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"308"}]},{"N":"callT","bSlot":"16","sType":"* ","name":"Q{}distributor","line":"311"},{"N":"elem","name":"gmd:transferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}transferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"314","C":[{"N":"elem","name":"gmd:MD_DigitalTransferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DigitalTransferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"315","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"17","sType":"* ","name":"Q{}datacite_identifier","line":"319"},{"N":"callT","bSlot":"18","sType":"* ","name":"Q{}alternate_identifier","line":"322"}]}]}]}]}]}]},{"N":"callT","bSlot":"19","sType":"* ","name":"Q{}data_quality","line":"330"},{"N":"callT","bSlot":"20","sType":"* ","name":"Q{}metadata_maintenance","line":"333"}]}]}]}]}]},{"N":"co","id":"60","binds":"29 41 27 28 30 32","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}Identify","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"23","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"151","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"Identify","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}Identify ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"152","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"repositoryName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}repositoryName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"153","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"154","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repositoryName","bSlot":"0","role":"select","line":"154"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"baseURL","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}baseURL ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"156","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"157","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"1","role":"select","line":"157"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"protocolVersion","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}protocolVersion ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"159","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2.0"}]}]},{"N":"elem","name":"adminEmail","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}adminEmail ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"162","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"163","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}email","bSlot":"2","role":"select","line":"163"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"earliestDatestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}earliestDatestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}earliestDatestamp","bSlot":"3","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"deletedRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}deletedRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"168","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"persistent"}]}]},{"N":"elem","name":"granularity","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}granularity ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"171","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"YYYY-MM-DDThh:mm:ssZ"}]}]},{"N":"elem","name":"description","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}description ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"174","C":[{"N":"elem","name":"oai-identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}oai-identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","line":"175","C":[{"N":"sequence","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","sType":"*N ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai-identifier http://www.openarchives.org/OAI/2.0/oai-identifier.xsd"}]},{"N":"elem","name":"scheme","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}scheme ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"176","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai"}]}]},{"N":"elem","name":"repositoryIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}repositoryIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"4","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"delimiter","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}delimiter ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"182","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]}]},{"N":"elem","name":"sampleIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}sampleIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}sampleIdentifier","bSlot":"5","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"61","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListMetadataFormats","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"24","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"218","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListMetadataFormats","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListMetadataFormats ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"219","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"220","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"221","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_dc"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"224","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"227","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"231","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"232","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_datacite"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"235","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"238","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"242","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"243","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"iso19139"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"244","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd/gmd.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"245","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd"}]}]}]}]}]}]}]}]}]},{"N":"co","id":"62","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListSets","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"25","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"250","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListSets","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListSets ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"251","C":[{"N":"applyT","sType":"* ","line":"252","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"252"}]}]}]}]}]},{"N":"co","id":"63","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListIdentifiers","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"27","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"267","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"268","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"268","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListIdentifiers","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListIdentifiers ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"269","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"270","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"270"}]},{"N":"choose","sType":"? ","line":"271","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"271","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"272","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"273","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"274"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"276","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"277","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"277"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"279","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"280"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"282","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"282"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"64","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListRecords","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"28","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"289","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"290","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"290","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListRecords","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListRecords ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"291","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"292","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"292"}]},{"N":"choose","sType":"? ","line":"293","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"293","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"294","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"296","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"296"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"298","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"299","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"299"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"302","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"302"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"65","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}GetRecord","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"29","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"311","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"GetRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}GetRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"312","C":[{"N":"applyT","sType":"* ","line":"313","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"313"}]}]}]}]}]},{"N":"co","id":"66","binds":"31 26 66 9 8","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_dc","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"44","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"704","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"dc:format","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}format ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"705","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"706","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"707","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"711"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"48","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"766","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"767","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"768","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"768"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"770","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"770","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"47","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"740","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@Language","prio":"0","matches":"NA nQ{}Language","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}Language","sType":"1NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"741","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"742","C":[{"N":"compareToString","op":"eq","val":"de","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ger","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"5"}]},{"N":"compareToString","op":"eq","val":"en","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"744","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"eng","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"7"}]},{"N":"compareToString","op":"eq","val":"es","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"745","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"spa","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"9"}]},{"N":"compareToString","op":"eq","val":"it","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"746","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ita","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"11"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"748","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"748","C":[{"N":"dot"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"46","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"734","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@CreatingCorporation","prio":"0","matches":"NA nQ{}CreatingCorporation","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}CreatingCorporation","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"735","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"736","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"736"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"45","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"724","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"725","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"727","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"gVarRef","name":"Q{}doiPrefix","bSlot":"0"}]}]},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"43","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"679","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"EmbargoDate","prio":"0","matches":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"1NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"680","C":[{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"680","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]},{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"681","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/date/embargoEnd/"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"683","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"685","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"685","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"687","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"687","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"42","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"641","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:contributor","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}contributor ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"642","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"643","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"643"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"644","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"644","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"648","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"648","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","sType":"1NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"40","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"616","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"617","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"618","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"618","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"39","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"605","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Collection","prio":"0","matches":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"1NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"606","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"612","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Collectionrole.Name"}]}]},{"N":"str","val":":"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Number"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"38","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"595","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"596","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"597","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"597","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"598","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"599"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"602","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"602"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"37","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"586","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"587","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"588","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"589"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"591","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"591"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"36","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"578","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"579","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"581","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"581"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"583"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"14","prec":"1","seq":"35","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"569","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"570","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"571","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"572","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"572"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"574","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"574"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"15","prec":"1","seq":"34","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"560","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"561","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"562","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"563","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"563"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"565"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"16","prec":"1","seq":"33","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"523","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:coverage","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}coverage ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"524","C":[{"N":"let","var":"Q{}geolocation","slot":"0","sType":"* ","line":"530","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"530","C":[{"N":"str","val":"SOUTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}YMin"}]},{"N":"str","val":" * WEST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}XMin"}]},{"N":"str","val":" * NORTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|5||concat","C":[{"N":"attVal","name":"Q{}YMax"}]},{"N":"str","val":" * EAST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|7||concat","C":[{"N":"attVal","name":"Q{}XMax"}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"531","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"531"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"534","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"534","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"535","C":[{"N":"str","val":" * ELEVATION MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationMin"}]},{"N":"str","val":" * ELEVATION MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}ElevationMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"537","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"537","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"538","C":[{"N":"str","val":" * ELEVATION ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"542","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"542","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"543","C":[{"N":"str","val":" * DEPTH MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthMin"}]},{"N":"str","val":" * DEPTH MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}DepthMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"545","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"545","C":[{"N":"attVal","name":"Q{}DepthAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"546","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"546","C":[{"N":"str","val":" * DEPTH ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"550","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"550","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"551","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"551","C":[{"N":"str","val":" * TIME MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeMin"}]},{"N":"str","val":" * TIME MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}TimeMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"553","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"553","C":[{"N":"attVal","name":"Q{}TimeAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"554","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"554","C":[{"N":"str","val":" * TIME ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"17","prec":"1","seq":"32","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"410","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"oai_dc:dc","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai_dc/}dc ","nsuri":"http://www.openarchives.org/OAI/2.0/oai_dc/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"411","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]},{"N":"applyT","sType":"* ","line":"413","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"413"}]},{"N":"applyT","sType":"* ","line":"415","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"415"}]},{"N":"choose","sType":"* ","type":"item()*","line":"418","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"419"},{"N":"applyT","sType":"* ","line":"420","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"420"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"421"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","sType":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"424"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"425","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"431","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"431"}]},{"N":"applyT","sType":"* ","line":"432","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"432"}]},{"N":"applyT","sType":"* ","line":"434","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"434"}]},{"N":"applyT","sType":"* ","line":"436","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"436"}]},{"N":"elem","name":"dc:publisher","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}publisher ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"438","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"440","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"440"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"444","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"444"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"445"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate","line":"448"},{"N":"applyT","sType":"* ","line":"450","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"450"}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"452","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"453","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]},{"N":"applyT","sType":"* ","line":"457","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"457","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"applyT","sType":"* ","line":"459","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"459"}]},{"N":"elem","name":"dc:identifier","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}identifier ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"464","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"465","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"471","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Language","sType":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"471"}]},{"N":"choose","sType":"* ","line":"473","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"473"},{"N":"applyT","sType":"* ","line":"474","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"474"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"476","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"476"}]},{"N":"applyT","sType":"* ","line":"478","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"478"}]},{"N":"applyT","sType":"* ","line":"480","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"480"}]},{"N":"choose","sType":"? ","line":"481","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"481","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"482","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"embargo"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}citation","line":"485"}]}]}]}]}]},{"N":"overridden"},{"N":"output","C":[{"N":"property","name":"Q{http://saxon.sf.net/}stylesheet-version","value":"30"},{"N":"property","name":"method","value":"xml"},{"N":"property","name":"encoding","value":"utf-8"},{"N":"property","name":"indent","value":"yes"}]},{"N":"decimalFormat"}],"Σ":"3d032297"} \ No newline at end of file +{"N":"package","version":"30","packageVersion":"1","saxonVersion":"SaxonJS 2.6","target":"JS","targetVersion":"2","name":"TOP-LEVEL","relocatable":"false","buildDateTime":"2023-10-16T15:24:55.306+02:00","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"co","id":"0","uniform":"true","binds":"26","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","name":"Q{}RdrDate2","line":"147","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"148","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"148","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"0"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"149","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"150","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Available"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NT ","line":"155","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"155","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"159","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","line":"159","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","sType":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]},{"N":"elem","name":"date","sType":"1NE nQ{http://datacite.org/schema/kernel-4}date ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"160","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"dateType","sType":"1NA ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"created"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}createdAt","slot":"0","sType":"*NT ","line":"166","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"166","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"167","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}createdAt","slot":"0","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"167"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"1","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","name":"Q{}CamelCaseWord","line":"225","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}text","slot":"0","sType":"* ","as":"* ","flags":"","line":"226","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}firstLower","slot":"1","sType":"* ","as":"* ","flags":"","line":"227","C":[{"N":"true","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"227"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"let","var":"Q{}Upper","slot":"2","sType":"*NT ","line":"228","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ABCDEFGHIJKLMNOPQRSTUVQXYZ"}]}]},{"N":"let","var":"Q{}Lower","slot":"3","sType":"*NT ","line":"229","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"abcdefghijklmnopqrstuvwxyz"}]}]},{"N":"forEach","sType":"*NT ","line":"230","C":[{"N":"fn","name":"tokenize","sType":"*AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"230","C":[{"N":"treat","as":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||tokenize","C":[{"N":"check","card":"?","diag":"0|0||tokenize","C":[{"N":"data","diag":"0|0||tokenize","C":[{"N":"varRef","name":"Q{}text","slot":"0"}]}]}]}]}]},{"N":"str","val":"_"}]},{"N":"sequence","sType":"*NT ","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"231","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"232","C":[{"N":"compareToInt","op":"eq","val":"1","C":[{"N":"fn","name":"position"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}firstLower","slot":"1"}]},{"N":"true"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"233","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"233","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"236","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"236","C":[{"N":"fn","name":"substring","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}Lower","slot":"3"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}Upper","slot":"2"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"239","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"239","C":[{"N":"dot"},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"fn","name":"string-length","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"2","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_datacite.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","name":"Q{}AlternateIdentifier","line":"309","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","expand-text":"false","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","C":[{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"body","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}landingpage","role":"select","line":"315","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}landingpage","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage","sType":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"3","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}datestamp","line":"385","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","C":[{"N":"elem","name":"gmd:dateStamp","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateStamp ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"386","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*NE ","line":"388","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"389","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"390","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"395","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"395","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"402","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"406","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"407","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"407","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"4","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}title","line":"413","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"414","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"415","C":[{"N":"forEach","sType":"* ","line":"416","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"416","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"417","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"418","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"419"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"421","C":[{"N":"compareToString","op":"eq","val":"Sub","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"422","C":[{"N":"str","val":"; Subtitle: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"424","C":[{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"425","C":[{"N":"str","val":"; Translated title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"427","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"428","C":[{"N":"str","val":"; Other title: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","binds":"","id":"5","uniform":"true","C":[{"N":"template","flags":"os","module":"oai_2_iso19139.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","name":"Q{}abstract","line":"663","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","C":[{"N":"elem","name":"gmd:abstract","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}abstract ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"body","line":"664","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"665","C":[{"N":"forEach","sType":"* ","line":"666","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"or","C":[{"N":"compareToString","op":"eq","val":"TitleAbstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"TitleAbstractAdditional","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"668","C":[{"N":"compareToString","op":"eq","val":"Abstract","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"669","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671","C":[{"N":"str","val":"\nAbstract: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"compareToString","op":"eq","val":"Translated","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"673","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"674","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"674","C":[{"N":"str","val":"\nTranslated Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"676","C":[{"N":"compareToString","op":"eq","val":"SeriesInformation","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"677","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"677","C":[{"N":"str","val":"\nSeries Information: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"679","C":[{"N":"compareToString","op":"eq","val":"TableOfContents","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"680","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"680","C":[{"N":"str","val":"\nTable of Contents: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"682","C":[{"N":"compareToString","op":"eq","val":"TechnicalInfo","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"683","C":[{"N":"str","val":"\nTechnical Info: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"685","C":[{"N":"compareToString","op":"eq","val":"Methods","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"686","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"686","C":[{"N":"str","val":"\nMethods: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"688","C":[{"N":"compareToString","op":"eq","val":"Other","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"choose","sType":"? ","line":"689","C":[{"N":"fn","name":"not","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","val":"Related publications:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690","C":[{"N":"str","val":"\nOther Description: "},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]},{"N":"co","id":"6","uniform":"true","binds":"47 45 46 48 6","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}url-encode","line":"55","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}str","slot":"0","sType":"* ","as":"* ","flags":"","line":"56","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"choose","sType":"* ","line":"57","C":[{"N":"varRef","name":"Q{}str","slot":"0","sType":"*","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"57"},{"N":"let","var":"Q{}first-char","slot":"1","sType":"* ","line":"58","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"58","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"59","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"60","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}safe","bSlot":"0"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"61","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}first-char","slot":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"61"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"let","var":"Q{}codepoint","slot":"2","sType":"*NT ","line":"64","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"* ","type":"item()*","line":"65","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"66","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"67","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}ascii","bSlot":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"32"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"69","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"atomSing","diag":"0|0||contains","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||contains","C":[{"N":"check","card":"?","diag":"0|1||contains","C":[{"N":"data","diag":"0|1||contains","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"70","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"arith","sType":"1ADI","op":"+","calc":"i+i","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"70","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-before","C":[{"N":"atomSing","diag":"0|0||substring-before","card":"?","C":[{"N":"gVarRef","name":"Q{}latin1","bSlot":"2"}]}]},{"N":"treat","as":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||substring-before","C":[{"N":"check","card":"?","diag":"0|1||substring-before","C":[{"N":"data","diag":"0|1||substring-before","C":[{"N":"varRef","name":"Q{}first-char","slot":"1"}]}]}]}]}]},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"int","val":"160"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"sequence","sType":"* ","C":[{"N":"message","sType":"0 ","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"valueOf","sType":"1NT ","role":"select","C":[{"N":"str","sType":"1AS ","val":"Warning: string contains a character that is out of range! Substituting \"?\"."}]},{"N":"str","sType":"1AS ","val":"false","role":"terminate"},{"N":"str","sType":"1AS ","val":"Q{http://www.w3.org/2005/xqt-errors}XTMM9000","role":"error"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"63"}]}]}]}]},{"N":"let","var":"Q{}hex-digit1","slot":"3","sType":"*NT ","line":"78","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"78","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"fn","name":"floor","C":[{"N":"treat","as":"A m[AO,AD,AF]","diag":"0|0||floor","C":[{"N":"check","card":"?","diag":"0|0||floor","C":[{"N":"cvUntyped","to":"AO","diag":"0|0||floor","C":[{"N":"arith","op":"div","calc":"a/a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]}]}]}]}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"let","var":"Q{}hex-digit2","slot":"4","sType":"*NT ","line":"79","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"79","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"atomSing","diag":"0|0||substring","card":"?","C":[{"N":"gVarRef","name":"Q{}hex","bSlot":"3"}]}]},{"N":"check","card":"1","diag":"0|1||substring","C":[{"N":"convert","to":"AO","flags":"","C":[{"N":"cvUntyped","to":"AO","diag":"0|1||substring","C":[{"N":"arith","op":"+","calc":"a+a","C":[{"N":"arith","op":"mod","calc":"a%a","C":[{"N":"check","card":"?","diag":"1|0||arith","C":[{"N":"data","diag":"1|0||arith","C":[{"N":"varRef","name":"Q{}codepoint","slot":"2"}]}]},{"N":"int","val":"16"}]},{"N":"int","val":"1"}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"80","C":[{"N":"str","val":"%"},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}hex-digit1","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}hex-digit2","slot":"4"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"choose","sType":"* ","line":"83","C":[{"N":"compareToInt","op":"gt","val":"1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"83","C":[{"N":"fn","name":"string-length","C":[{"N":"treat","as":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}url-encode","line":"84","C":[{"N":"withParam","name":"Q{}str","slot":"0","sType":"1AS","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"85","C":[{"N":"treat","as":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"varRef","name":"Q{}str","slot":"0"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"7","uniform":"true","binds":"30 57 37 38 66 58 59","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}Rdr_Dataset_Data","line":"330","expand-text":"false","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"elem","name":"header","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}header ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"331","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"332","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"332","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]},{"N":"att","name":"status","sType":"1NA ","line":"333","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"deleted"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"337","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"339","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"0","role":"select","line":"339"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}PublishId","role":"select","line":"341","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}PublishId","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublishId","sType":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"datestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}datestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"343","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"344","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","line":"345","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","sType":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}dateModified","slot":"0","sType":"*NT ","line":"353","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"353","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"354","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dateModified","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"354"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}datePublished","slot":"0","sType":"*NT ","line":"364","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"364","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"365","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"365"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"373","mode":"#unnamed","bSlot":"1","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","role":"select","line":"373","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"*NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"374","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"open_access"}]}]},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"377","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"381","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"383","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"2"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ServerState"},{"N":"str","val":"deleted"}]}]},{"N":"elem","name":"metadata","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadata ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"385","C":[{"N":"choose","sType":"* ","type":"item()*","line":"387","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"388","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_dc"}]},{"N":"applyT","sType":"* ","line":"389","mode":"Q{}oai_dc","bSlot":"4","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"389"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"391","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"oai_datacite"}]},{"N":"applyT","sType":"* ","line":"392","mode":"Q{}oai_datacite","bSlot":"5","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"392"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"394","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"3"}]},{"N":"str","val":"iso19139"}]},{"N":"applyT","sType":"* ","line":"395","mode":"Q{}iso19139","bSlot":"6","C":[{"N":"dot","sType":"1","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"395"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"8","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}citation","line":"489","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","C":[{"N":"elem","name":"dc:source","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}source ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"490","C":[{"N":"let","var":"Q{}creatorName","slot":"0","sType":"*NT ","line":"491","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"492","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"492","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"PersonAuthor","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}person","slot":"0","sType":"* ","line":"493","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"493"},{"N":"let","var":"Q{}uppercase","slot":"1","sType":"* ","line":"494","C":[{"N":"str","val":"ABC..XYZ","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"494"},{"N":"let","var":"Q{}lowercase","slot":"2","sType":"* ","line":"495","C":[{"N":"str","val":"abc..zyz","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"495"},{"N":"let","var":"Q{}authorName","slot":"3","sType":"* ","line":"496","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"497","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"498","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]},{"N":"let","var":"Q{}name","slot":"3","sType":"*NT ","line":"501","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"501","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"concat","C":[{"N":"fn","name":"translate","C":[{"N":"fn","name":"substring","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"data","diag":"0|0||substring","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}FirstName"}]}]}]}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]}]},{"N":"treat","as":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|1||translate","C":[{"N":"check","card":"1","diag":"0|1||translate","C":[{"N":"data","diag":"0|1||translate","C":[{"N":"varRef","name":"Q{}lowercase","slot":"2"}]}]}]}]}]},{"N":"treat","as":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|2||translate","C":[{"N":"check","card":"1","diag":"0|2||translate","C":[{"N":"data","diag":"0|2||translate","C":[{"N":"varRef","name":"Q{}uppercase","slot":"1"}]}]}]}]}]}]},{"N":"str","val":"."}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"502","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}name","slot":"3","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"502"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"505","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","role":"select","line":"505","C":[{"N":"docOrder","sType":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}person","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}LastName"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"509","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"509","C":[{"N":"treat","as":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"varRef","name":"Q{}authorName","slot":"3"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","type":"item()*","line":"510","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"511","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]}]}]}]},{"N":"let","var":"Q{}year","slot":"1","sType":"*NT ","line":"515","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"515","C":[{"N":"str","val":" ("},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"): "}]},{"N":"let","var":"Q{}mainTitle","slot":"2","sType":"*NT ","line":"516","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"516","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"let","var":"Q{}creatingCorporation","slot":"3","sType":"*NT ","line":"517","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"517","C":[{"N":"str","val":"."},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation"}]}]},{"N":"str","val":", "}]},{"N":"let","var":"Q{}publisherName","slot":"4","sType":"*NT ","line":"518","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"518","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherName"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"519","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"519","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"varRef","name":"Q{}creatorName","slot":"0"}]}]},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"varRef","name":"Q{}year","slot":"1"}]}]},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"2"}]}]},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"data","diag":"0|3||concat","C":[{"N":"varRef","name":"Q{}creatingCorporation","slot":"3"}]}]},{"N":"check","card":"?","diag":"0|4||concat","C":[{"N":"data","diag":"0|4||concat","C":[{"N":"varRef","name":"Q{}publisherName","slot":"4"}]}]},{"N":"str","val":", Wien"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"9","uniform":"true","C":[{"N":"template","flags":"os","module":"datasetxml2oai-pmh.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","name":"Q{}RdrDate","line":"656","expand-text":"false","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","C":[{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"body","line":"657","C":[{"N":"choose","sType":"*NT ","type":"item()*","line":"658","C":[{"N":"docOrder","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","line":"659","C":[{"N":"slash","role":"select","simple":"1","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","sType":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "}]}]},{"N":"let","var":"Q{}publishedDate","slot":"0","sType":"*NT ","line":"664","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"664","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PublishedDate,NE nQ{http://www.w3.org/1999/xhtml}PublishedDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"665","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publishedDate","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"665"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"let","var":"Q{}serverDatePublished","slot":"0","sType":"*NT ","line":"672","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"672","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"673","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}serverDatePublished","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"673"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","id":"10","uniform":"true","binds":"51 50","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}hierarchylevel","line":"60","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","C":[{"N":"elem","name":"gmd:hierarchyLevel","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevel ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"61","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"62","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"63","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"64","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopelist","bSlot":"0","role":"select","line":"64"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"66","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"67","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"67"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"69","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}MDScopecode","bSlot":"1","role":"select","line":"69"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"11","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}metadatacontact","line":"75","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","C":[{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"76","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"77","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"78","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"79","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"81","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"82","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"84","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"85","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Research Data Repository"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"87","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"88","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"89","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"90","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:deliveryPoint","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}deliveryPoint ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"91","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"92","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Neulinggasse 38"}]}]}]},{"N":"elem","name":"gmd:city","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}city ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"94","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"95","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:administrativeArea","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}administrativeArea ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"97","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"98","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Vienna"}]}]}]},{"N":"elem","name":"gmd:postalCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}postalCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"101","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1030"}]}]}]},{"N":"elem","name":"gmd:country","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}country ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"103","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"104","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"AT"}]}]}]},{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"106","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"107","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"112","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"113","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"114","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"115","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at"}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"117","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"118","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"124","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"125","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"12","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}resourcedates","line":"134","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"choose","sType":"? ","line":"135","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"135","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"CreatedAt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"136","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"137","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"138","C":[{"N":"let","var":"Q{}theDate","slot":"0","sType":"*N ","line":"140","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"148","C":[{"N":"fn","name":"concat","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}CreatedAt,NE nQ{http://www.w3.org/1999/xhtml}CreatedAt]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"151","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"152","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"153","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"154","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"155","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"156","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"156"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"159","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"160","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"161","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"161","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}theDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}theDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"173","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"174","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"174","C":[{"N":"str","val":"created date missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"179","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"180","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"creation"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"creation"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"185","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"187","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"EmbargoDate","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"188","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"189","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"190","C":[{"N":"let","var":"Q{}embargoDate","slot":"0","sType":"*NE ","line":"195","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"195","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]}]},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"196","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"197","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}embargoDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"197"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"200","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"201","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"206","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"ServerDatePublished","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"207","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"208","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"209","C":[{"N":"let","var":"Q{}publicationDate","slot":"0","sType":"*NE ","line":"217","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"217","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"-"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"T"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Hour"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Minute"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":":"},{"N":"fn","name":"format-number","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Second"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","val":"Z"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"218","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"219","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}publicationDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"219"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"222","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"223","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"229","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]},{"N":"choose","sType":"? ","line":"234","C":[{"N":"docOrder","sType":"*NA nQ{}ServerDateModified","line":"234","C":[{"N":"slash","role":"select","simple":"1","sType":"*NA nQ{}ServerDateModified","C":[{"N":"treat","as":"N","diag":"13|0|XTTE0510|","C":[{"N":"dot"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ServerDateModified","sType":"*NA nQ{}ServerDateModified","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"235","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"236","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"237","C":[{"N":"let","var":"Q{}updateDate","slot":"0","sType":"*N ","line":"238","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"238","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}ServerDateModified"}]}]}]},{"N":"choose","sType":"?N ","type":"item()*","line":"240","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"241","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"242","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"243","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":"T"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"244","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"245","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"245"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"248","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gco:DateTime","sType":"1NE nQ{http://www.isotc211.org/2005/gco}DateTime ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"249","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"translate","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"250","C":[{"N":"treat","as":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||translate","C":[{"N":"check","card":"?","diag":"0|0||translate","C":[{"N":"data","diag":"0|0||translate","C":[{"N":"varRef","name":"Q{}updateDate","slot":"0"}]}]}]}]}]},{"N":"str","val":" "},{"N":"str","val":"T"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"254","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"255","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}updateDate","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"255"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"att","name":"gco:nilReason","sType":"1NA ","nsuri":"http://www.isotc211.org/2005/gco","line":"261","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"262","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"267","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"268","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"revision"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"revision"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","binds":"","id":"13","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}ci_responsibleparty","line":"275","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"sequence","role":"body","sType":"* ","C":[{"N":"param","name":"Q{}individual","slot":"0","sType":"* ","as":"* ","flags":"","line":"276","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"0","sType":"* "}]},{"N":"param","name":"Q{}httpuri","slot":"1","sType":"* ","as":"* ","flags":"","line":"277","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"1","sType":"* "}]},{"N":"param","name":"Q{}personidtype","slot":"2","sType":"* ","as":"* ","flags":"","line":"278","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"2","sType":"* "}]},{"N":"param","name":"Q{}organisation","slot":"3","sType":"* ","as":"* ","flags":"","line":"279","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"3","sType":"* "}]},{"N":"param","name":"Q{}position","slot":"4","sType":"* ","as":"* ","flags":"","line":"280","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"4","sType":"* "}]},{"N":"param","name":"Q{}role","slot":"5","sType":"* ","as":"* ","flags":"","line":"281","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"5","sType":"* "}]},{"N":"param","name":"Q{}email","slot":"6","sType":"* ","as":"* ","flags":"","line":"282","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"6","sType":"* "}]},{"N":"param","name":"Q{}datacite-creatorname","slot":"7","sType":"* ","as":"* ","flags":"","line":"283","C":[{"N":"str","sType":"1AS ","val":"","role":"select"},{"N":"supplied","role":"conversion","slot":"7","sType":"* "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"285","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"287","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"287","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":""}]},{"N":"choose","sType":"?NE ","type":"item()*","line":"288","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"289","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"290","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]},{"N":"true"},{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"293","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"294","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}individual","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"295"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"302","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"302","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}individual","slot":"0"}]},{"N":"str","val":"missing"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"303","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"304","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"305","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}datacite-creatorname","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"305"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"310","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"310","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}organisation","slot":"3"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"311","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"312","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"313","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}organisation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"313"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"318","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"318","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}position","slot":"4"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:positionName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}positionName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"319","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"320","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"321","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}position","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"321"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"326","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"327","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"329","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"330","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"331","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"332","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"333","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}email","slot":"6"}]},{"N":"str","val":""}]},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"334","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"335","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"335"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"341","C":[{"N":"str","val":"repository@geologie.ac.at"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"choose","sType":"? ","line":"348","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"348","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}httpuri","slot":"1"}]},{"N":"str","val":""}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"349","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"350","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"351","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"352","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"353","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}httpuri","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"353"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}personidtype","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"368","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"369","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"370","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"371","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"372","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"372"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}role","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"14","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_custodian","line":"381","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"382","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"383","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"384","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"385","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"387","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"388","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"390","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"391","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"392","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"393","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"394","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"395","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"399","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"400","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"401","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"402","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"411","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"412","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"15","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}pointofcontact_originator","line":"419","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","C":[{"N":"elem","name":"gmd:pointOfContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pointOfContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"420","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"421","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"422","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"423","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"425","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"426","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"428","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"429","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"430","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"431","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"432","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"433","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"repository@geologie.ac.at"}]}]}]}]}]},{"N":"elem","name":"gmd:onlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"437","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"438","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"439","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"440","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.tethys.at/"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"449","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"450","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"16","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}browseGraphictethys","line":"457","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","C":[{"N":"elem","name":"gmd:graphicOverview","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}graphicOverview ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"458","C":[{"N":"elem","name":"gmd:MD_BrowseGraphic","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_BrowseGraphic ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"459","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:fileName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"460","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"461","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://tethys.at/assets/TETHYS-Logo.svg"}]}]}]},{"N":"elem","name":"gmd:fileDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"463","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"464","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"TETHYS RDR"}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"17","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}freekeywords","line":"471","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"472","C":[{"N":"docOrder","sType":"*NE","line":"472","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"473","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"474","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"forEach","sType":"*NE nQ{http://www.isotc211.org/2005/gmd}keyword ","line":"475","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"and","C":[{"N":"compareToString","op":"eq","val":"Subject","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"eq","val":"Uncontrolled","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]}]}]},{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"476","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"477","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"478","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"478","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"482","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"483","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"theme"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"theme"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","id":"18","uniform":"true","binds":"43","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}datacenter_keyword","line":"491","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","C":[{"N":"elem","name":"gmd:descriptiveKeywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}descriptiveKeywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"492","C":[{"N":"elem","name":"gmd:MD_Keywords","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Keywords ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"493","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:keyword","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}keyword ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"494","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"495","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"496","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}datacentre","bSlot":"0","role":"select","line":"496"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:type","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}type ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"499","C":[{"N":"elem","name":"gmd:MD_KeywordTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_KeywordTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"500","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataCentre"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Tethys RDR"}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"19","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}spatialcoverage","line":"507","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","C":[{"N":"elem","name":"gmd:extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"508","C":[{"N":"elem","name":"gmd:EX_Extent","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_Extent ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"509","C":[{"N":"choose","sType":"* ","line":"510","C":[{"N":"docOrder","sType":"*NE","line":"510","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"descendant-or-self","nodeTest":"*N"}]},{"N":"filter","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Coverage","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]}]}]}]},{"N":"let","var":"Q{}sLat","slot":"0","sType":"* ","line":"512","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"513","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"514","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"515","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"515","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"518"}]}]}]},{"N":"let","var":"Q{}wLong","slot":"1","sType":"* ","line":"522","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"523","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"524","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"525","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"525","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"528","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"528"}]}]}]},{"N":"let","var":"Q{}nLat","slot":"2","sType":"* ","line":"532","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"533","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"534","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"535","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"538"}]}]}]},{"N":"let","var":"Q{}eLong","slot":"3","sType":"* ","line":"542","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"543","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"544","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"545","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1AO","name":"number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"545","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"548","C":[{"N":"str","role":"select","val":"","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"548"}]}]}]},{"N":"choose","sType":"* ","line":"554","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"and","C":[{"N":"and","C":[{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]}]},{"N":"compareToString","op":"ne","val":"NaN","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]}]}]}]},{"N":"choose","sType":"*NE ","type":"item()*","line":"556","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"559","C":[{"N":"elem","name":"gmd:EX_BoundingPolygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_BoundingPolygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"560","C":[{"N":"elem","name":"gmd:polygon","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}polygon ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"561","C":[{"N":"elem","name":"gml:Point","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}Point ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"562","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"gml:id","sType":"1NA ","nsuri":"http://www.opgeris.net/gml/3.2","line":"564","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"generate-id","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"565","C":[{"N":"treat","as":"N","diag":"0|0||generate-id","C":[{"N":"check","card":"?","diag":"0|0||generate-id","C":[{"N":"dot"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"elem","name":"gml:pos","sType":"1NE nQ{http://www.opgeris.net/gml/3.2}pos ","nsuri":"http://www.opgeris.net/gml/3.2","namespaces":"","line":"567","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"568","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"568"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"570","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"570"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"579","C":[{"N":"gc","op":">","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}wLong","slot":"1"}]},{"N":"int","val":"0"}]},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}eLong","slot":"3"}]},{"N":"int","val":"0"}]}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"581","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"582","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"583","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"584","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"585","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"585"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"588","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"589","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"593","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"594","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"595","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"596","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"597","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"597"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"600","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"600"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"605","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"606","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"607","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"608","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"612"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"619","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"620","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"621","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"622","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"623","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"int","sType":"1ADI","val":"-180","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"623"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"626","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"627","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"631","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"632","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"633","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"634","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"638","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"638"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"643","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"644","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"645","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"646","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:geographicElement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}geographicElement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"659","C":[{"N":"elem","name":"gmd:EX_GeographicBoundingBox","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}EX_GeographicBoundingBox ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"660","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:extentTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}extentTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"661","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"662","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]},{"N":"elem","name":"gmd:westBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}westBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"664","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"665","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"666","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}wLong","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"666"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:eastBoundLongitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}eastBoundLongitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"669","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"670","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"671","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}eLong","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"671"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:southBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}southBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"674","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"675","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"676","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"677","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"678","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"678"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"681","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"681"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"gmd:northBoundLatitude","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}northBoundLatitude ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"686","C":[{"N":"elem","name":"gco:Decimal","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Decimal ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"687","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"688","C":[{"N":"vc","op":"lt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"689","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}sLat","slot":"0"}]}]}]},{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"varRef","name":"Q{}nLat","slot":"2"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"690","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nLat","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"690"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"693","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}sLat","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"693"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"20","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}datacite_identifier","line":"709","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"* ","C":[{"N":"forEach","sType":"* ","role":"body","line":"710","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"710","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"let","var":"Q{}identifier","slot":"0","sType":"* ","line":"711","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711"},{"N":"choose","sType":"? ","line":"712","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"712","C":[{"N":"or","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]}]},{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"713","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"714","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"715","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"716","C":[{"N":"choose","sType":"? ","type":"item()*","line":"717","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"718","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"720","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"720","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"data","diag":"0|0||substring-after","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"722","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","val":"Doi"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"723","C":[{"N":"str","val":"http://dx.doi.org/"},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"725","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]},{"N":"str","val":"http://"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"726","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"treat","as":"N","diag":"1|0|XPTY0019|slash","C":[{"N":"varRef","name":"Q{}identifier","slot":"0"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"731","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"732","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"734","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"735","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Landing Page"}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"737","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"738","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"740","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"740","C":[{"N":"fn","name":"string","C":[{"N":"str","val":"Link to DOI landing page or data facility landing page if no DOI is assigned."}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"743","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"744","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"co","binds":"","id":"21","uniform":"true","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}alternate_identifier","line":"753","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"? ","C":[{"N":"choose","sType":"? ","role":"body","line":"754","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"754","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}landingpage"},{"N":"str","val":""}]},{"N":"fn","name":"starts-with","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]}]},{"N":"str","val":"http"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"elem","name":"gmd:onLine","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}onLine ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"755","C":[{"N":"elem","name":"gmd:CI_OnlineResource","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnlineResource ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"756","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:linkage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}linkage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"757","C":[{"N":"elem","name":"gmd:URL","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}URL ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"758","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"759","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"759","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:protocol","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}protocol ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"762","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"763","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"WWW:LINK-1.0-http--link"}]}]}]},{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"765","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"766","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"767","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"767","C":[{"N":"str","val":"url"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:description","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}description ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"770","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Link to a web page related to the resource."}]}]}]},{"N":"elem","name":"gmd:function","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}function ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"773","C":[{"N":"elem","name":"gmd:CI_OnLineFunctionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_OnLineFunctionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"774","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"information"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"information"}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"co","binds":"","id":"22","uniform":"false","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}data_quality","line":"782","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","C":[{"N":"elem","name":"gmd:dataQualityInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dataQualityInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"783","C":[{"N":"elem","name":"gmd:DQ_DataQuality","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DataQuality ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"784","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"785","C":[{"N":"elem","name":"gmd:DQ_Scope","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_Scope ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"786","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:level","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}level ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"787","C":[{"N":"elem","name":"gmd:MD_ScopeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ScopeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"788","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]}]}]}]},{"N":"elem","name":"gmd:levelDescription","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}levelDescription ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"790","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"inapplicable"}]}]}]}]}]},{"N":"elem","name":"gmd:report","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}report ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"793","C":[{"N":"elem","name":"gmd:DQ_DomainConsistency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_DomainConsistency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"794","C":[{"N":"elem","name":"gmd:result","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}result ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"795","C":[{"N":"elem","name":"gmd:DQ_ConformanceResult","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}DQ_ConformanceResult ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"796","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:specification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}specification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"797","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"798","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:title","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}title ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"799","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"800","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten"}]}]}]},{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"802","C":[{"N":"elem","name":"gmd:CI_Date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"803","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:date","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}date ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"804","C":[{"N":"elem","name":"gco:Date","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Date ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"805","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2010-12-08"}]}]}]},{"N":"elem","name":"gmd:dateType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}dateType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"807","C":[{"N":"elem","name":"gmd:CI_DateTypeCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_DateTypeCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"808","C":[{"N":"sequence","ns":"xml=~ =http://www.isotc211.org/2005/gmd xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"publication"}]}]}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:explanation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}explanation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"814","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"815","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Datenstruktur entspricht INSPIRE"}]}]}]},{"N":"elem","name":"gmd:pass","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}pass ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"817","C":[{"N":"elem","name":"gco:Boolean","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Boolean ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"818","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"824","C":[{"N":"elem","name":"gmd:LI_Lineage","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LI_Lineage ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"825","C":[{"N":"elem","name":"gmd:statement","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}statement ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"826","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"827","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Digitalisierung"}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"23","uniform":"true","binds":"52 53","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}distributor","line":"838","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","C":[{"N":"elem","name":"gmd:distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"839","C":[{"N":"elem","name":"gmd:MD_Distributor","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distributor ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"840","C":[{"N":"elem","name":"gmd:distributorContact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributorContact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"841","C":[{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"842","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:organisationName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}organisationName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"843","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"844","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"845","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorOrganisation","bSlot":"0","sType":"1AS","role":"select","line":"845"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"848","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"849","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"850","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"851","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"852","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"853","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"854","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}distributorContactEmail","bSlot":"1","sType":"1AS","role":"select","line":"854"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"861","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"862","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","id":"24","uniform":"true","binds":"54 55 56","C":[{"N":"template","flags":"os","module":"functions.xslt","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","name":"Q{}metadata_maintenance","line":"874","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","expand-text":"true","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","C":[{"N":"elem","name":"gmd:metadataMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","role":"body","line":"875","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"876","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"877","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"878","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]},{"N":"elem","name":"gmd:contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"880","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"881","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"881","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0"}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"882","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"883","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactID","bSlot":"0","sType":"1AS","role":"select","line":"883"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:CI_ResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_ResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"886","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:individualName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}individualName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"887","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"888","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"889","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactName","bSlot":"1","sType":"1AS","role":"select","line":"889"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:contactInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}contactInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"892","C":[{"N":"elem","name":"gmd:CI_Contact","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Contact ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"893","C":[{"N":"elem","name":"gmd:address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"894","C":[{"N":"elem","name":"gmd:CI_Address","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Address ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"895","C":[{"N":"elem","name":"gmd:electronicMailAddress","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}electronicMailAddress ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"896","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"","line":"897","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"898","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"gVarRef","name":"Q{}maintenanceContactEmail","bSlot":"2","sType":"1AS","role":"select","line":"898"},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:role","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}role ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"905","C":[{"N":"elem","name":"gmd:CI_RoleCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_RoleCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"","line":"906","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"processor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"processor"}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"25","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}responseDate","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"26","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}unixTimestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"27","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}email","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"28","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}earliestDatestamp","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"29","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repositoryName","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"30","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}repIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"31","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}doiPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"32","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}sampleIdentifier","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"33","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}dateDelete","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"34","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}totalIds","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"35","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}res","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"36","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}cursor","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"37","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_verb","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"38","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_metadataPrefix","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"39","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_code","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"40","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}oai_error_message","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"41","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalParam","name":"Q{}baseURL","sType":"* ","slots":"200","module":"datasetxml2oai-pmh.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","as":"","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","C":[{"N":"str","sType":"1AS ","val":"","role":"select"}]}]},{"N":"co","binds":"","id":"42","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}fileIdentifierPrefix","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"41","C":[{"N":"str","val":"at.tethys.dataset"}]}]}]},{"N":"co","binds":"","id":"43","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}datacentre","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"43","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"44","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"45","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"45","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}CreatingCorporation"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"48","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"48","C":[{"N":"str","val":"Tethys RDR"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","binds":"","id":"44","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}nl","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"oai_2_iso19139.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"661","C":[{"N":"str","val":"\n"}]}]}]},{"N":"co","binds":"","id":"45","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}ascii","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"}]}]}]}]},{"N":"co","binds":"","id":"46","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}latin1","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"}]}]}]}]},{"N":"co","binds":"","id":"47","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}safe","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"!'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~"}]}]}]}]},{"N":"co","binds":"","id":"48","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}hex","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","module":"datasetxml2oai-pmh.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"0123456789ABCDEF"}]}]}]}]},{"N":"co","binds":"","id":"49","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}resourcetype","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]}]},{"N":"co","id":"50","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopecode","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"19","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"20","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"21","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"software"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"22","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"service"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"23","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"model"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"25","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"?ND ","name":"Q{}resourcetype","bSlot":"0","role":"select","line":"25"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"co","id":"51","vis":"PUBLIC","ex:uniform":"true","binds":"49","C":[{"N":"globalVariable","name":"Q{}MDScopelist","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"?ND ","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"30","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"31","C":[{"N":"or","C":[{"N":"or","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Dataset"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Software"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Service"}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}resourcetype","bSlot":"0"}]},{"N":"str","val":"Model"}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]}]},{"N":"co","binds":"","id":"52","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorOrganisation","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"836","C":[{"N":"str","val":"Geological Survey of Austria"}]}]}]},{"N":"co","binds":"","id":"53","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}distributorContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"837","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","binds":"","id":"54","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactID","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"871","C":[{"N":"str","val":"https://www.re3data.org/repository/r3d100013400"}]}]}]},{"N":"co","binds":"","id":"55","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactName","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"872","C":[{"N":"str","val":"Tethys RDR"}]}]}]},{"N":"co","binds":"","id":"56","vis":"PUBLIC","ex:uniform":"true","C":[{"N":"globalVariable","name":"Q{}maintenanceContactEmail","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","module":"functions.xslt","slots":"200","sType":"1AS","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/functions.xslt","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ gml=http://www.opgeris.net/gml/3.2 xlink=http://www.w3.org/1999/xlink gmx=http://www.isotc211.org/2005/gmx gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"873","C":[{"N":"str","val":"repository@geologie.ac.at"}]}]}]},{"N":"co","id":"57","binds":"25 37 38 41 39 40 65 60 63 61 64 62 7","C":[{"N":"mode","onNo":"SC","flags":"","patternSlots":"0","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"22","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"93","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"/root","prio":"0.5","matches":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NE u[NE nQ{}root,NE nQ{http://www.w3.org/1999/xhtml}root]"},{"N":"p.nodeTest","test":"ND"}]},{"N":"sequence","role":"action","sType":"*N ","C":[{"N":"procInst","sType":"1NP ","C":[{"N":"str","sType":"1AS ","val":"xml-stylesheet"},{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"type=\"text/xsl\" href=\"assets2/oai2_style.xslt\""}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"elem","name":"OAI-PMH","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}OAI-PMH ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"99","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"}]},{"N":"elem","name":"responseDate","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}responseDate ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"100","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"101","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}responseDate","bSlot":"0","role":"select","line":"101"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"request","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}request ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"103","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"104","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"104","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":""}]},{"N":"att","name":"verb","sType":"1NA ","line":"105","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"106","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_verb","bSlot":"1","role":"select","line":"106"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"109","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"109","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_metadataPrefix","bSlot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"metadataPrefix","sType":"1NA ","line":"110","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"111","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_metadataPrefix","bSlot":"2","role":"select","line":"111"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"114","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"3","role":"select","line":"114"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"116","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"116","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]}]},{"N":"elem","name":"error","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}error ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"117","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"code","sType":"1NA ","line":"118","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"119","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"119","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"gVarRef","name":"Q{}oai_error_code","bSlot":"4"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}oai_error_message","bSlot":"5","role":"select","line":"121"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","type":"item()*","line":"126","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"127","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"GetRecord"}]},{"N":"applyT","sType":"* ","line":"128","mode":"Q{}GetRecord","bSlot":"6","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"128"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"130","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"Identify"}]},{"N":"applyT","sType":"* ","line":"131","mode":"Q{}Identify","bSlot":"7","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"131"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"133","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"applyT","sType":"* ","line":"134","mode":"Q{}ListIdentifiers","bSlot":"8","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"134"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"136","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListMetadataFormats"}]},{"N":"applyT","sType":"* ","line":"137","mode":"Q{}ListMetadataFormats","bSlot":"9","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"137"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"139","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListRecords"}]},{"N":"applyT","sType":"* ","line":"140","mode":"Q{}ListRecords","bSlot":"10","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"140"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"142","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListSets"}]},{"N":"applyT","sType":"* ","line":"143","mode":"Q{}ListSets","bSlot":"11","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"*NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"143"}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"31","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"404","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"SetSpec","prio":"0","matches":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","sType":"1NE u[NE nQ{}SetSpec,NE nQ{http://www.w3.org/1999/xhtml}SetSpec]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"405","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"406","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"406"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"30","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"317","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"* ","type":"item()*","role":"action","line":"318","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"319","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}oai_verb","bSlot":"1"}]},{"N":"str","val":"ListIdentifiers"}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"320"},{"N":"true"},{"N":"elem","name":"record","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}record ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"323","C":[{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}Rdr_Dataset_Data","line":"324"}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"26","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"256","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Sets","prio":"0","matches":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"1NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"set","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}set ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"257","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"setSpec","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setSpec ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"258","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"setName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}setName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"261","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"262","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}TypeName","name":"attribute","nodeTest":"*NA nQ{}TypeName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"262"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"co","id":"58","binds":"1 58 30 0 2","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_datacite","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"12","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"395","module":"oai_datacite.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"format","sType":"1NE nQ{http://datacite.org/schema/kernel-4}format ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"396","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"397","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"398","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"402","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"402"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"13","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"409","module":"oai_datacite.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"410","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"411","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"412","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"412"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"414","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"414","C":[{"N":"attVal","name":"Q{}LinkLicence"},{"N":"str","val":""}]},{"N":"att","name":"rightsURI","sType":"1NA ","line":"415","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"416","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LinkLicence","name":"attribute","nodeTest":"*NA nQ{}LinkLicence","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"416"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"att","name":"schemeURI","sType":"1NA ","line":"419","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://spdx.org/licenses/"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifierScheme","sType":"1NA ","line":"422","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"SPDX"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"rightsIdentifier","sType":"1NA ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Name","name":"attribute","nodeTest":"*NA nQ{}Name","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"428","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"428"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"choose","sType":"? ","line":"430","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"430","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"rights","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rights ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"431","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"rightsURI","sType":"1NA ","line":"432","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Open Access"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"11","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"352","module":"oai_datacite.xslt","expand-text":"false","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"creator","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creator ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"353","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"creatorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creatorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"354","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"355","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"355","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":""}]},{"N":"att","name":"nameType","sType":"1NA ","line":"356","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"357","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameType","name":"attribute","nodeTest":"*NA nQ{}NameType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"357"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"360","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"360"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"361","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"361","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"364","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"364"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"365","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"365","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"367","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"367"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"choose","sType":"* ","line":"372","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"372","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"givenName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}givenName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"373","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"374"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"familyName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}familyName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"376","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"377"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"affiliation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}affiliation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"379","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"GBA"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"382","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"382","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"},{"N":"str","val":""}]},{"N":"elem","name":"nameIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}nameIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"383","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"schemeURI","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://orcid.org/"}]},{"N":"att","name":"nameIdentifierScheme","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ORCID"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"384","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}IdentifierOrcid","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"384"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"10","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"333","module":"oai_datacite.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"contributor","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributor ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"334","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"335","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"335","C":[{"N":"attVal","name":"Q{}ContributorType"},{"N":"str","val":""}]},{"N":"att","name":"contributorType","sType":"1NA ","line":"336","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"337","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}ContributorType","name":"attribute","nodeTest":"*NA nQ{}ContributorType","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"337"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"contributorName","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributorName ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"340","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"attVal","name":"Q{}FirstName"}]},{"N":"str","val":" "},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"attVal","name":"Q{}LastName"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"9","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"320","module":"oai_datacite.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"relatedIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"321","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"relatedIdentifierType","sType":"1NA ","line":"322","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"323","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"323"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"relationType","sType":"1NA ","line":"325","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"326","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Relation","name":"attribute","nodeTest":"*NA nQ{}Relation","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"326"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"328","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"328"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"8","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"309","module":"oai_datacite.xslt","expand-text":"false","match":"AlternateIdentifier","prio":"0","matches":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","sType":"1NE u[NE nQ{}AlternateIdentifier,NE nQ{http://www.w3.org/1999/xhtml}AlternateIdentifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"alternateIdentifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"310","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"alternateIdentifierType","sType":"1NA ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"url"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"315","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}landingpage","name":"attribute","nodeTest":"*NA nQ{}landingpage","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"315"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"7","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"297","module":"oai_datacite.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"subject","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subject ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"298","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"299","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"299","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"300","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"301"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"6","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"271","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"272","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"273","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"273","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"275","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"275"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","type":"item()*","line":"278","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"279","C":[{"N":"and","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"281","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"281"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"285","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Sub"}]},{"N":"att","name":"titleType","sType":"1NA ","line":"286","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"287","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"287"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"title"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"292","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"292"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"5","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"255","module":"oai_datacite.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"title","sType":"1NE nQ{http://datacite.org/schema/kernel-4}title ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"256","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"257","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"257","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"258","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"262","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"262","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Main"}]}]},{"N":"att","name":"titleType","sType":"1NA ","line":"263","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"264","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"264"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"267","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"267"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"4","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"245","module":"oai_datacite.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"246","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"identifierType","sType":"1NA ","line":"247","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"DOI"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"250","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"250"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"3","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"208","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"209","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"210","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"211","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"211"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"213","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"213","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"214","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"callT","sType":"* ","bSlot":"0","name":"Q{}CamelCaseWord","line":"215","C":[{"N":"withParam","name":"Q{}text","slot":"0","sType":"*NA nQ{}Type","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type","sType":"*NA nQ{}Type","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"216"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"220","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"220"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"2","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"193","module":"oai_datacite.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"description","sType":"1NE nQ{http://datacite.org/schema/kernel-4}description ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"194","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"195","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"196","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"196"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"choose","sType":"? ","line":"198","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","line":"198","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":""}]},{"N":"att","name":"descriptionType","sType":"1NA ","line":"199","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Abstract"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"204","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"204"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"1","ns":"xml=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"173","module":"oai_datacite.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"geoLocation","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocation ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"174","C":[{"N":"elem","name":"geoLocationBox","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocationBox ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"175","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"westBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}westBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"176","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"177","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMin","name":"attribute","nodeTest":"*NA nQ{}XMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"177"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"eastBoundLongitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}eastBoundLongitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}XMax","name":"attribute","nodeTest":"*NA nQ{}XMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"southBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}southBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"182","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"183","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMin","name":"attribute","nodeTest":"*NA nQ{}YMin","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"183"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"northBoundLatitude","sType":"1NE nQ{http://datacite.org/schema/kernel-4}northBoundLatitude ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}YMax","name":"attribute","nodeTest":"*NA nQ{}YMax","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ ","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"0","ns":"xml=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_datacite.xslt","line":"39","module":"oai_datacite.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ xsi=~ "},{"N":"elem","name":"resource","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resource ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","role":"action","line":"41","C":[{"N":"sequence","ns":"xml=~ xsi=~ =http://datacite.org/schema/kernel-4 xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]},{"N":"choose","sType":"* ","type":"item()*","line":"45","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"46"},{"N":"applyT","sType":"* ","line":"47","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"47"}]},{"N":"true"},{"N":"elem","name":"identifier","sType":"1NE nQ{http://datacite.org/schema/kernel-4}identifier ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"50","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai:"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"52","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"2","role":"select","line":"52"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"54","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishId","name":"attribute","nodeTest":"*NA nQ{}PublishId","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"54"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","name":"creators","sType":"1NE nQ{http://datacite.org/schema/kernel-4}creators ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"60","C":[{"N":"applyT","sType":"* ","line":"61","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"61"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"62"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"elem","name":"titles","sType":"1NE nQ{http://datacite.org/schema/kernel-4}titles ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"65","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"66","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"66"}]},{"N":"applyT","sType":"* ","line":"67","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"67"}]}]}]},{"N":"elem","name":"publisher","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publisher ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"69","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"71","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"71"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"publicationYear","sType":"1NE nQ{http://datacite.org/schema/kernel-4}publicationYear ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"73","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"74","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"74","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"subjects","sType":"1NE nQ{http://datacite.org/schema/kernel-4}subjects ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"76","C":[{"N":"applyT","sType":"* ","line":"77","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"77"}]}]},{"N":"elem","name":"language","sType":"1NE nQ{http://datacite.org/schema/kernel-4}language ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"79","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"80","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"80"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"82","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"82"},{"N":"elem","name":"contributors","sType":"1NE nQ{http://datacite.org/schema/kernel-4}contributors ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"83","C":[{"N":"applyT","sType":"* ","line":"84","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"84"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"85"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"dates","sType":"1NE nQ{http://datacite.org/schema/kernel-4}dates ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"89","C":[{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate2","line":"90"}]},{"N":"elem","name":"version","sType":"1NE nQ{http://datacite.org/schema/kernel-4}version ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"92","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"93","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Version","sType":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"94"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"95","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Version","name":"attribute","nodeTest":"*NA nQ{}Version","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"95"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"1"}]}]}]},{"N":"elem","name":"resourceType","sType":"1NE nQ{http://datacite.org/schema/kernel-4}resourceType ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"102","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"resourceTypeGeneral","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"elem","name":"alternateIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}alternateIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"107","C":[{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}AlternateIdentifier","line":"108"}]},{"N":"choose","sType":"? ","line":"111","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","line":"111"},{"N":"elem","name":"relatedIdentifiers","sType":"1NE nQ{http://datacite.org/schema/kernel-4}relatedIdentifiers ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"112","C":[{"N":"applyT","sType":"* ","line":"113","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"113"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"rightsList","sType":"1NE nQ{http://datacite.org/schema/kernel-4}rightsList ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"116","C":[{"N":"applyT","sType":"* ","line":"117","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"117"}]}]},{"N":"elem","name":"sizes","sType":"1NE nQ{http://datacite.org/schema/kernel-4}sizes ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"119","C":[{"N":"elem","name":"size","sType":"1NE nQ{http://datacite.org/schema/kernel-4}size ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"120","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"121","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"fn","sType":"1ADI","name":"count","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"121","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" datasets"}]}]}]}]},{"N":"elem","name":"formats","sType":"1NE nQ{http://datacite.org/schema/kernel-4}formats ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"125","C":[{"N":"applyT","sType":"* ","line":"126","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"126","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]},{"N":"elem","name":"descriptions","sType":"1NE nQ{http://datacite.org/schema/kernel-4}descriptions ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"128","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"129","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"129"}]},{"N":"applyT","sType":"* ","line":"130","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"130"}]}]}]},{"N":"elem","name":"geoLocations","sType":"1NE nQ{http://datacite.org/schema/kernel-4}geoLocations ","nsuri":"http://datacite.org/schema/kernel-4","namespaces":"=http://datacite.org/schema/kernel-4 xsi=http://www.w3.org/2001/XMLSchema-instance oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/","line":"132","C":[{"N":"applyT","sType":"* ","line":"133","mode":"Q{}oai_datacite","bSlot":"1","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsi=~ xsl=~ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ dc=http://purl.org/dc/elements/1.1/ ","role":"select","line":"133"}]}]}]}]}]}]}]},{"N":"co","id":"59","binds":"13 42 59 10 11 3 4 12 43 5 14 15 16 17 18 19 23 20 21 22 24","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}iso19139","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"21","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"737","module":"oai_2_iso19139.xslt","expand-text":"true","match":"File","prio":"0","matches":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"1NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"738","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"738","C":[{"N":"fn","name":"string-length","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]}]}]},{"N":"elem","name":"gmd:distributionFormat","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionFormat ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"739","C":[{"N":"elem","name":"gmd:MD_Format","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Format ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"740","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:name","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}name ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"741","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"742","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"743","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"746","C":[{"N":"att","name":"gco:nilReason","nsuri":"http://www.isotc211.org/2005/gco","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"missing"}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"20","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"701","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"704","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"704","C":[{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"missing"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"fn","name":"not","C":[{"N":"fn","name":"contains","C":[{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","val":"unknown"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"elem","name":"gmd:aggregationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"705","C":[{"N":"elem","name":"gmd:MD_AggregateInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_AggregateInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"706","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:aggregateDataSetIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}aggregateDataSetIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"707","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"708","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"709","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"710","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"711","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","name":"gmd:codeSpace","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}codeSpace ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"714","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"715","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"716","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"716","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:associationType","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}associationType ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"721","C":[{"N":"elem","type":"element()","name":"gmd:DS_AssociationTypeCode","sType":"1NE ","nsuri":"http://www.isotc211.org/2005/gmd","line":"722","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","sType":"1NA ","line":"723","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"724","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"724","C":[{"N":"str","val":"http://datacite.org/schema/kernel-4"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"codeListValue","sType":"1NA ","line":"726","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"727","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"729","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"729","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"19","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"550","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"let","var":"Q{}dcrole","slot":"0","sType":"*NE ","line":"551","role":"action","C":[{"N":"fn","name":"normalize-space","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"551","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"data","diag":"0|0||normalize-space","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ContributorType"}]}]}]}]}]},{"N":"let","var":"Q{}role","slot":"1","sType":"*NE ","line":"552","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"553","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"554","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ContactPerson"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"pointOfContact"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"555","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCollector"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"556","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataCurator"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"557","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"DataManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"custodian"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"558","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Distributor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"originator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"559","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Editor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"editor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"560","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Funder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"561","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"HostingInstitution"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"distributor"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"562","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"563","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectManager"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"564","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ProjectMember"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"565","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"ResearchGroup"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"566","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Researcher"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"567","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"RightsHolder"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"rightsHolder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"568","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"Sponsor"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"funder"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"569","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}dcrole","slot":"0"}]},{"N":"str","val":"WorkPackageLeader"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collaborator"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"contributor"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"573","C":[{"N":"let","var":"Q{}http-uri","slot":"2","sType":"* ","line":"574","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"575","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"576","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"580","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"583","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"588","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"588","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"590","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"590"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"3","sType":"* ","line":"593","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"594","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"595","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"2"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"596","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"596","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"599","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"4","sType":"* ","line":"603","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"604","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"605","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"606","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"606"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"609","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"609","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"5","sType":"* ","line":"613","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"614","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"615","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"616","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"616","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"619","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"619","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}contrnamestring","slot":"6","sType":"* ","line":"623","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"624","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"625","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"630","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"630","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"633","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"633","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"637","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"639","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}contrnamestring","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"639"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}httpuri","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"642","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"642"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"645","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"645"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"648","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"648"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}position","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"651","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}dcrole","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"651"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"4","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"654","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"654"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"1","sType":"*","C":[{"N":"varRef","name":"Q{}role","slot":"1","sType":"*","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"656"}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"18","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"448","module":"oai_2_iso19139.xslt","expand-text":"true","match":"PersonAuthor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"449","C":[{"N":"let","var":"Q{}http-uri","slot":"0","sType":"* ","line":"450","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"451","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"452","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}IdentifierOrcid"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"456","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"456","C":[{"N":"str","val":"http://orcid.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}IdentifierOrcid"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"459","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"459","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"464","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"464","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]},{"N":"str","val":""}]},{"N":"att","name":"xlink:href","sType":"1NA ","nsuri":"http://www.w3.org/1999/xlink","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}http-uri","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"466"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}nameidscheme","slot":"1","sType":"* ","line":"469","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"470","C":[{"N":"fn","name":"starts-with","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"471","C":[{"N":"treat","as":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"varRef","name":"Q{}http-uri","slot":"0"}]}]}]}]}]},{"N":"str","val":"http://orcid.org/"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"472","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"472","C":[{"N":"str","val":"ORCID"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"475","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"475","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}email","slot":"2","sType":"* ","line":"479","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"480","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"481","C":[{"N":"attVal","name":"Q{}Email"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"482","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Email","name":"attribute","nodeTest":"*NA nQ{}Email","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"482"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"485","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"485","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}affiliation","slot":"3","sType":"* ","line":"489","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"490","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"491","C":[{"N":"attVal","name":"Q{}NameType"},{"N":"str","val":"Personal"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"492","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"492","C":[{"N":"str","val":"GBA"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"495","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"495","C":[{"N":"str","val":""}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"let","var":"Q{}creatorname","slot":"4","sType":"* ","line":"499","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"500","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"500"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"501","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"501","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"504","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"504"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"505","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"505","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"507","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"507"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"let","var":"Q{}namestring","slot":"5","sType":"* ","line":"511","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"512","C":[{"N":"compareToString","op":"ne","val":"","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"513","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"518","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"518","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}LastName"}]}]}]},{"N":"str","val":", "},{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}FirstName"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"524","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"524","C":[{"N":"str","val":"missing"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"528","C":[{"N":"withParam","name":"Q{}individual","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"530","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}namestring","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"530"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}personidtype","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"533","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}nameidscheme","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"533"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}affiliation","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"536"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"author"}]}]}]}]},{"N":"withParam","name":"Q{}email","slot":"2","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"540","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}email","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"540"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}datacite-creatorname","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}creatorname","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"543"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"17","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"437","module":"oai_2_iso19139.xslt","expand-text":"true","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"choose","sType":"? ","role":"action","line":"438","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"438","C":[{"N":"compareToString","op":"eq","val":"Alternative","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Value"},{"N":"str","val":""}]}]},{"N":"elem","name":"gmd:alternateTitle","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}alternateTitle ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"439","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"440","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"441","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"441","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"16","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"368","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:fileIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}fileIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","role":"action","line":"369","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"370","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"372","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","line":"373","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"attVal","name":"Q{}Value"}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"374","C":[{"N":"gVarRef","name":"Q{}fileIdentifierPrefix","bSlot":"1"},{"N":"fn","name":"normalize-space","C":[{"N":"fn","name":"substring-after","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring-after","C":[{"N":"check","card":"?","diag":"0|0||substring-after","C":[{"N":"attVal","name":"Q{}Value"}]}]},{"N":"str","val":"/tethys."},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"377","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"377","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"15","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"341","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"sequence","role":"action","sType":"*NE ","C":[{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"342","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xlink:href","nsuri":"http://www.w3.org/1999/xlink","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"https://creativecommons.org/licenses/by/4.0/deed.en"}]},{"N":"elem","name":"gmd:MD_Constraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Constraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"343","C":[{"N":"elem","name":"gmd:useLimitation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}useLimitation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"344","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"345","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"346","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"346","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"351","C":[{"N":"elem","name":"gmd:MD_LegalConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_LegalConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"352","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:accessConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}accessConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"353","C":[{"N":"elem","name":"gmd:MD_RestrictionCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RestrictionCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"354","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_RestrictionCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"otherRestrictions"}]}]}]}]},{"N":"elem","name":"gmd:otherConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}otherConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"356","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xlink=http://www.w3.org/1999/xlink fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","line":"357","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"358","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco ","role":"select","line":"358","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}NameLong"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"14","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","line":"54","module":"oai_2_iso19139.xslt","expand-text":"true","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco "},{"N":"elem","name":"gmd:MD_Metadata","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Metadata ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","role":"action","line":"59","C":[{"N":"sequence","ns":"xml=~ gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ fn=http://example.com/functions","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd http://schemas.opengis.net/iso/19139/20060504/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://schemas.opengis.net/iso/19139/20060504/gmx/gmx.xsd http://www.isotc211.org/2005/srv http://schemas.opengis.net/iso/19139/20060504/srv/srv.xsd"}]},{"N":"choose","sType":"* ","line":"62","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"62"},{"N":"applyT","sType":"* ","line":"63","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"63"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"67","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"68","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:characterSet","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}characterSet ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"70","C":[{"N":"elem","name":"gmd:MD_CharacterSetCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_CharacterSetCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"71","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_CharacterSetCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"utf8"}]}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}hierarchylevel","line":"75"},{"N":"elem","name":"gmd:hierarchyLevelName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}hierarchyLevelName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"77","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"78","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}metadatacontact","line":"84"},{"N":"callT","bSlot":"5","sType":"* ","name":"Q{}datestamp","line":"87"},{"N":"elem","name":"gmd:metadataStandardName","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardName ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"89","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"90","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"ISO 19139 Geographic Information - Metadata - Implementation Specification"}]}]}]},{"N":"elem","name":"gmd:metadataStandardVersion","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}metadataStandardVersion ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"92","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"93","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2007"}]}]}]},{"N":"elem","name":"gmd:referenceSystemInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"96","C":[{"N":"elem","name":"gmd:MD_ReferenceSystem","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ReferenceSystem ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"97","C":[{"N":"elem","name":"gmd:referenceSystemIdentifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}referenceSystemIdentifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"98","C":[{"N":"elem","name":"gmd:RS_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}RS_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"99","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"100","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"102","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"https://www.opengis.net/def/crs/EPSG/0/31287"}]}]}]},{"N":"elem","name":"gmd:version","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}version ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"104","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"105","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"6.11.2"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:identificationInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identificationInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"112","C":[{"N":"elem","name":"gmd:MD_DataIdentification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DataIdentification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"113","C":[{"N":"sequence","sType":"* ","C":[{"N":"elem","name":"gmd:citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"116","C":[{"N":"elem","name":"gmd:CI_Citation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}CI_Citation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"117","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"6","sType":"* ","name":"Q{}title","line":"119"},{"N":"applyT","sType":"* ","line":"122","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"122"}]},{"N":"callT","bSlot":"7","sType":"* ","name":"Q{}resourcedates","line":"125"},{"N":"elem","name":"gmd:identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"129","C":[{"N":"forEach","sType":"* ","line":"130","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"130","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"Identifier","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"133","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"133","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"string-length","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||string-length","C":[{"N":"check","card":"?","diag":"0|0||string-length","C":[{"N":"data","diag":"0|0||string-length","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]}]}]},{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"arrayBlock","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Type"}]}]},{"N":"str","val":"Doi"}]}]}]}]}]},{"N":"elem","name":"gmd:MD_Identifier","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Identifier ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"134","C":[{"N":"elem","name":"gmd:code","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}code ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"135","C":[{"N":"elem","name":"gco:CharacterString","sType":"1NE nQ{http://www.isotc211.org/2005/gco}CharacterString ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"136","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"137","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"138","C":[{"N":"fn","name":"starts-with","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||starts-with","C":[{"N":"check","card":"?","diag":"0|0||starts-with","C":[{"N":"data","diag":"0|0||starts-with","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi:"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"fn","name":"contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","val":"doi.org"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"139","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"139","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"141","C":[{"N":"compareToInt","op":"gt","val":"0","C":[{"N":"fn","name":"count","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"gVarRef","name":"Q{}datacentre","bSlot":"8"}]},{"N":"str","val":"Tethys RDR"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"145","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"145","C":[{"N":"str","val":"https://doi.org/"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"slash","op":"/","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"148","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Value","role":"select","line":"148","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","C":[{"N":"filter","C":[{"N":"dot"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Doi"}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"applyT","sType":"* ","line":"159","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"159"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"160"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"applyT","sType":"* ","line":"164","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"164"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"165"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"elem","name":"gmd:citedResponsibleParty","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}citedResponsibleParty ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"169","C":[{"N":"callT","bSlot":"0","sType":"* ","name":"Q{}ci_responsibleparty","line":"170","C":[{"N":"withParam","name":"Q{}organisation","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"172","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"172"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"withParam","name":"Q{}role","slot":"0","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"publisher"}]}]}]}]}]}]}]}]}]},{"N":"callT","bSlot":"9","sType":"* ","name":"Q{}abstract","line":"181"},{"N":"elem","name":"gmd:status","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}status ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"183","C":[{"N":"elem","name":"gmd:MD_ProgressCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ProgressCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"184","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ProgressCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"Complete"}]},{"N":"att","name":"codeSpace","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ISOTC211/19115"}]}]}]}]},{"N":"callT","bSlot":"10","sType":"* ","name":"Q{}pointofcontact_custodian","line":"188"},{"N":"callT","bSlot":"11","sType":"* ","name":"Q{}pointofcontact_originator","line":"191"},{"N":"elem","name":"gmd:resourceMaintenance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceMaintenance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"194","C":[{"N":"elem","name":"gmd:MD_MaintenanceInformation","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceInformation ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"195","C":[{"N":"elem","name":"gmd:maintenanceAndUpdateFrequency","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}maintenanceAndUpdateFrequency ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"196","C":[{"N":"elem","name":"gmd:MD_MaintenanceFrequencyCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_MaintenanceFrequencyCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"197","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://schemas.opengis.net/iso/19139/20070417/resources/codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"asNeeded"}]}]}]}]}]}]},{"N":"callT","bSlot":"12","sType":"* ","name":"Q{}browseGraphictethys","line":"230"},{"N":"callT","bSlot":"13","sType":"* ","name":"Q{}freekeywords","line":"233"},{"N":"callT","bSlot":"14","sType":"* ","name":"Q{}datacenter_keyword","line":"235"},{"N":"applyT","sType":"* ","line":"238","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"238"}]},{"N":"elem","name":"gmd:resourceConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}resourceConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"239","C":[{"N":"elem","name":"gmd:MD_SecurityConstraints","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_SecurityConstraints ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"240","C":[{"N":"elem","name":"gmd:classification","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}classification ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"241","C":[{"N":"elem","name":"gmd:MD_ClassificationCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_ClassificationCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"242","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/resources/codeList.xml#MD_ClassificationCode"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"unclassified"}]}]}]}]}]}]},{"N":"applyT","sType":"* ","line":"252","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"252"}]},{"N":"elem","name":"gmd:spatialResolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}spatialResolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"254","C":[{"N":"let","var":"Q{}mainTitle","slot":"0","sType":"*NE ","line":"255","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/oai_2_iso19139.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"257","C":[{"N":"filter","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"257","C":[{"N":"axis","name":"child","nodeTest":"*NE"},{"N":"compareToString","op":"eq","val":"TitleMain","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"name","C":[{"N":"dot"}]}]}]},{"N":"choose","sType":"? ","line":"258","C":[{"N":"compareToString","op":"eq","val":"Main","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"258","C":[{"N":"fn","name":"normalize-space","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||normalize-space","C":[{"N":"check","card":"?","diag":"0|0||normalize-space","C":[{"N":"attVal","name":"Q{}Type"}]}]}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"elem","name":"gmd:MD_Resolution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Resolution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"263","C":[{"N":"choose","sType":"?NE ","type":"item()*","line":"264","C":[{"N":"fn","name":"contains","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","line":"265","C":[{"N":"treat","as":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||contains","C":[{"N":"check","card":"?","diag":"0|0||contains","C":[{"N":"data","diag":"0|0||contains","C":[{"N":"varRef","name":"Q{}mainTitle","slot":"0"}]}]}]}]}]},{"N":"str","val":"50.000"},{"N":"str","val":"http://www.w3.org/2005/xpath-functions/collation/codepoint"}]},{"N":"elem","name":"gmd:equivalentScale","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}equivalentScale ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"266","C":[{"N":"elem","name":"gmd:MD_RepresentativeFraction","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_RepresentativeFraction ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"267","C":[{"N":"elem","name":"gmd:denominator","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}denominator ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"268","C":[{"N":"elem","name":"gco:Integer","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Integer ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"270","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"50000"}]}]}]}]}]},{"N":"true"},{"N":"elem","name":"gmd:distance","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distance ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"276","C":[{"N":"elem","name":"gco:Distance","sType":"1NE nQ{http://www.isotc211.org/2005/gco}Distance ","nsuri":"http://www.isotc211.org/2005/gco","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"277","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"uom","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"m"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"-1"}]}]}]}]}]}]}]}]},{"N":"elem","name":"gmd:language","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}language ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"285","C":[{"N":"elem","name":"gmd:LanguageCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}LanguageCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"286","C":[{"N":"sequence","sType":"*NA ","C":[{"N":"att","name":"codeList","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.loc.gov/standards/iso639-2/"}]},{"N":"att","name":"codeListValue","nsuri":"","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"ger"}]}]}]}]},{"N":"elem","name":"gmd:topicCategory","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}topicCategory ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"290","C":[{"N":"elem","name":"gmd:MD_TopicCategoryCode","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_TopicCategoryCode ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"291","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"geoscientificInformation"}]}]}]},{"N":"callT","bSlot":"15","sType":"* ","name":"Q{}spatialcoverage","line":"295"}]}]}]},{"N":"elem","name":"gmd:distributionInfo","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}distributionInfo ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"304","C":[{"N":"elem","name":"gmd:MD_Distribution","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_Distribution ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"305","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"308","mode":"Q{}iso19139","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=http://example.com/functions gmd=http://www.isotc211.org/2005/gmd xsi=~ gco=http://www.isotc211.org/2005/gco srv=http://www.isotc211.org/2005/srv gmx=http://www.isotc211.org/2005/gmx gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 xlink=http://www.w3.org/1999/xlink xsl=~ xs=~ ","role":"select","line":"308"}]},{"N":"callT","bSlot":"16","sType":"* ","name":"Q{}distributor","line":"311"},{"N":"elem","name":"gmd:transferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}transferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"314","C":[{"N":"elem","name":"gmd:MD_DigitalTransferOptions","sType":"1NE nQ{http://www.isotc211.org/2005/gmd}MD_DigitalTransferOptions ","nsuri":"http://www.isotc211.org/2005/gmd","namespaces":"xs=http://www.w3.org/2001/XMLSchema xsi=http://www.w3.org/2001/XMLSchema-instance xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gmx=http://www.isotc211.org/2005/gmx gmi=http://www.isotc211.org/2005/gmi gml=http://www.opengis.net/gml/3.2 gco=http://www.isotc211.org/2005/gco gts=http://www.isotc211.org/2005/gts gsr=http://www.isotc211.org/2005/gsr srv=http://www.isotc211.org/2005/srv fn=http://example.com/functions","line":"315","C":[{"N":"sequence","sType":"* ","C":[{"N":"callT","bSlot":"17","sType":"* ","name":"Q{}datacite_identifier","line":"319"},{"N":"callT","bSlot":"18","sType":"* ","name":"Q{}alternate_identifier","line":"322"}]}]}]}]}]}]},{"N":"callT","bSlot":"19","sType":"* ","name":"Q{}data_quality","line":"330"},{"N":"callT","bSlot":"20","sType":"* ","name":"Q{}metadata_maintenance","line":"333"}]}]}]}]}]},{"N":"co","id":"60","binds":"29 41 27 28 30 32","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}Identify","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"23","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"151","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"Identify","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}Identify ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"152","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"repositoryName","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}repositoryName ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"153","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"154","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repositoryName","bSlot":"0","role":"select","line":"154"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"baseURL","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}baseURL ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"156","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"157","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}baseURL","bSlot":"1","role":"select","line":"157"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"protocolVersion","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}protocolVersion ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"159","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"2.0"}]}]},{"N":"elem","name":"adminEmail","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}adminEmail ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"162","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"163","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}email","bSlot":"2","role":"select","line":"163"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"earliestDatestamp","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}earliestDatestamp ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"165","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"166","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}earliestDatestamp","bSlot":"3","role":"select","line":"166"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"deletedRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}deletedRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"168","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"persistent"}]}]},{"N":"elem","name":"granularity","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}granularity ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"171","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"YYYY-MM-DDThh:mm:ssZ"}]}]},{"N":"elem","name":"description","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}description ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"174","C":[{"N":"elem","name":"oai-identifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}oai-identifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","line":"175","C":[{"N":"sequence","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/oai-identifier xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","sType":"*N ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai-identifier http://www.openarchives.org/OAI/2.0/oai-identifier.xsd"}]},{"N":"elem","name":"scheme","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}scheme ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"176","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai"}]}]},{"N":"elem","name":"repositoryIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}repositoryIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"179","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"180","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}repIdentifier","bSlot":"4","role":"select","line":"180"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"elem","name":"delimiter","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}delimiter ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"182","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":":"}]}]},{"N":"elem","name":"sampleIdentifier","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai-identifier}sampleIdentifier ","nsuri":"http://www.openarchives.org/OAI/2.0/oai-identifier","namespaces":"=http://www.openarchives.org/OAI/2.0/oai-identifier xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"185","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"186","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}sampleIdentifier","bSlot":"5","role":"select","line":"186"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]}]}]}]}]}]},{"N":"co","binds":"","id":"61","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListMetadataFormats","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"24","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"218","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListMetadataFormats","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListMetadataFormats ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"219","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"220","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"221","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_dc"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"224","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"227","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"231","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"232","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"oai_datacite"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"235","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://schema.datacite.org/meta/kernel-4.3/metadata.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"238","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://datacite.org/schema/kernel-4"}]}]}]}]},{"N":"elem","name":"metadataFormat","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataFormat ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"242","C":[{"N":"sequence","sType":"*NE ","C":[{"N":"elem","name":"metadataPrefix","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataPrefix ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"243","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"iso19139"}]}]},{"N":"elem","name":"schema","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}schema ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"244","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd/gmd.xsd"}]}]},{"N":"elem","name":"metadataNamespace","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}metadataNamespace ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"245","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"http://www.isotc211.org/2005/gmd"}]}]}]}]}]}]}]}]}]},{"N":"co","id":"62","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListSets","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"25","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"250","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"ListSets","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListSets ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"251","C":[{"N":"applyT","sType":"* ","line":"252","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","sType":"*NE u[NE nQ{}Rdr_Sets,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Sets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"252"}]}]}]}]}]},{"N":"co","id":"63","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListIdentifiers","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"27","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"267","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"268","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"268","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListIdentifiers","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListIdentifiers ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"269","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"270","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"270"}]},{"N":"choose","sType":"? ","line":"271","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"271","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"272","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"273","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"274","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"274"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"276","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"277","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"277"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"279","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"280","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"280"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"282","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"282"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"64","binds":"57 34 33 36 35","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}ListRecords","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"28","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"289","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"290","C":[{"N":"compareToInt","op":"gt","val":"0","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"290","C":[{"N":"fn","name":"count","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]}]},{"N":"elem","name":"ListRecords","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}ListRecords ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"291","C":[{"N":"sequence","sType":"* ","C":[{"N":"applyT","sType":"* ","line":"292","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"292"}]},{"N":"choose","sType":"? ","line":"293","C":[{"N":"vc","op":"gt","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"293","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"gVarRef","name":"Q{}totalIds","bSlot":"1"}]}]}]},{"N":"int","val":"0"}]},{"N":"elem","name":"resumptionToken","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}resumptionToken ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"294","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"expirationDate","sType":"1NA ","line":"295","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"296","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}dateDelete","bSlot":"2","role":"select","line":"296"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"completeListSize","sType":"1NA ","line":"298","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"299","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}totalIds","bSlot":"1","role":"select","line":"299"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"att","name":"cursor","sType":"1NA ","line":"301","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"302","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}cursor","bSlot":"3","role":"select","line":"302"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"gVarRef","sType":"* ","name":"Q{}res","bSlot":"4","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"co","id":"65","binds":"57","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}GetRecord","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"29","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"311","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Datasets","prio":"0","matches":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","sType":"1NE u[NE nQ{}Datasets,NE nQ{http://www.w3.org/1999/xhtml}Datasets]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"GetRecord","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/}GetRecord ","nsuri":"http://www.openarchives.org/OAI/2.0/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"312","C":[{"N":"applyT","sType":"* ","line":"313","mode":"#unnamed","bSlot":"0","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"313"}]}]}]}]}]},{"N":"co","id":"66","binds":"31 26 66 9 8","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","name":"Q{}oai_dc","prec":"","C":[{"N":"templateRule","rank":"0","prec":"1","seq":"44","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"704","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"File/@MimeType","prio":"0.5","matches":"NA nQ{}MimeType","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"p.nodeTest","test":"NA nQ{}MimeType"},{"N":"p.nodeTest","test":"NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"}]},{"N":"elem","name":"dc:format","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}format ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"705","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"706","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"707","C":[{"N":"atomSing","diag":"1|0||gc","card":"?","C":[{"N":"dot"}]},{"N":"str","val":"application/x-sqlite3"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"application/geopackage+sqlite3"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"711","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"711"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"1","seq":"48","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"766","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Licence","prio":"0","matches":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"1NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"767","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"768","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}NameLong","name":"attribute","nodeTest":"*NA nQ{}NameLong","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"768"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"choose","sType":"? ","line":"770","C":[{"N":"or","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"770","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-4.0"}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Name"},{"N":"str","val":"CC-BY-SA-4.0"}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"771","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/semantics/openAccess"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"templateRule","rank":"2","prec":"1","seq":"47","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"740","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@Language","prio":"0","matches":"NA nQ{}Language","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}Language","sType":"1NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"741","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"742","C":[{"N":"compareToString","op":"eq","val":"de","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"743","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ger","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"5"}]},{"N":"compareToString","op":"eq","val":"en","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"744","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"eng","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"7"}]},{"N":"compareToString","op":"eq","val":"es","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"745","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"spa","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"9"}]},{"N":"compareToString","op":"eq","val":"it","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"746","C":[{"N":"fn","name":"string","C":[{"N":"dot"}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","C":[{"N":"str","role":"select","val":"ita","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"11"}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"748","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"748","C":[{"N":"dot"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"3","prec":"1","seq":"46","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"734","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"@CreatingCorporation","prio":"0","matches":"NA nQ{}CreatingCorporation","C":[{"N":"p.nodeTest","role":"match","test":"NA nQ{}CreatingCorporation","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:language","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}language ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"735","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"736","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"736"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"4","prec":"1","seq":"45","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"724","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Identifier","prio":"0","matches":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"1NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"725","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"727","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"727","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"gVarRef","name":"Q{}doiPrefix","bSlot":"0"}]}]},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"5","prec":"1","seq":"43","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"679","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"EmbargoDate","prio":"0","matches":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"1NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"choose","sType":"? ","role":"action","line":"680","C":[{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"680","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]},{"N":"elem","name":"dc:date","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}date ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"681","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"info:eu-repo/date/embargoEnd/"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"683","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"683","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"685","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"685","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Month"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n -\n "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"687","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"format-number","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"687","C":[{"N":"fn","name":"number","C":[{"N":"check","card":"?","diag":"0|0||number","C":[{"N":"data","diag":"0|0||number","C":[{"N":"slash","op":"/","C":[{"N":"dot"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Day"}]}]}]}]},{"N":"str","val":"00"}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"templateRule","rank":"6","prec":"1","seq":"42","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"641","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonContributor","prio":"0","matches":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"1NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:contributor","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}contributor ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"642","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"643","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"643"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"644","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"644","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"647","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"647"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"648","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"648","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"650","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"650"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"7","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"1NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"8","prec":"1","seq":"41","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"626","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"PersonAuthor|PersonEditor","prio":"0","matches":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]","sType":"1NE u[NE nQ{}PersonEditor,NE nQ{http://www.w3.org/1999/xhtml}PersonEditor]"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"627","C":[{"N":"sequence","sType":"* ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"628","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"628"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"629","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"629","C":[{"N":"attVal","name":"Q{}FirstName"},{"N":"str","val":""}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"632","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"632"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"* ","line":"633","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"633","C":[{"N":"attVal","name":"Q{}AcademicTitle"},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":" ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"635","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}AcademicTitle","name":"attribute","nodeTest":"*NA nQ{}AcademicTitle","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"635"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"templateRule","rank":"9","prec":"1","seq":"40","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"616","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Reference","prio":"0","matches":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"1NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:relation","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}relation ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"617","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"618","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"618","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"10","prec":"1","seq":"39","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"605","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Collection","prio":"0","matches":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"1NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"606","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"612","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"612","C":[{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Collectionrole.Name"}]}]},{"N":"str","val":":"},{"N":"fn","name":"string","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Number"}]}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"templateRule","rank":"11","prec":"1","seq":"38","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"595","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Subject","prio":"0","matches":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"1NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:subject","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}subject ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"596","C":[{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"? ","line":"597","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"597","C":[{"N":"attVal","name":"Q{}Language"},{"N":"str","val":""}]},{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"598","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"599","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"599"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"602","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"602"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"12","prec":"1","seq":"37","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"586","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstractAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"1NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"587","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"588","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"589","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"589"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"591","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"591"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"13","prec":"1","seq":"36","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"578","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAbstract","prio":"0","matches":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"1NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:description","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}description ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"579","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"580","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"581","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"581"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"583","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"583"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"14","prec":"1","seq":"35","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"569","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleAdditional","prio":"0","matches":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"1NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"570","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"571","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"572","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"572"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"574","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"574"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"15","prec":"1","seq":"34","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"560","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"TitleMain","prio":"0","matches":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"1NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:title","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}title ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"561","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"xml:lang","sType":"1NA ","nsuri":"http://www.w3.org/XML/1998/namespace","line":"562","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","flags":"l","line":"563","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Language","name":"attribute","nodeTest":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"563"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"565","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"565"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"templateRule","rank":"16","prec":"1","seq":"33","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"523","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Coverage","prio":"0","matches":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"1NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"dc:coverage","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}coverage ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"524","C":[{"N":"let","var":"Q{}geolocation","slot":"0","sType":"* ","line":"530","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"530","C":[{"N":"str","val":"SOUTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}YMin"}]},{"N":"str","val":" * WEST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}XMin"}]},{"N":"str","val":" * NORTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|5||concat","C":[{"N":"attVal","name":"Q{}YMax"}]},{"N":"str","val":" * EAST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|7||concat","C":[{"N":"attVal","name":"Q{}XMax"}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"531","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"0","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"531"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"choose","sType":"? ","line":"534","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"534","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"535","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"535","C":[{"N":"str","val":" * ELEVATION MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationMin"}]},{"N":"str","val":" * ELEVATION MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}ElevationMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"537","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"537","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"538","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"538","C":[{"N":"str","val":" * ELEVATION ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"542","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"542","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"543","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"543","C":[{"N":"str","val":" * DEPTH MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthMin"}]},{"N":"str","val":" * DEPTH MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}DepthMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"545","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"545","C":[{"N":"attVal","name":"Q{}DepthAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"546","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"546","C":[{"N":"str","val":" * DEPTH ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"550","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"550","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"551","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"551","C":[{"N":"str","val":" * TIME MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeMin"}]},{"N":"str","val":" * TIME MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}TimeMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"553","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"553","C":[{"N":"attVal","name":"Q{}TimeAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"554","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"554","C":[{"N":"str","val":" * TIME ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"17","prec":"1","seq":"32","ns":"xml=~ =http://www.openarchives.org/OAI/2.0/ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/datasetxml2oai-pmh.xslt","line":"410","module":"datasetxml2oai-pmh.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ "},{"N":"elem","name":"oai_dc:dc","sType":"1NE nQ{http://www.openarchives.org/OAI/2.0/oai_dc/}dc ","nsuri":"http://www.openarchives.org/OAI/2.0/oai_dc/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","role":"action","line":"411","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"xsi:schemaLocation","nsuri":"http://www.w3.org/2001/XMLSchema-instance","sType":"1NA ","C":[{"N":"str","sType":"1AS ","val":"http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd"}]},{"N":"applyT","sType":"* ","line":"413","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"413"}]},{"N":"applyT","sType":"* ","line":"415","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"415"}]},{"N":"choose","sType":"* ","type":"item()*","line":"418","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"419"},{"N":"applyT","sType":"* ","line":"420","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"420"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"421"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","sType":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"424"},{"N":"elem","name":"dc:creator","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}creator ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"425","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"431","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"431"}]},{"N":"applyT","sType":"* ","line":"432","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","sType":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"432"}]},{"N":"applyT","sType":"* ","line":"434","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"434"}]},{"N":"applyT","sType":"* ","line":"436","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"436"}]},{"N":"elem","name":"dc:publisher","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}publisher ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"438","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"440","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"440"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"444","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"sort","role":"select","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","sType":"*NE u[NE nQ{}PersonContributor,NE nQ{http://www.w3.org/1999/xhtml}PersonContributor]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"444"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"445"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]}]},{"N":"callT","bSlot":"3","sType":"* ","name":"Q{}RdrDate","line":"448"},{"N":"applyT","sType":"* ","line":"450","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","sType":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"450"}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"452","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"Dataset"}]}]},{"N":"elem","name":"dc:type","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}type ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"453","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc-type:ResearchData"}]}]},{"N":"applyT","sType":"* ","line":"457","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"docOrder","sType":"*NA nQ{}MimeType","role":"select","line":"457","C":[{"N":"slash","op":"/","sType":"*NA nQ{}MimeType","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}MimeType"}]}]}]},{"N":"applyT","sType":"* ","line":"459","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","sType":"*NE u[NE nQ{}File,NE nQ{http://www.w3.org/1999/xhtml}File]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"459"}]},{"N":"elem","name":"dc:identifier","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}identifier ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"464","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"465","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}landingpage"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]},{"N":"applyT","sType":"* ","line":"471","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Language","sType":"*NA nQ{}Language","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"471"}]},{"N":"choose","sType":"* ","line":"473","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"473"},{"N":"applyT","sType":"* ","line":"474","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"474"}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"applyT","sType":"* ","line":"476","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"476"}]},{"N":"applyT","sType":"* ","line":"478","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"478"}]},{"N":"applyT","sType":"* ","line":"480","mode":"Q{}oai_dc","bSlot":"2","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","role":"select","line":"480"}]},{"N":"choose","sType":"? ","line":"481","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=~ xsl=~ dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/ xsi=~ ","line":"481","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"gc","op":"<","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"gVarRef","name":"Q{}unixTimestamp","bSlot":"1"}]},{"N":"data","diag":"1|1||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}EmbargoDate,NE nQ{http://www.w3.org/1999/xhtml}EmbargoDate]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"elem","name":"dc:rights","sType":"1NE nQ{http://purl.org/dc/elements/1.1/}rights ","nsuri":"http://purl.org/dc/elements/1.1/","namespaces":"=http://www.openarchives.org/OAI/2.0/ xsi=http://www.w3.org/2001/XMLSchema-instance dc=http://purl.org/dc/elements/1.1/ oai_dc=http://www.openarchives.org/OAI/2.0/oai_dc/","line":"482","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"embargo"}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"callT","bSlot":"4","sType":"* ","name":"Q{}citation","line":"485"}]}]}]}]}]},{"N":"overridden"},{"N":"output","C":[{"N":"property","name":"Q{http://saxon.sf.net/}stylesheet-version","value":"30"},{"N":"property","name":"method","value":"xml"},{"N":"property","name":"encoding","value":"utf-8"},{"N":"property","name":"indent","value":"yes"}]},{"N":"decimalFormat"}],"Σ":"3b182a94"} \ No newline at end of file diff --git a/public/assets2/solr.sef.json b/public/assets2/solr.sef.json new file mode 100644 index 0000000..690f934 --- /dev/null +++ b/public/assets2/solr.sef.json @@ -0,0 +1 @@ +{"N":"package","version":"30","packageVersion":"1","saxonVersion":"SaxonJS 2.6","target":"JS","targetVersion":"2","name":"TOP-LEVEL","relocatable":"false","buildDateTime":"2023-10-17T11:51:02.397+02:00","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json","C":[{"N":"co","binds":"","id":"0","vis":"PRIVATE","ex:uniform":"true","C":[{"N":"function","name":"Q{http://example.com/functions}escapeQuotes","as":"* ","slots":"201","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json","module":"solr.xslt","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","flags":"muu","sig":"1F r[* ] a[* ] ","sType":"1F r[* ] a[* ] ","line":"58","C":[{"N":"arg","slot":"0","name":"Q{}input","as":"* ","sType":"* "},{"N":"fn","name":"replace","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"body","line":"61","C":[{"N":"treat","as":"AS","diag":"0|0||replace","C":[{"N":"check","card":"?","diag":"0|0||replace","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||replace","C":[{"N":"check","card":"?","diag":"0|0||replace","C":[{"N":"data","diag":"0|0||replace","C":[{"N":"varRef","name":"Q{}input","slot":"0"}]}]}]}]}]},{"N":"str","val":"\""},{"N":"str","val":"'"}]}]}]},{"N":"co","id":"1","binds":"0","C":[{"N":"mode","onNo":"TC","flags":"","patternSlots":"0","prec":"","C":[{"N":"templateRule","rank":"0","prec":"0","seq":"1","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","line":"390","module":"solr.xslt","expand-text":"false","match":"/root2","prio":"0.5","matches":"NE u[NE nQ{}root2,NE nQ{http://www.w3.org/1999/xhtml}root2]","C":[{"N":"p.withUpper","role":"match","axis":"parent","sType":"1NE u[NE nQ{}root2,NE nQ{http://www.w3.org/1999/xhtml}root2]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"p.nodeTest","test":"NE u[NE nQ{}root2,NE nQ{http://www.w3.org/1999/xhtml}root2]"},{"N":"p.nodeTest","test":"ND"}]},{"N":"elem","type":"element()","role":"action","name":"add","sType":"1NE ","nsuri":"","line":"391","C":[{"N":"elem","type":"element()","name":"doc","sType":"1NE ","nsuri":"","line":"392","C":[{"N":"sequence","sType":"* ","C":[{"N":"forEach","sType":"*NE ","line":"401","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"401","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Fulltext_Index,NE nQ{http://www.w3.org/1999/xhtml}Fulltext_Index]"}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"402","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"403","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"fulltext"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"404","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"404"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"409","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"410","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"has_fulltext"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"411","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"411","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Has_Fulltext,NE nQ{http://www.w3.org/1999/xhtml}Has_Fulltext]"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"forEach","sType":"*NE ","line":"415","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"415","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Fulltext_ID_Success,NE nQ{http://www.w3.org/1999/xhtml}Fulltext_ID_Success]"}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"416","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"417","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"fulltext_id_success"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"418","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"418"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"forEach","sType":"*NE ","line":"423","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"423","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Fulltext_ID_Failure,NE nQ{http://www.w3.org/1999/xhtml}Fulltext_ID_Failure]"}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"424","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"425","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"fulltext_id_failure"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"426","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"dot","sType":"1NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"426"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"forEach","sType":"*NE ","line":"431","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"431","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonReferee,NE nQ{http://www.w3.org/1999/xhtml}PersonReferee]"}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"432","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"433","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"referee"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"434","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"434"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"436","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"436"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"forEach","sType":"* ","line":"441","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"441","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE"}]}]}]},{"N":"choose","sType":"? ","line":"442","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"442","C":[{"N":"and","C":[{"N":"and","C":[{"N":"compareToString","op":"ne","val":"Person","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]},{"N":"compareToString","op":"ne","val":"PersonAuthor","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"compareToString","op":"ne","val":"PersonSubmitter","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]}]}]},{"N":"compareToString","op":"eq","val":"Person","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","C":[{"N":"fn","name":"substring","C":[{"N":"fn","name":"local-name","C":[{"N":"dot"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"1"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"6"}]}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"443","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"444","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"persons"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"445","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"445"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"447","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"447"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]},{"N":"forEach","sType":"* ","line":"461","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"461","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Collection,NE nQ{http://www.w3.org/1999/xhtml}Collection]"}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"choose","sType":"* ","type":"item()*","line":"462","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"463","C":[{"N":"attVal","name":"Q{}RoleName"},{"N":"str","val":"projects"}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"464","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"465","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"project"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"466","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Number","name":"attribute","nodeTest":"*NA nQ{}Number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"466"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"468","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"469","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"app_area"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"470","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"substring","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"470","C":[{"N":"cvUntyped","to":"AS","diag":"0|0||substring","C":[{"N":"check","card":"?","diag":"0|0||substring","C":[{"N":"attVal","name":"Q{}Number"}]}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"0"}]},{"N":"convert","to":"AO","flags":"","C":[{"N":"int","val":"2"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"473","C":[{"N":"attVal","name":"Q{}RoleName"},{"N":"str","val":"institutes"}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"474","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"475","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"institute"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"476","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Name","name":"attribute","nodeTest":"*NA nQ{}Name","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"476"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"481","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"482","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"collection_ids"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"483","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Id","name":"attribute","nodeTest":"*NA nQ{}Id","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"483"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"forEach","sType":"*NE ","line":"494","C":[{"N":"docOrder","sType":"*NE","role":"select","line":"494","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Series,NE nQ{http://www.w3.org/1999/xhtml}Series]"}]}]}]},{"N":"sequence","sType":"*NE ","C":[{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"495","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"496","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"series_ids"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"497","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Id","name":"attribute","nodeTest":"*NA nQ{}Id","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"497"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"500","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"501","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"series_number_for_id_"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"503","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Id","name":"attribute","nodeTest":"*NA nQ{}Id","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"503"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"505","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Number","name":"attribute","nodeTest":"*NA nQ{}Number","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"505"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"508","C":[{"N":"sequence","sType":"*N ","C":[{"N":"att","name":"name","sType":"1NA ","line":"509","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"doc_sort_order_for_seriesid_"}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"511","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Id","name":"attribute","nodeTest":"*NA nQ{}Id","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"511"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"513","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}DocSortOrder","name":"attribute","nodeTest":"*NA nQ{}DocSortOrder","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"513"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]}]}]},{"N":"choose","sType":"? ","line":"526","C":[{"N":"docOrder","sType":"*NE","line":"526","C":[{"N":"docOrder","sType":"*NE","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"}]}]}]},{"N":"elem","type":"element()","name":"field","sType":"1NE ","nsuri":"","line":"527","C":[{"N":"sequence","sType":"* ","C":[{"N":"att","name":"name","sType":"1NA ","line":"528","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"geo_location"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":""}]}]},{"N":"let","var":"Q{}geolocation","slot":"0","sType":"* ","line":"534","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"534","C":[{"N":"str","val":"SOUTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"data","diag":"0|1||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"str","val":" * WEST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"data","diag":"0|3||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"str","val":" * NORTH-BOUND LATITUDE: "},{"N":"check","card":"?","diag":"0|5||concat","C":[{"N":"data","diag":"0|5||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"str","val":" * EAST-BOUND LONGITUDE: "},{"N":"check","card":"?","diag":"0|7||concat","C":[{"N":"data","diag":"0|7||concat","C":[{"N":"docOrder","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Opus,NE nQ{http://www.w3.org/1999/xhtml}Opus]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]"}]},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]}]},{"N":"sequence","sType":"? ","C":[{"N":"valueOf","flags":"l","sType":"1NT ","line":"536","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"536"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n"}]},{"N":"choose","sType":"? ","line":"538","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"538","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}ElevationMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"539","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"539","C":[{"N":"str","val":" * ELEVATION MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationMin"}]},{"N":"str","val":" * ELEVATION MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}ElevationMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"541","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"541","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"542","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"542","C":[{"N":"str","val":" * ELEVATION ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}ElevationAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n"}]},{"N":"choose","sType":"? ","line":"546","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"546","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}DepthMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"547","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"547","C":[{"N":"str","val":" * DEPTH MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthMin"}]},{"N":"str","val":" * DEPTH MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}DepthMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"549","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"549","C":[{"N":"attVal","name":"Q{}DepthAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"550","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"550","C":[{"N":"str","val":" * DEPTH ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}DepthAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\n"}]},{"N":"choose","sType":"? ","line":"554","C":[{"N":"and","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"554","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMin"},{"N":"str","val":""}]},{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}TimeMax"},{"N":"str","val":""}]}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"555","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"555","C":[{"N":"str","val":" * TIME MIN: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeMin"}]},{"N":"str","val":" * TIME MAX: "},{"N":"check","card":"?","diag":"0|3||concat","C":[{"N":"attVal","name":"Q{}TimeMax"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"? ","line":"557","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"557","C":[{"N":"attVal","name":"Q{}TimeAbsolut"},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"558","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"558","C":[{"N":"str","val":" * TIME ABSOLUT: "},{"N":"check","card":"?","diag":"0|1||concat","C":[{"N":"attVal","name":"Q{}TimeAbsolut"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]}]},{"N":"templateRule","rank":"1","prec":"0","seq":"0","ns":"xml=~ xsl=~ xs=~ fn=http://example.com/functions xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json","minImp":"0","flags":"s","slots":"200","baseUri":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","line":"64","module":"solr.xslt","expand-text":"false","match":"Rdr_Dataset","prio":"0","matches":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","C":[{"N":"p.nodeTest","role":"match","test":"NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","sType":"1NE u[NE nQ{}Rdr_Dataset,NE nQ{http://www.w3.org/1999/xhtml}Rdr_Dataset]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json "},{"N":"sequence","role":"action","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"{"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"id\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"96","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishId","name":"attribute","nodeTest":"*NA nQ{}PublishId","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"96"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]},{"N":"let","var":"Q{}year","slot":"0","sType":"* ","line":"100","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"choose","sType":"?NT ","type":"item()*","line":"101","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"102","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]},{"N":"str","val":""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"103","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}Year","role":"select","line":"103","C":[{"N":"slash","op":"/","sType":"*NA nQ{}Year","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Year"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"true"},{"N":"valueOf","flags":"l","sType":"1NT ","line":"106","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublishedYear","name":"attribute","nodeTest":"*NA nQ{}PublishedYear","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"106"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"year\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"111","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}year","slot":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"111"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]},{"N":"choose","sType":"* ","line":"115","C":[{"N":"varRef","name":"Q{}year","slot":"0","sType":"*","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"115"},{"N":"let","var":"Q{}yearInverted","slot":"1","sType":"*NT ","line":"116","C":[{"N":"arith","op":"-","calc":"a-a","sType":"1A","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"116","C":[{"N":"int","val":"65535"},{"N":"check","card":"?","diag":"1|1||arith","C":[{"N":"data","diag":"1|1||arith","C":[{"N":"varRef","name":"Q{}year","slot":"0"}]}]}]},{"N":"sequence","sType":"?NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"year_inverted\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"118","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}yearInverted","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"118"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"123","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"123","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"server_date_published\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"125","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}UnixTimestamp","role":"select","line":"125","C":[{"N":"slash","op":"/","sType":"*NA nQ{}UnixTimestamp","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDatePublished,NE nQ{http://www.w3.org/1999/xhtml}ServerDatePublished]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"130","C":[{"N":"gc","op":"!=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"130","C":[{"N":"data","diag":"1|0||gc","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]},{"N":"str","val":""}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"server_date_modified\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"132","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}UnixTimestamp","role":"select","line":"132","C":[{"N":"docOrder","sType":"*NA nQ{}UnixTimestamp","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"slash","op":"/","C":[{"N":"slash","op":"/","C":[{"N":"root"},{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}ServerDateModified,NE nQ{http://www.w3.org/1999/xhtml}ServerDateModified]"}]},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}UnixTimestamp"}]}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}language","slot":"1","sType":"* ","line":"137","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Language","sType":"*NA nQ{}Language","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"137"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"language\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"139","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}language","slot":"1","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"139"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]},{"N":"forEach","sType":"* ","line":"143","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","sType":"*NE u[NE nQ{}TitleMain,NE nQ{http://www.w3.org/1999/xhtml}TitleMain]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"143"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"title\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"145","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"145","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]},{"N":"choose","sType":"* ","line":"147","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"147","C":[{"N":"attVal","name":"Q{}Language"},{"N":"data","diag":"1|1||gc","C":[{"N":"varRef","name":"Q{}language","slot":"1"}]}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"title_output\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"149","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Value","name":"attribute","nodeTest":"*NA nQ{}Value","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"149"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]},{"N":"let","var":"Q{}abstracts","slot":"2","sType":"* ","line":"155","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"156","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","sType":"*NE u[NE nQ{}TitleAbstract,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstract]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"156"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"159","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"159","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"161","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"161","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"abstract\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"165","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}abstracts","slot":"2","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"165"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"let","var":"Q{}authors","slot":"3","sType":"* ","line":"177","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"178","C":[{"N":"sort","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","sType":"*NE u[NE nQ{}PersonAuthor,NE nQ{http://www.w3.org/1999/xhtml}PersonAuthor]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"178"},{"N":"sortKey","sType":"?A ","C":[{"N":"check","card":"?","sType":"?A ","diag":"2|0|XTTE1020|sort","role":"select","C":[{"N":"data","sType":"*A ","role":"select","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}SortOrder","sType":"*NA nQ{}SortOrder","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"179"}]}]},{"N":"str","sType":"1AS ","val":"ascending","role":"order"},{"N":"str","sType":"1AS ","val":"en","role":"lang"},{"N":"str","sType":"1AS ","val":"#default","role":"caseOrder"},{"N":"str","sType":"1AS ","val":"true","role":"stable"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"182","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}LastName","name":"attribute","nodeTest":"*NA nQ{}LastName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"182"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"184","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}FirstName","name":"attribute","nodeTest":"*NA nQ{}FirstName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"184"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"186","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"186","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"author\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"190","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}authors","slot":"3","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"190"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"doctype\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"216","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}Type","name":"attribute","nodeTest":"*NA nQ{}Type","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"216"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]},{"N":"let","var":"Q{}subjects","slot":"4","sType":"* ","line":"220","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"221","C":[{"N":"filter","sType":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"221","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Subject,NE nQ{http://www.w3.org/1999/xhtml}Subject]"},{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","C":[{"N":"attVal","name":"Q{}Type"},{"N":"str","val":"Uncontrolled"}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"223","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"223","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"225","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"225","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"subjects\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"229","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}subjects","slot":"4","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"229"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"belongs_to_bibliography\": "}]},{"N":"choose","sType":"?NT ","type":"item()*","line":"234","C":[{"N":"gc","op":"=","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","card":"1:1","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"235","C":[{"N":"attVal","name":"Q{}BelongsToBibliography"},{"N":"int","val":"1"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"true"}]},{"N":"true"},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"false"}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"choose","sType":"* ","line":"247","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleSub,NE nQ{http://www.w3.org/1999/xhtml}TitleSub]","sType":"*NE u[NE nQ{}TitleSub,NE nQ{http://www.w3.org/1999/xhtml}TitleSub]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"247"},{"N":"let","var":"Q{}title_sub","slot":"5","sType":"*NT ","line":"248","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"249","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleSub,NE nQ{http://www.w3.org/1999/xhtml}TitleSub]","sType":"*NE u[NE nQ{}TitleSub,NE nQ{http://www.w3.org/1999/xhtml}TitleSub]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"249"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"251","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"251","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"253","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"253","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"?NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"title_sub\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"259","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}title_sub","slot":"5","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"259"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}title_additional","slot":"5","sType":"* ","line":"264","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"265","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","sType":"*NE u[NE nQ{}TitleAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"265"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"268","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"268","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"270","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"270","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"title_additional\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"276","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"fn","name":"string","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"276","C":[{"N":"check","card":"?","diag":"0|0||string","C":[{"N":"varRef","name":"Q{}title_additional","slot":"5"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"let","var":"Q{}abstract_additional","slot":"6","sType":"* ","line":"280","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"281","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","sType":"*NE u[NE nQ{}TitleAbstractAdditional,NE nQ{http://www.w3.org/1999/xhtml}TitleAbstractAdditional]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"281"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"283","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"283","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"285","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"285","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":", "}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"abstract_additional\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"291","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}abstract_additional","slot":"6","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"291"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"choose","sType":"* ","line":"295","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","sType":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"295"},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"licence\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"297","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"297","bSlot":"0","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Licence,NE nQ{http://www.w3.org/1999/xhtml}Licence]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Name"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"302","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","sType":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"302"},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"creating_corporation\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"304","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}CreatingCorporation","name":"attribute","nodeTest":"*NA nQ{}CreatingCorporation","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"304"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"309","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}ContributingCorporation","sType":"*NA nQ{}ContributingCorporation","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"309"},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"contributing_corporation\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"311","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}ContributingCorporation","name":"attribute","nodeTest":"*NA nQ{}ContributingCorporation","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"311"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"316","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherName","sType":"*NA nQ{}PublisherName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"316"},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"publisher_name\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"318","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublisherName","name":"attribute","nodeTest":"*NA nQ{}PublisherName","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"318"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"323","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}PublisherPlace","sType":"*NA nQ{}PublisherPlace","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"323"},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"publisher_place\": \""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"325","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"axis","sType":"*NA nQ{}PublisherPlace","name":"attribute","nodeTest":"*NA nQ{}PublisherPlace","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"325"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\","}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"choose","sType":"* ","line":"330","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","sType":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"330"},{"N":"let","var":"Q{}geolocation","slot":"7","sType":"*NT ","line":"334","C":[{"N":"fn","name":"concat","sType":"1AS","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"334","C":[{"N":"check","card":"?","diag":"0|0||concat","C":[{"N":"data","diag":"0|0||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]},{"N":"str","val":", "},{"N":"check","card":"?","diag":"0|2||concat","C":[{"N":"data","diag":"0|2||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]},{"N":"str","val":", "},{"N":"check","card":"?","diag":"0|4||concat","C":[{"N":"data","diag":"0|4||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]},{"N":"str","val":", "},{"N":"check","card":"?","diag":"0|6||concat","C":[{"N":"data","diag":"0|6||concat","C":[{"N":"slash","op":"/","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"sequence","sType":"?NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"geo_location\": "}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"BBOX ("}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"337","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}geolocation","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"337"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":")\","}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"bbox_xmin\": "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"341","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}XMin","role":"select","line":"341","C":[{"N":"slash","op":"/","sType":"*NA nQ{}XMin","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMin"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"bbox_xmax\": "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"344","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}XMax","role":"select","line":"344","C":[{"N":"slash","op":"/","sType":"*NA nQ{}XMax","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}XMax"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"bbox_ymin\": "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"347","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}YMin","role":"select","line":"347","C":[{"N":"slash","op":"/","sType":"*NA nQ{}YMin","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMin"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"bbox_ymax\": "}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"350","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"docOrder","sType":"*NA nQ{}YMax","role":"select","line":"350","C":[{"N":"slash","op":"/","sType":"*NA nQ{}YMax","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Coverage,NE nQ{http://www.w3.org/1999/xhtml}Coverage]"},{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}YMax"}]}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]}]}]},{"N":"true"},{"N":"empty","sType":"0 "}]},{"N":"let","var":"Q{}identifier","slot":"7","sType":"*NT ","line":"356","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"357","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","sType":"*NE u[NE nQ{}Identifier,NE nQ{http://www.w3.org/1999/xhtml}Identifier]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"357"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"359","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"359","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"361","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"361","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"*NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"identifier\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"367","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}identifier","slot":"7","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"367"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"],"}]},{"N":"let","var":"Q{}reference","slot":"8","sType":"*NT ","line":"371","C":[{"N":"doc","sType":"1ND ","base":"file:///home/administrator/tethys/tethys.myapp/public/assets2/solr.xslt","role":"select","C":[{"N":"forEach","sType":"* ","line":"372","C":[{"N":"axis","name":"child","nodeTest":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","sType":"*NE u[NE nQ{}Reference,NE nQ{http://www.w3.org/1999/xhtml}Reference]","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"372"},{"N":"sequence","sType":"* ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"374","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"ufCall","sType":"*","name":"Q{http://example.com/functions}escapeQuotes","coId":"0","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"374","bSlot":"0","C":[{"N":"axis","name":"attribute","nodeTest":"*NA nQ{}Value"}]}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\""}]},{"N":"choose","sType":"? ","line":"376","C":[{"N":"vc","op":"ne","comp":"GAC|http://www.w3.org/2005/xpath-functions/collation/codepoint","sType":"1AB","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","line":"376","C":[{"N":"fn","name":"position"},{"N":"fn","name":"last"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":","}]},{"N":"true"},{"N":"empty","sType":"0 "}]}]}]}]},{"N":"sequence","sType":"?NT ","C":[{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"\"reference\": ["}]},{"N":"valueOf","flags":"l","sType":"1NT ","line":"382","C":[{"N":"fn","name":"string-join","role":"select","C":[{"N":"forEach","sType":"*AS ","C":[{"N":"data","sType":"*A ","C":[{"N":"mergeAdj","C":[{"N":"varRef","sType":"*","name":"Q{}reference","slot":"8","ns":"= xml=~ fn=http://example.com/functions xsl=~ xs=~ xlink=http://www.w3.org/1999/xlink gmd=http://www.isotc211.org/2005/gmd gco=http://www.isotc211.org/2005/gco json=http://www.w3.org/2013/XSL/json ","role":"select","line":"382"}]}]},{"N":"fn","name":"string","sType":"1AS ","C":[{"N":"dot"}]}]},{"N":"str","sType":"1AS ","val":" "}]}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"]"}]},{"N":"valueOf","sType":"1NT ","C":[{"N":"str","sType":"1AS ","val":"}"}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"N":"overridden"},{"N":"output","C":[{"N":"property","name":"Q{http://saxon.sf.net/}stylesheet-version","value":"30"},{"N":"property","name":"method","value":"text"}]},{"N":"decimalFormat"}],"Σ":"b8107a64"} \ No newline at end of file diff --git a/public/assets2/solr.xslt b/public/assets2/solr.xslt new file mode 100644 index 0000000..d4cac24 --- /dev/null +++ b/public/assets2/solr.xslt @@ -0,0 +1,553 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + "id": " + + ", + + + + + + + + + + + + + "year": " + + ", + + + + + "year_inverted": " + + ", + + + + + "server_date_published": " + + ", + + + + + "server_date_modified": " + + ", + + + + + "language": " + + ", + + + + "title": " + + ", + + "title_output": " + + ", + + + + + + + " + + + " + , + + + "abstract": [ + + ], + + + + + + + + " + + + , + + " + , + + + "author": [ + + ], + + + + + + + "doctype": " + + ", + + + + + " + + " + , + + + "subjects": [ + + ], + + + "belongs_to_bibliography": + + + true + + + false + + + , + + + + + + + + " + + " + + , + + + + "title_sub": [ + + ], + + + + + + " + + + " + + , + + + + "title_additional": [ + + ], + + + + + " + + " + + , + + + + "abstract_additional": [ + + ], + + + + "licence": " + + ", + + + + + "creating_corporation": " + + ", + + + + + "contributing_corporation": " + + ", + + + + + "publisher_name": " + + ", + + + + + "publisher_place": " + + ", + + + + + + + "geo_location": + "BBOX ( + + )", + + "bbox_xmin": + + , + "bbox_xmax": + + , + "bbox_ymin": + + , + "bbox_ymax": + + , + + + + + + + " + + " + + , + + + + "identifier": [ + + ], + + + + + " + + " + + , + + + + "reference": [ + + ] + + + + } + + + + + + + + + + + + + + + + fulltext + + + + + + + has_fulltext + + + + + + + fulltext_id_success + + + + + + + + fulltext_id_failure + + + + + + + + referee + + + + + + + + + + + persons + + + + + + + + + + + + + + + + + + + + + project + + + + app_area + + + + + + institute + + + + + + + collection_ids + + + + + + + + + + + + + + series_ids + + + + + + series_number_for_id_ + + + + + + + + doc_sort_order_for_seriesid_ + + + + + + + + + + + + + + + + + + geo_location + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/records.json b/public/records.json new file mode 100644 index 0000000..9a19ede --- /dev/null +++ b/public/records.json @@ -0,0 +1,146 @@ +{ + "settings": { + "analysis": { + "analyzer": { + "pathAnalyzer": { + "tokenizer": "pathTokenizer" + } + }, + "tokenizer": { + "pathTokenizer": { + "type": "path_hierarchy", + "delimiter": "/", + "replacement": "/", + "skip": 0, + "reverse": false + } + } + } + }, + "mappings": { + "properties": { + "id": { + "type": "keyword" + }, + "year": { + "type": "integer" + }, + "year_iverted": { + "type": "double" + }, + "server_date_published": { + "type": "double" + }, + "server_date_modified": { + "type": "double" + }, + "language": { + "type": "keyword" + }, + "title": { + "type": "text" + }, + "title_output": { + "type": "keyword", + "index": false + }, + "abstract": { + "type": "text" + }, + "abstract_output": { + "type": "keyword", + "index": false + }, + "author": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "doctype": { + "type": "keyword" + }, + "subjects": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "belongs_to_bibliography": { + "type": "boolean" + }, + "title_additional": { + "type": "text", + "index": false, + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "abstract_additional": { + "type": "text", + "index": false, + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "licence": { + "type": "text", + "index": false, + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "creating_corporation": { + "type": "text" + }, + "contributing_corporation": { + "type": "text" + }, + "publisher_name": { + "type": "text" + }, + "publisher_place": { + "type": "text" + }, + + "geo_location": { + "type": "geo_shape", + "tree": "quadtree", + "precision": "10km" + }, + "bbox_xmin": { + "type": "float" + }, + "bbox_xmax": { + "type": "float" + }, + "bbox_ymin": { + "type": "float" + }, + "bbox_ymax": { + "type": "float" + }, + + + + "status": { + "type": "keyword" + } + } + } +} diff --git a/resources/js/Components/FormInput.vue b/resources/js/Components/FormInput.vue index cf81bb8..302780b 100644 --- a/resources/js/Components/FormInput.vue +++ b/resources/js/Components/FormInput.vue @@ -2,7 +2,7 @@
{{ errors.join(', ') }} @@ -12,7 +12,7 @@ diff --git a/resources/js/Pages/register-view/register-view-component.ts b/resources/js/Pages/register-view/register-view-component.ts index 1d90c94..19fa6fe 100644 --- a/resources/js/Pages/register-view/register-view-component.ts +++ b/resources/js/Pages/register-view/register-view-component.ts @@ -1,7 +1,7 @@ import { Component, Vue, Prop } from 'vue-facing-decorator'; import AuthLayout from '@/Layouts/Auth.vue'; // import { Inertia } from '@inertiajs/inertia'; -import { NButton } from 'naive-ui'; +// import { NButton } from 'naive-ui'; import { useForm, InertiaForm, router } from '@inertiajs/vue3'; import FormInput from '@/Components/FormInput.vue'; // @/Components/FormInput.vue' // import { defineComponent, reactive } from 'vue'; @@ -42,7 +42,7 @@ export interface IErrorMessage { }, name: 'RegisterViewComponent', components: { - NButton, + // NButton, FormInput, }, }) diff --git a/start/routes.ts b/start/routes.ts index ce04ffa..11d88a1 100644 --- a/start/routes.ts +++ b/start/routes.ts @@ -183,3 +183,11 @@ Route.group(() => { .prefix('submitter'); // .middleware(['auth', 'can:dataset-list,dataset-publish']); // .middleware(['auth', 'is:submitter']); + +Route.group(() => { + Route.put('/dataset/:id/update', 'DatasetsController.update') + .as('editor.dataset.update') + .middleware(['auth', 'can:dataset-submit']); +}) +.namespace('App/Controllers/Http/Editor') +.prefix('editor'); \ No newline at end of file