-- -- PostgreSQL database dump -- SET client_encoding = 'LATIN1'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; -- -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres -- COMMENT ON SCHEMA public IS 'Standard public schema'; SET search_path = public, pg_catalog; -- -- Name: plpgsql_call_handler(); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION plpgsql_call_handler() RETURNS language_handler AS '$libdir/plpgsql', 'plpgsql_call_handler' LANGUAGE c; ALTER FUNCTION public.plpgsql_call_handler() OWNER TO postgres; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: a_pour_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE a_pour_parent ( code_observatoire character varying(6) NOT NULL, fils_sheet_id integer NOT NULL, pere_sheet_id integer NOT NULL ); ALTER TABLE public.a_pour_parent OWNER TO postgres; -- -- Name: archive_zip; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE archive_zip ( code_observatoire character varying(6) NOT NULL, mtd_sheet_id integer NOT NULL, nom_archive character varying(100) NOT NULL, taille character varying(30), date_maj date, heure_maj character varying(30), etat_telecharg character varying(6) ); ALTER TABLE public.archive_zip OWNER TO postgres; -- -- Name: attrib_elmnt_gabarit; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE attrib_elmnt_gabarit ( elmnt_mtd_id character varying(50) NOT NULL, attrib_name character varying(50) NOT NULL, default_value character varying, gabarit_name character varying(50) NOT NULL ); ALTER TABLE public.attrib_elmnt_gabarit OWNER TO postgres; -- -- Name: attrib_elmnt_mtd; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE attrib_elmnt_mtd ( elmnt_mtd_id character varying(50) NOT NULL, attrib_name character varying(50) NOT NULL, default_value character varying ); ALTER TABLE public.attrib_elmnt_mtd OWNER TO postgres; -- -- Name: code_list; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE code_list ( list_short_name character varying(25) NOT NULL, list_name character varying(50) NOT NULL, is_stand character varying(5) NOT NULL, elmnt_name_list character varying(50) ); ALTER TABLE public.code_list OWNER TO postgres; -- -- Name: contact_catalogue; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE contact_catalogue ( id_orga integer NOT NULL, nom_orga character varying(200) NOT NULL, "role" character varying(50), adress_postale character varying(200), code_postal character varying(20), ville character varying(50), pays character varying(50), email character varying(100), url_orga character varying(200), url_catalog character varying(200) ); ALTER TABLE public.contact_catalogue OWNER TO postgres; -- -- Name: contacts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE contacts ( nom character varying(50) NOT NULL, organisation character varying(50), phone character varying(20), address character varying(250), postal_code character varying(50), city character varying(50), country character varying(50), email character varying(50), url character varying(250), "position" character varying(250), prenom character varying(250) ); ALTER TABLE public.contacts OWNER TO postgres; -- -- Name: db_version; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE db_version ( version_name character varying(50) NOT NULL, version_date character varying(50) NOT NULL, revision_number integer NOT NULL, comments character varying ); ALTER TABLE public.db_version OWNER TO postgres; -- -- Name: elmnt_code_list; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE elmnt_code_list ( elmnt_id character varying(40) NOT NULL, list_short_name character varying(25) NOT NULL, elmnt_name character varying(50) NOT NULL, elmnt_code character varying(20), is_stand character varying(5) ); ALTER TABLE public.elmnt_code_list OWNER TO postgres; -- -- Name: elmnt_gabarit; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE elmnt_gabarit ( gabarit_name character varying(50) NOT NULL, elmnt_mtd_id character varying(50) NOT NULL, mandt_code_gab character varying(5) NOT NULL, niv_saisie integer, max_occ_gab character varying(3) NOT NULL, default_val character varying(100), num_elmnt_gab character varying(250), visibilite integer, consult integer, visu_consult integer, contact character varying(2), style character varying(5) ); ALTER TABLE public.elmnt_gabarit OWNER TO postgres; -- -- Name: elmnt_liste_interface; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE elmnt_liste_interface ( elmnt_interf character varying(50) NOT NULL, nom_liste character varying(50) NOT NULL, code_elmnt character varying(50) NOT NULL ); ALTER TABLE public.elmnt_liste_interface OWNER TO postgres; -- -- Name: elmnt_mtd; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE elmnt_mtd ( elmnt_mtd_id character varying(50) NOT NULL, elmnt_name character varying(50) NOT NULL, elmnt_short_name character varying(20) NOT NULL, stan_name character varying(25) NOT NULL, list_short_name character varying(50), data_type_code character varying(10) NOT NULL, mandt_code character varying(5) NOT NULL, max_occ character varying(3) NOT NULL, is_core character varying(5), is_stand character varying(5), data_type character varying(50) ); ALTER TABLE public.elmnt_mtd OWNER TO postgres; -- -- Name: est_contenu; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE est_contenu ( elmnt_fils_id character varying(50) NOT NULL, elmnt_pere_id character varying(50) NOT NULL, gabarit_name character varying(50) NOT NULL, ordre integer NOT NULL ); ALTER TABLE public.est_contenu OWNER TO postgres; -- -- Name: est_inclus; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE est_inclus ( elmnt_fils_id character varying(50) NOT NULL, elmnt_pere_id character varying(50) NOT NULL, ordre integer ); ALTER TABLE public.est_inclus OWNER TO postgres; -- -- Name: fichier_image; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE fichier_image ( mtd_sheet_id integer NOT NULL, code_observatoire character varying(6) NOT NULL, nom_fichier character varying(100), "type" character varying(5), taille character varying(30), date_image character varying(10), description character varying(50) ); ALTER TABLE public.fichier_image OWNER TO postgres; -- -- Name: fichier_ressource; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE fichier_ressource ( code_observatoire character varying(6) NOT NULL, mtd_sheet_id integer NOT NULL, id_fichier integer NOT NULL, nom_fichier character varying(100) NOT NULL, "type" character varying(3), taille character varying(30) ); ALTER TABLE public.fichier_ressource OWNER TO postgres; -- -- Name: field_control; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE field_control ( field_id integer NOT NULL, ordre_control integer NOT NULL, nom_control character varying(30) NOT NULL, event_js character varying(30) NOT NULL ); ALTER TABLE public.field_control OWNER TO postgres; -- -- Name: field_elmnt; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE field_elmnt ( field_id integer NOT NULL, gabarit_name character varying(50) NOT NULL, elmnt_mtd_id character varying(50) NOT NULL, field_type character varying(10) NOT NULL, hor_size_text integer, vert_size_text integer ); ALTER TABLE public.field_elmnt OWNER TO postgres; -- -- Name: gabarit_mtd; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE gabarit_mtd ( gabarit_name character varying(50) NOT NULL, gabarit_date date NOT NULL, predef_date character varying(10), stan_name character varying(25) ); ALTER TABLE public.gabarit_mtd OWNER TO postgres; -- -- Name: gabarit_parent; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE gabarit_parent ( fils_gabarit_name character varying(50) NOT NULL, pere_gabarit_name character varying(50) NOT NULL ); ALTER TABLE public.gabarit_parent OWNER TO postgres; -- -- Name: import_form; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE import_form ( code_observatoire character varying(6) NOT NULL, mtd_sheet_id integer NOT NULL, source_import character varying(25) NOT NULL, fichier_xml character varying(100) NOT NULL, import_date character varying(10) NOT NULL ); ALTER TABLE public.import_form OWNER TO postgres; -- -- Name: index_search; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE index_search ( sheet_id integer NOT NULL, code_observatoire character varying(100) NOT NULL, id_orga integer NOT NULL, titre_ress character varying NOT NULL, resume character varying, auteur character varying(500), gabarit_name character varying(50), begin_date date, end_date date, private character varying(5), titre_ress_2 character varying, titre_fiche character varying(80), date_ress character varying(10), date date, xml_sheet character varying, format character varying, url_data character varying ); ALTER TABLE public.index_search OWNER TO postgres; -- -- Name: jeu_val_predef; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE jeu_val_predef ( param_predef_id integer NOT NULL, "login" character varying(20) NOT NULL, jeu_val_date_maj character varying(10), jeu_val_name character varying(50), gabarit_name character varying(50), param_predef_name character varying(50), jeu_val_default_m character varying(5), jeu_val_default_r character varying(5), jeu_val_default_d character varying(5) ); ALTER TABLE public.jeu_val_predef OWNER TO postgres; -- -- Name: keywords; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE keywords ( libellemot character varying(250) NOT NULL, categoriemot character varying(250), user_key character varying(20) NOT NULL ); ALTER TABLE public.keywords OWNER TO postgres; -- -- Name: label; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE label ( id_foreign_table character varying(100) NOT NULL, table_name character varying(50) NOT NULL, iso_lang_code character varying(3) NOT NULL, defn character varying(500), type_label character varying(20) NOT NULL, label character varying(500) ); ALTER TABLE public.label OWNER TO postgres; -- -- Name: label_stand; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE label_stand ( id_foreign_table character varying(100) NOT NULL, table_name character varying(50) NOT NULL, iso_lang_code character varying(3) NOT NULL, label character varying(250) NOT NULL, defn character varying(500), type_label character varying(20) NOT NULL ); ALTER TABLE public.label_stand OWNER TO postgres; -- -- Name: langue; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE langue ( iso_lang_code character varying(3) NOT NULL, langue character varying(10) NOT NULL, char_set_code character varying(10) NOT NULL ); ALTER TABLE public.langue OWNER TO postgres; -- -- Name: liste_interface; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE liste_interface ( nom_liste character varying(50) NOT NULL ); ALTER TABLE public.liste_interface OWNER TO postgres; -- -- Name: map_z3950_mdweb; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE map_z3950_mdweb ( num_attrib_z3950 integer NOT NULL, champ_mdweb character varying(200) NOT NULL, table_mdweb character varying NOT NULL ); ALTER TABLE public.map_z3950_mdweb OWNER TO postgres; -- -- Name: md_og; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE md_og ( id_geom integer NOT NULL, nom character varying(100) NOT NULL, sheet_id integer NOT NULL, code_observatoire character varying(100) NOT NULL, n real, w real, e real, s real ); ALTER TABLE public.md_og OWNER TO postgres; -- -- Name: message_interface; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE message_interface ( nom_message character varying(100) NOT NULL ); ALTER TABLE public.message_interface OWNER TO postgres; -- -- Name: mots_cles; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE mots_cles ( sheet_id integer NOT NULL, code_observatoire character varying(100) NOT NULL, libelle character varying(200) NOT NULL, nom_thesaurus character varying(200) NOT NULL ); ALTER TABLE public.mots_cles OWNER TO postgres; -- -- Name: mtd_form; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE mtd_form ( mtd_sheet_id integer NOT NULL, code_observatoire character varying(6) NOT NULL, login_sais character varying(20) NOT NULL, login_val character varying(20), gabarit_name character varying(50) NOT NULL, mtd_nivacces integer, update_date character varying(10), predef_date character varying(10), contact_m_date character varying(10), contact_m_name character varying(50), titre_fiche character varying(80), predef_name character varying(50), contact_r_name character varying(50), contact_r_date character varying(10), contact_d_name character varying(50), contact_d_date character varying(10) ); ALTER TABLE public.mtd_form OWNER TO postgres; -- -- Name: mtd_value; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE mtd_value ( mtd_sheet_id integer NOT NULL, code_observatoire character varying(6) NOT NULL, gabarit_name character varying(50) NOT NULL, elmnt_mtd_id character varying(50) NOT NULL, num_elmnt character varying(250) NOT NULL, mtd_value character varying NOT NULL ); ALTER TABLE public.mtd_value OWNER TO postgres; -- -- Name: niv_form; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE niv_form ( mtd_sheet_id integer NOT NULL, code_observatoire character varying(6) NOT NULL, niv_saisie integer NOT NULL, saisie_complete character varying(5) NOT NULL, est_validee character varying(5) NOT NULL, date_validation character varying(10), default_niv_saisie integer ); ALTER TABLE public.niv_form OWNER TO postgres; -- -- Name: observatoire; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE observatoire ( code_observatoire character varying(6) NOT NULL, nom_observatoire character varying(50) NOT NULL, pays character varying(50) ); ALTER TABLE public.observatoire OWNER TO postgres; -- -- Name: param_control; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE param_control ( field_id integer NOT NULL, ordre_control integer NOT NULL, ordre_param integer NOT NULL, val_param character varying(50) NOT NULL ); ALTER TABLE public.param_control OWNER TO postgres; -- -- Name: param_mdweb; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE param_mdweb ( version character varying(10) NOT NULL, date_version character varying(10) NOT NULL, polit_publi integer NOT NULL ); ALTER TABLE public.param_mdweb OWNER TO postgres; -- -- Name: standard; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE standard ( stan_name character varying(25) NOT NULL, stan_desc character varying(100) NOT NULL, stan_vers character varying(20) ); ALTER TABLE public.standard OWNER TO postgres; -- -- Name: user_desc; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE user_desc ( "login" character varying(20) NOT NULL, iso_lang_code character varying(3) NOT NULL, nom character varying(50) NOT NULL, prenom character varying(50), email character varying(50), mdp character varying(40), nivacces integer NOT NULL, coulpref character varying(10), code_observatoire character varying(6), organisation character varying(50), phone character varying(20), address character varying(250), postal_code character varying(50), city character varying(50), url character varying(250), title character varying(10), "position" character varying(250), countrycd character varying(10) ); ALTER TABLE public.user_desc OWNER TO postgres; -- -- Name: valeur_predefinie; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE valeur_predefinie ( val_predef_id integer NOT NULL, param_predef_id integer NOT NULL, gabarit_name character varying(50) NOT NULL, elmnt_mtd_id character varying(50) NOT NULL, val_predef_value character varying(500), val_predef_name character varying(50), num_elmnt_predef character varying(250), visibilite integer, contact character varying(1) ); ALTER TABLE public.valeur_predefinie OWNER TO postgres; -- -- Data for Name: a_pour_parent; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- Data for Name: archive_zip; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO archive_zip VALUES ('EMO_CA', 2, 'EMO_CA_2.zip', '719626', '2007-07-05', '17:35', 'prive'); -- -- Data for Name: attrib_elmnt_gabarit; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO attrib_elmnt_gabarit VALUES ('code_417', 'xlink:href', NULL, 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'base_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('TimePeriod_501', 'gml:id', 'extent', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('code_417', 'xlink:href', NULL, 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'carte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('TimePeriod_501', 'gml:id', 'extent', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('code_417', 'xlink:href', NULL, 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'carte_papier'); INSERT INTO attrib_elmnt_gabarit VALUES ('TimePeriod_501', 'gml:id', 'extent', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('code_417', 'xlink:href', NULL, 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'couche_vecteur'); INSERT INTO attrib_elmnt_gabarit VALUES ('TimePeriod_501', 'gml:id', 'extent', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('code_417', 'xlink:href', NULL, 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('distance_122', 'uom', 'm', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'couche_raster'); INSERT INTO attrib_elmnt_gabarit VALUES ('TimePeriod_501', 'gml:id', 'extent', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'base_alpha'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'refer_biblio'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'doc_texte_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'table_num'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_ServiceIdentification_69', 'id', NULL, 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:srv', 'http://www.isotc211.org/2005/srv', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_LegalConstraints_955', 'gco:isoType', 'MD_LegalConstraints', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_SecurityConstraints_956', 'gco:isoType', 'MD_LegalConstraints', 'web_service_geo'); INSERT INTO attrib_elmnt_gabarit VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco', 'web_service_geo'); -- -- Data for Name: attrib_elmnt_mtd; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1430', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1467', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1504', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1541', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1578', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1615', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1652', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1689', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1726', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1763', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1800', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1837', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1874', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1911', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_1948', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('valueUnit_2177', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('PT_Locale_886', 'id', 'locale-fr'); INSERT INTO attrib_elmnt_mtd VALUES ('TimePeriod_501', 'gml:id', 'extent'); INSERT INTO attrib_elmnt_mtd VALUES ('TimePeriod_649', 'gml:id', 'extent'); INSERT INTO attrib_elmnt_mtd VALUES ('TimePeriod_688', 'gml:id', 'extent'); INSERT INTO attrib_elmnt_mtd VALUES ('code_417', 'xlink:href', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('distance_122', 'uom', 'm'); INSERT INTO attrib_elmnt_mtd VALUES ('PT_Locale_886', 'uuid', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('MD_DataIdentification_68', 'gco:isoType', 'MD_DataIdentification'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_ReferenceSystem_99', 'gco:isoType', 'MD_ReferenceSystem'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:fra', 'http://www.cnig.gouv.fr/2005/fra'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gmx', 'http://www.isotc211.org/2005/gmx'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gts', 'http://www.isotc211.org/2005/gts'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gmi', 'http://www.isotc211.org/2005/gmi'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gfc', 'http://www.isotc211.org/2005/gfc'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns', 'http://www.isotc211.org/2005/gmd'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gco', 'http://www.isotc211.org/2005/gco'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gmd', 'http://www.isotc211.org/2005/gmd'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:xlink', 'http://www.w3.org/1999/xlink'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:gml', 'http://www.opengis.net/gml'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Metadata_1', 'xsi:schemaLocation', 'http://www.cnig.gouv.fr/2005/fra ../schemas/iso19139Fra/fra/fra.xsd'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_LegalConstraints_249', 'gco:isoType', 'MD_LegalConstraints'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_LegalConstraints_259', 'gco:isoType', 'MD_LegalConstraints'); INSERT INTO attrib_elmnt_mtd VALUES ('resolution_370', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('MD_SecurityConstraints_253', 'gco:isoType', 'MD_SecurityConstraints'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_SecurityConstraints_263', 'gco:isoType', 'MD_SecurityConstraints'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Constraints_108', 'gco:isoType', 'MD_Constraints'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_Constraints_247', 'gco:isoType', 'MD_Constraints'); INSERT INTO attrib_elmnt_mtd VALUES ('MD_ReferenceSystem_901', 'gco:isoType', 'MD_ReferenceSystem'); INSERT INTO attrib_elmnt_mtd VALUES ('falseEastingNorthingUnits_528', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('axisUnits_520', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('units_599', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('unitOfMeasure_150', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('unitOfMeasure_665', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('unitOfMeasure_695', 'uom', NULL); INSERT INTO attrib_elmnt_mtd VALUES ('featureTypes_572', 'codeSpace', NULL); -- -- Data for Name: code_list; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO code_list VALUES ('', '', '', ''); INSERT INTO code_list VALUES ('AscTypeCd', 'DS_AssociationTypeCode', 'true', 'gmd:DS_AssociationTypeCode'); INSERT INTO code_list VALUES ('CellGeoCd', 'MD_CellGeometryCode', 'true', 'gmd:MD_CellGeometryCode'); INSERT INTO code_list VALUES ('CharSetCd', 'MD_CharacterSetCode', 'true', 'gmd:MD_CharacterSetCode'); INSERT INTO code_list VALUES ('ClassificationCd', 'MD_ClassificationCode', 'true', 'gmd:MD_ClassificationCode'); INSERT INTO code_list VALUES ('ContentTypCd', 'MD_CoverageContentTypeCode', 'true', 'gmd:MD_CoverageContentTypeCode'); INSERT INTO code_list VALUES ('CountryCd', 'Country', 'false', 'gmd:Country'); INSERT INTO code_list VALUES ('DateTypCd', 'CI_DateTypeCode', 'true', 'gmd:CI_DateTypeCode'); INSERT INTO code_list VALUES ('DimNameTypCd', 'MD_DimensionNameTypeCode', 'true', 'gmd:MD_DimensionNameTypeCode'); INSERT INTO code_list VALUES ('EvalMethTypeCd', 'DQ_EvaluationMethodTypeCode', 'true', 'gmd:DQ_EvaluationMethodTypeCode'); INSERT INTO code_list VALUES ('GeoObjTypCd', 'MD_GeometricObjectTypeCode', 'true', 'gmd:MD_GeometricObjectTypeCode'); INSERT INTO code_list VALUES ('ImgCondCd', 'MD_ImagingConditionCode', 'true', 'gmd:MD_ImagingConditionCode'); INSERT INTO code_list VALUES ('InitTypeCd', 'DS_InitiativeTypeCode', 'true', 'gmd:DS_InitiativeTypeCode'); INSERT INTO code_list VALUES ('KeyTypCd', 'MD_KeywordTypeCode', 'true', 'gmd:MD_KeywordTypeCode'); INSERT INTO code_list VALUES ('LangCd', 'LanguageCode', 'false', 'gmd:LanguageCode'); INSERT INTO code_list VALUES ('MaintFreqCd', 'MD_MaintenanceFrequencyCode', 'true', 'gmd:MD_MaintenanceFrequencyCode'); INSERT INTO code_list VALUES ('MedFormCd', 'MD_MediumFormatCode', 'true', 'gmd:MD_MediumFormatCode'); INSERT INTO code_list VALUES ('MedNameCd', 'MD_MediumNameCode', 'true', 'gmd:MD_MediumNameCode'); INSERT INTO code_list VALUES ('ObCd', 'MD_ObligationCode', 'true', 'gmd:MD_ObligationCode'); INSERT INTO code_list VALUES ('OnFunctCd', 'CI_OnLineFunctionCode', 'true', 'gmd:CI_OnLineFunctionCode'); INSERT INTO code_list VALUES ('PixOrientCd', 'MD_PixelOrientationCode', 'true', 'gmd:MD_PixelOrientationCode'); INSERT INTO code_list VALUES ('PresFormCd', 'CI_PresentationFormCode', 'true', 'gmd:CI_PresentationFormCode'); INSERT INTO code_list VALUES ('ProgCd', 'MD_ProgressCode', 'true', 'gmd:MD_ProgressCode'); INSERT INTO code_list VALUES ('RefSysCd', 'RO_SystRefCode', 'false', 'gmd:RO_SystRefCode'); INSERT INTO code_list VALUES ('RestrictCd', 'MD_RestrictionCode', 'true', 'gmd:MD_RestrictionCode'); INSERT INTO code_list VALUES ('RoleCd', 'CI_RoleCode', 'true', 'gmd:CI_RoleCode'); INSERT INTO code_list VALUES ('ScopeCd', 'MD_ScopeCode', 'true', 'gmd:MD_ScopeCode'); INSERT INTO code_list VALUES ('SpatRepTypCd', 'MD_SpatialRepresentationTypeCode', 'true', 'gmd:MD_SpatialRepresentationTypeCode'); INSERT INTO code_list VALUES ('TopicCatCd', 'MD_TopicCategoryCode', 'true', 'gmd:MD_TopicCategoryCode'); INSERT INTO code_list VALUES ('TopoLevCd', 'MD_TopologyLevelCode', 'true', 'gmd:MD_TopologyLevelCode'); INSERT INTO code_list VALUES ('DatatypeCd', 'MD_DatatypeCode', 'true', 'gmd:MD_DatatypeCode'); INSERT INTO code_list VALUES ('BoolCd', 'MW_BoolCode', 'false', ''); INSERT INTO code_list VALUES ('uom', 'MW_UomUnitCode', 'false', ''); INSERT INTO code_list VALUES ('DCPList', 'DCPList', 'true', 'srv:DCPList'); INSERT INTO code_list VALUES ('CouplingTypeCd', 'SV_CouplingType', 'true', 'srv:SV_CouplingType'); -- -- Data for Name: contact_catalogue; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO contact_catalogue VALUES (2, 'Nom de l''organisme ', '002', 'Adresse postale ', '', 'Ville ', 'fr', 'adresse@domain.com&&&&&', 'http://www.domain.com/', ''); -- -- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- Data for Name: db_version; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO db_version VALUES ('1.5', '4/25/2007 10:38:07 AM', 1, 'initialisation des révisions'); INSERT INTO db_version VALUES ('1.5', '4/25/2007 11:57:23 AM', 2, 'suppression de la classe abstraite MD_contentInformation et rattachement des continfo_40 aux classes filles MD_FeatureCatalogueDescription, MD_CoverageDescription, MD_ImageDescription'); INSERT INTO db_version VALUES ('1.5', '5/15/2007 4:09:02 PM', 3, 'modifications des tables elmnt_gabarit (ajout element geographicElement_506) et est_contenu (modification element geographicElement_141 par geographicElement_506) , est_inclus (ajout de la ligne MD_GeometricObject_463, geometryObject_398, 0), suppression des elements CI_Citation_272 et MD_constraints_247 dans elmnt_gabarit'); INSERT INTO db_version VALUES ('1.5', '5/15/2007 5:02:06 PM', 4, 'modification de la table est_contenu pour donner corriger la hierarchie entre EX_extent_118, geographicElement_506 et Ex_GeographicDescription'); INSERT INTO db_version VALUES ('1.5', '5/15/2007 5:13:49 PM', 5, 'correction de la hierarchie entre EX_GeographicDescription_117 et geographicIdentifier_130'); INSERT INTO db_version VALUES ('1.5', '5/15/2007 5:26:39 PM', 6, 'modifications des num_elmnt suite aux corrections sur la hierarchie des révisions 3, 4 et 5'); INSERT INTO db_version VALUES ('1.5', '5/18/2007 2:49:19 PM', 7, 'modification du data_type_code pour les éléments topicCategory_62 obligation_551 et pointInPixel_385, correction de élément RepresentationFraction en RepresentativeFraction dans les tables elmnt_mtd, elmnt_mtd-fra, est_inclus, elmnt_gabarit, elmnt_gabarit-fra, est_contenu'); INSERT INTO db_version VALUES ('1.5', '5/18/2007 3:02:16 PM', 8, 'correction des identifiants elements dans la table label_stand, element portant sur resource (erreur ressource) et ayant des majuscules comme premiere lettre'); INSERT INTO db_version VALUES ('1.5', '5/18/2007 5:31:37 PM', 9, 'ajout de la liste BoolCd, correction sur element tranformationParameterAvailability, ajout du libellé sur distance_122'); INSERT INTO db_version VALUES ('1.5', '5/18/2007 5:46:06 PM', 10, 're modification du data_type_code sur element tranformationParameterAvailability'); INSERT INTO db_version VALUES ('1.5', '5/21/2007 12:36:52 PM', 11, 'suppression des elements Ci_Citation_272 (refer_biblio et do_texte_num) et referenceSystemIdentifier_401 (base_alpha)'); INSERT INTO db_version VALUES ('1.5', '5/22/2007 4:00:41 PM', 12, 'modification pour les elements du profi francais du nom du standard (elmnt_mtd-fra) et dans standard'); INSERT INTO db_version VALUES ('1.5', '5/23/2007 2:48:52 PM', 13, 'ajout de la table attrib_elmnt_gabarit qui est l ancienne table attrib_elmnt_mtd, la table attrib_elmnt_mtd contient les attributs des elements de toute la norme'); INSERT INTO db_version VALUES ('1.5', '5/23/2007 5:14:15 PM', 14, 'modification et correction dans les tables attrib_elmnt_mtd, attrib_elmnt_gabarit'); INSERT INTO db_version VALUES ('1.5', '5/24/2007 11:19:05 AM', 15, 'corrections sur les elements authority_878 (elmnt_mtd), suppression de element CI_Responsibleparty_637 (elmnt_mtd, est_inlcus, label_stand), modification dans est_contenu, field_elmnt, elmnt_gabarit de useLimitation_278 par useLimitation_279'); INSERT INTO db_version VALUES ('1.5', '5/24/2007 5:34:31 PM', 16, 'ajout des elements étendus pour le profil francais, ajout de la table est_inclus-fra, modification des tables label, label_stand,attrib_elmnt_mtd-fra'); INSERT INTO db_version VALUES ('1.5', '5/24/2007 5:42:26 PM', 17, 'corrections sur la table elmnt_mtd-fra'); INSERT INTO db_version VALUES ('1.5', '5/25/2007 3:13:43 PM', 18, 'ajout des différents types hors norme 19115 (voir la complétion dans la feuille Type)'); INSERT INTO db_version VALUES ('1.5', '5/25/2007 3:22:27 PM', 19, 'corrections sur les modifications précédentes'); INSERT INTO db_version VALUES ('1.5', '5/25/2007 3:56:15 PM', 20, 'ajout de la liste LunitCd pour donner une liste des unités de longueur'); INSERT INTO db_version VALUES ('1.5', '5/28/2007 11:18:59 AM', 21, 'modification des identifiants de la liste MW_uomLengthCode'); INSERT INTO db_version VALUES ('1.5', '5/28/2007 4:42:17 PM', 22, 'création des entrées des elements dans label_stand avec des identifiants sans les incréments'); INSERT INTO db_version VALUES ('1.5', '6/1/2007 11:33:23 AM', 23, 'modification de lelement MD_LegalConstraints_'); INSERT INTO db_version VALUES ('1.5', '6/15/2007 11:33:23 AM', 24, 'correction sur element densityUnit_ shortname et libellé'); -- -- Data for Name: elmnt_code_list; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO elmnt_code_list VALUES ('AscTypeCd_1', 'AscTypeCd', 'crossReference', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('AscTypeCd_2', 'AscTypeCd', 'largerWorkCitation', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('AscTypeCd_3', 'AscTypeCd', 'partOfSeamlessDatabase', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('AscTypeCd_4', 'AscTypeCd', 'source', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('AscTypeCd_5', 'AscTypeCd', 'stereoMate', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('CellGeoCd_1', 'CellGeoCd', 'point', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('CellGeoCd_2', 'CellGeoCd', 'area', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('CharSetCd_11', 'CharSetCd', '8859part6', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('CharSetCd_21', 'CharSetCd', 'usAscii', '021', 'true'); INSERT INTO elmnt_code_list VALUES ('CharSetCd_4', 'CharSetCd', 'utf8', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('CharSetCd_5', 'CharSetCd', 'utf16', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('CharSetCd_6', 'CharSetCd', '8859part1', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('ClassificationCd_1', 'ClassificationCd', 'unclassified', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('ClassificationCd_2', 'ClassificationCd', 'restricted', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('ClassificationCd_3', 'ClassificationCd', 'confidential', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('ClassificationCd_4', 'ClassificationCd', 'secret', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('ClassificationCd_5', 'ClassificationCd', 'topSecret', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('ContentTypCd_1', 'ContentTypCd', 'image', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('ContentTypCd_2', 'ContentTypCd', 'thematicClassification', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('ContentTypCd_3', 'ContentTypCd', 'physicalMeasurement', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('BoolCd_1', 'BoolCd', 'true', '001', 'false'); INSERT INTO elmnt_code_list VALUES ('BoolCd_2', 'BoolCd', 'false', '002', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_1', 'CountryCd', 'Algeria', 'dz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_10', 'CountryCd', 'Argentina', 'ar', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_100', 'CountryCd', 'Indonesia', 'id', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_101', 'CountryCd', 'Iran', 'ir', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_102', 'CountryCd', 'Iraq', 'iq', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_103', 'CountryCd', 'Ireland', 'ie', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_104', 'CountryCd', 'Israel', 'il', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_105', 'CountryCd', 'Italy', 'it', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_106', 'CountryCd', 'Jamaica', 'jm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_107', 'CountryCd', 'Japan', 'jp', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_108', 'CountryCd', 'Jordan', 'jo', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_109', 'CountryCd', 'Kazakhstan', 'kz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_11', 'CountryCd', 'Armenia', 'am', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_110', 'CountryCd', 'Kenya', 'ke', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_111', 'CountryCd', 'Kiribati', 'ki', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_112', 'CountryCd', 'Democratic People''s Republic of Korea', 'kp', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_113', 'CountryCd', 'Republic of Korea', 'kr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_114', 'CountryCd', 'Kuwait', 'kw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_115', 'CountryCd', 'Kyrgyzstan', 'kg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_116', 'CountryCd', 'Lao People''s Democratic Republic', 'la', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_117', 'CountryCd', 'Latvia', 'lv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_118', 'CountryCd', 'Lebanon', 'lb', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_119', 'CountryCd', 'Lesotho', 'ls', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_12', 'CountryCd', 'Aruba', 'aw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_120', 'CountryCd', 'Liberia', 'lr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_121', 'CountryCd', 'Libyan Arab Jamahiriya', 'ly', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_122', 'CountryCd', 'Liechtenstein', 'li', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_123', 'CountryCd', 'Lithuania', 'lt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_124', 'CountryCd', 'Luxembourg', 'lu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_125', 'CountryCd', 'Macao', 'mo', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_126', 'CountryCd', 'The Former Yugoslav Republic of Macedonia', 'mk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_127', 'CountryCd', 'Madagascar', 'mg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_128', 'CountryCd', 'Malawi', 'mw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_129', 'CountryCd', 'Malaysia', 'my', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_13', 'CountryCd', 'Australia', 'au', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_130', 'CountryCd', 'Madives', 'mv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_131', 'CountryCd', 'Mali', 'ml', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_132', 'CountryCd', 'Malta', 'mt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_133', 'CountryCd', 'Marshall Islands', 'mh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_134', 'CountryCd', 'Martinique', 'mq', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_135', 'CountryCd', 'Mauritania', 'mr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_136', 'CountryCd', 'Mauritius', 'mu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_137', 'CountryCd', 'Mayotte', 'yt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_138', 'CountryCd', 'Mexico', 'mx', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_139', 'CountryCd', 'Federated States of Micronesia', 'fm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_14', 'CountryCd', 'Austria', 'at', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_140', 'CountryCd', 'Republic of Moldova', 'md', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_141', 'CountryCd', 'Monaco', 'mn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_142', 'CountryCd', 'Montserrat', 'ms', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_143', 'CountryCd', 'Morocco', 'ma', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_144', 'CountryCd', 'Mozambique', 'mz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_145', 'CountryCd', 'Myanmar', 'mn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_146', 'CountryCd', 'Namibia', 'na', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_147', 'CountryCd', 'Nauru', 'nr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_148', 'CountryCd', 'Nepal', 'np', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_149', 'CountryCd', 'Netherlands', 'nl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_15', 'CountryCd', 'Azerbaijan', 'az', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_150', 'CountryCd', 'Netherlands Antilles', 'an', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_151', 'CountryCd', 'New Caledonia', 'nc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_152', 'CountryCd', 'New Zealand', 'nz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_153', 'CountryCd', 'Nicaragua', 'ni', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_154', 'CountryCd', 'Niger', 'ne', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_155', 'CountryCd', 'Nigeria', 'ng', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_156', 'CountryCd', 'Niue', 'nu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_157', 'CountryCd', 'Norfolk Island', 'nf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_158', 'CountryCd', 'Northern Mariana Islands', 'mp', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_159', 'CountryCd', 'Norway', 'no', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_16', 'CountryCd', 'Bahamas', 'bs', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_160', 'CountryCd', 'Oman', 'om', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_161', 'CountryCd', 'Pakistan', 'pk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_162', 'CountryCd', 'Palau', 'pw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_163', 'CountryCd', 'Pelestinian Territory, Ocuupied', 'ps', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_164', 'CountryCd', 'Panama', 'pa', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_165', 'CountryCd', 'Papua New Guinea', 'pg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_166', 'CountryCd', 'Paraguay', 'py', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_167', 'CountryCd', 'Peru', 'pe', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_168', 'CountryCd', 'Philippines', 'ph', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_169', 'CountryCd', 'Pitcairn', 'pn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_17', 'CountryCd', 'Bahrain', 'bh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_170', 'CountryCd', 'Poland', 'pl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_171', 'CountryCd', 'Portugal', 'pt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_172', 'CountryCd', 'Puerto Rico', 'pr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_173', 'CountryCd', 'Qatar', 'qa', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_174', 'CountryCd', 'Réunion', 're', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_175', 'CountryCd', 'Romania', 'ro', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_176', 'CountryCd', 'Russian Federation', 'ru', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_177', 'CountryCd', 'Rwanda', 'rw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_178', 'CountryCd', 'Saint Helena', 'sh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_179', 'CountryCd', 'Saint Kitts and Nevis', 'kn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_18', 'CountryCd', 'Bangladesh', 'bd', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_180', 'CountryCd', 'Saint Lucia', 'lc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_181', 'CountryCd', 'Saint Pierre abd Miquelon', 'pm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_182', 'CountryCd', 'Saint Vincent and the Grenadines', 'vc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_183', 'CountryCd', 'Samoa', 'ws', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_184', 'CountryCd', 'San Marino', 'sm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_185', 'CountryCd', 'Sao Tome and Principe', 'st', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_186', 'CountryCd', 'Saudi Arabia', 'sa', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_187', 'CountryCd', 'Senegal', 'sn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_188', 'CountryCd', 'Serbia and Montenegro', 'cs', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_189', 'CountryCd', 'Seychelles', 'sc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_19', 'CountryCd', 'Barbados', 'bb', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_190', 'CountryCd', 'Sierra Leone', 'sl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_191', 'CountryCd', 'Singapore', 'sg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_192', 'CountryCd', 'Slovakia', 'sk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_193', 'CountryCd', 'Slovenia', 'si', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_194', 'CountryCd', 'Solomon Islands', 'sb', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_195', 'CountryCd', 'Somalia', 'so', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_196', 'CountryCd', 'South Africa', 'za', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_197', 'CountryCd', 'South Georgia and the South Sandwich Islands', 'gs', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_198', 'CountryCd', 'Spain', 'es', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_199', 'CountryCd', 'Sri Lanka', 'lk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_2', 'CountryCd', 'Afghanistan', 'af', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_20', 'CountryCd', 'Belarus', 'by', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_200', 'CountryCd', 'Sudan', 'sd', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_201', 'CountryCd', 'Suriname', 'sr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_202', 'CountryCd', 'Svalbard and Jan Mayen', 'sj', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_203', 'CountryCd', 'Swaziland', 'sz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_204', 'CountryCd', 'Sweden', 'se', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_205', 'CountryCd', 'Switzerland', 'ch', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_206', 'CountryCd', 'Syrian Arab Republic', 'sy', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_207', 'CountryCd', 'Taiwan, Province of China', 'tw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_208', 'CountryCd', 'Tajikistan', 'tj', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_209', 'CountryCd', 'Tanzania, United Republic of', 'tz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_21', 'CountryCd', 'Belgium', 'be', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_210', 'CountryCd', 'Thailand', 'th', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_211', 'CountryCd', 'Timor-Leste', 'tl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_212', 'CountryCd', 'Togo', 'tg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_213', 'CountryCd', 'Trinidad and Tobago', 'tt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_214', 'CountryCd', 'Tunisia', 'tn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_215', 'CountryCd', 'Turkey', 'tr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_216', 'CountryCd', 'Turkmenistan', 'tm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_217', 'CountryCd', 'Turks and Caicos Islands', 'tc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_218', 'CountryCd', 'Tuvalu', 'tv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_219', 'CountryCd', 'Uganda', 'ug', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_22', 'CountryCd', 'Belize', 'bz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_220', 'CountryCd', 'Ukraine', 'ua', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_221', 'CountryCd', 'United Arab Emirates', 'ae', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_222', 'CountryCd', 'United Kingdom', 'gb', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_223', 'CountryCd', 'United States', 'us', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_224', 'CountryCd', 'United States Minor Outlying Islands', 'um', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_225', 'CountryCd', 'Uruguay', 'uy', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_226', 'CountryCd', 'Uzbekistan', 'uz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_227', 'CountryCd', 'Vanuatu', 'vu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_228', 'CountryCd', 'Venezuela', 've', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_229', 'CountryCd', 'Viet Nam', 'vn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_23', 'CountryCd', 'Benin', 'bj', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_230', 'CountryCd', 'Virgin Islands, British', 'vg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_231', 'CountryCd', 'Virgin Islands, U.S.', 'vi', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_232', 'CountryCd', 'Wallis and Futuna', 'wf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_233', 'CountryCd', 'Western Sahara', 'eh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_234', 'CountryCd', 'Yemen', 'ye', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_235', 'CountryCd', 'Zambia', 'zm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_236', 'CountryCd', 'Zimbabwe', 'zw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_24', 'CountryCd', 'Bermuda', 'bm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_25', 'CountryCd', 'Bhutan', 'bt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_26', 'CountryCd', 'Bolivia', 'bo', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_27', 'CountryCd', 'Bosnia and Herzgovina', 'ba', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_28', 'CountryCd', 'Botswana', 'bw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_29', 'CountryCd', 'Bouvet Island', 'bv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_3', 'CountryCd', 'Aland Islands', 'ax', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_30', 'CountryCd', 'Brazil', 'br', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_31', 'CountryCd', 'British indian ocean territory', 'io', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_32', 'CountryCd', 'Brunei Darussalam', 'bn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_33', 'CountryCd', 'Bulgaria', 'bg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_34', 'CountryCd', 'Burkina Faso', 'bf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_35', 'CountryCd', 'Burundi', 'bi', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_36', 'CountryCd', 'Cambodia', 'kh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_37', 'CountryCd', 'Cameroon', 'cm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_38', 'CountryCd', 'Canada', 'ca', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_39', 'CountryCd', 'Cape Verde', 'cv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_4', 'CountryCd', 'American Samoa', 'as', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_40', 'CountryCd', 'Cayman Islands', 'ky', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_41', 'CountryCd', 'Central African Republic', 'cf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_42', 'CountryCd', 'Chad', 'td', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_43', 'CountryCd', 'Chile', 'cl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_44', 'CountryCd', 'China', 'cn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_45', 'CountryCd', 'Christmas Island', 'cx', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_46', 'CountryCd', 'Cocos Islands', 'cc', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_47', 'CountryCd', 'Colombia', 'co', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_48', 'CountryCd', 'Comoros', 'km', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_49', 'CountryCd', 'Congo', 'cg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_5', 'CountryCd', 'Andorra', 'ad', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_50', 'CountryCd', 'Democratic Republic of Congo', 'cd', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_51', 'CountryCd', 'Cook Islands', 'ck', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_52', 'CountryCd', 'Costa Rica', 'cr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_53', 'CountryCd', 'Côte d''ivoire', 'ci', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_54', 'CountryCd', 'Croatia', 'hr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_55', 'CountryCd', 'Cuba', 'cu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_56', 'CountryCd', 'Cyprus', 'cy', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_57', 'CountryCd', 'Czech Republic', 'cz', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_58', 'CountryCd', 'Denmark', 'dk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_59', 'CountryCd', 'Djibouti', 'dj', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_6', 'CountryCd', 'Angola', 'ao', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_60', 'CountryCd', 'Dominica', 'dm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_61', 'CountryCd', 'Dominican Republic', 'do', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_62', 'CountryCd', 'Ecudaor', 'ec', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_63', 'CountryCd', 'Egypt', 'eg', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_64', 'CountryCd', 'El Salvador', 'sv', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_65', 'CountryCd', 'Equatorial Guinea', 'gq', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_66', 'CountryCd', 'Eritrea', 'er', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_67', 'CountryCd', 'Estonia', 'ee', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_68', 'CountryCd', 'Ethiopia', 'et', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_69', 'CountryCd', 'Falkland Islands', 'fk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_7', 'CountryCd', 'Anguilla', 'ai', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_70', 'CountryCd', 'Faroe Islands', 'fo', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_71', 'CountryCd', 'Fiji', 'fj', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_72', 'CountryCd', 'Finland', 'fi', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_73', 'CountryCd', 'France', 'fr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_74', 'CountryCd', 'French Guiana', 'gf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_75', 'CountryCd', 'French Polynesia', 'pf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_76', 'CountryCd', 'French Southern Territories', 'tf', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_77', 'CountryCd', 'Gabon', 'ga', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_78', 'CountryCd', 'Gambia', 'gm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_79', 'CountryCd', 'Georgia', 'ge', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_8', 'CountryCd', 'Antartica', 'aq', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_80', 'CountryCd', 'Germany', 'de', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_81', 'CountryCd', 'Ghana', 'gh', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_82', 'CountryCd', 'Gibraltar', 'gi', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_83', 'CountryCd', 'Greece', 'gr', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_84', 'CountryCd', 'Greenland', 'gl', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_85', 'CountryCd', 'Grenada', 'gd', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_86', 'CountryCd', 'Guadeloupe', 'gp', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_87', 'CountryCd', 'Guam', 'gu', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_88', 'CountryCd', 'Guatemala', 'gt', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_89', 'CountryCd', 'Guinea', 'gn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_9', 'CountryCd', 'Antigua and barbuda', 'ag', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_90', 'CountryCd', 'Guinea-Bissau', 'gw', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_91', 'CountryCd', 'Guyana', 'gy', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_92', 'CountryCd', 'Haiti', 'ht', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_93', 'CountryCd', 'Heard Island and McDonald Islands', 'hm', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_94', 'CountryCd', 'Holy See', 'va', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_95', 'CountryCd', 'Honduras', 'hn', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_96', 'CountryCd', 'Hong Kong', 'hk', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_97', 'CountryCd', 'Hungary', 'hu', 'false'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_1', 'DatatypeCd', 'class', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_10', 'DatatypeCd', 'unionClass', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_11', 'DatatypeCd', 'metaClass', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_12', 'DatatypeCd', 'typeClass', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_13', 'DatatypeCd', 'CharacterString', '013', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_14', 'DatatypeCd', 'integer', '014', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_15', 'DatatypeCd', 'association', '015', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_2', 'DatatypeCd', 'codelist', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_3', 'DatatypeCd', 'enumeration', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_4', 'DatatypeCd', 'codelistElement', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_5', 'DatatypeCd', 'abstractClass', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_6', 'DatatypeCd', 'aggregateClass', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_7', 'DatatypeCd', 'specifiedClass', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_8', 'DatatypeCd', 'datatypeClass', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('DatatypeCd_9', 'DatatypeCd', 'interfaceClass', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('DateTypCd_1', 'DateTypCd', 'creation', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('DateTypCd_2', 'DateTypCd', 'publication', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('DateTypCd_3', 'DateTypCd', 'revision', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_1', 'DimNameTypCd', 'row', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_2', 'DimNameTypCd', 'column', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_3', 'DimNameTypCd', 'vertical', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_4', 'DimNameTypCd', 'track', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_5', 'DimNameTypCd', 'crossTrack', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_6', 'DimNameTypCd', 'line', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_7', 'DimNameTypCd', 'sample', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('DimNameTypCd_8', 'DimNameTypCd', 'time', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('EvalMethTypeCd_1', 'EvalMethTypeCd', 'directInternal', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('EvalMethTypeCd_2', 'EvalMethTypeCd', 'directExternal', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('EvalMethTypeCd_3', 'EvalMethTypeCd', 'indirect', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_1', 'GeoObjTypCd', 'complex', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_2', 'GeoObjTypCd', 'composite', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_3', 'GeoObjTypCd', 'curve', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_4', 'GeoObjTypCd', 'point', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_5', 'GeoObjTypCd', 'solid', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('GeoObjTypCd_6', 'GeoObjTypCd', 'surface', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_1', 'ImgCondCd', 'blurredImage', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_10', 'ImgCondCd', 'snow', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_11', 'ImgCondCd', 'terrainMasking', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_2', 'ImgCondCd', 'cloud', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_3', 'ImgCondCd', 'degradingObliquity', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_4', 'ImgCondCd', 'fog', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_5', 'ImgCondCd', 'heavySmokeOrDust', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_6', 'ImgCondCd', 'night', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_7', 'ImgCondCd', 'rain', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_8', 'ImgCondCd', 'semiDarkness', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('ImgCondCd_9', 'ImgCondCd', 'shadow', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_1', 'InitTypeCd', 'campaign', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_10', 'InitTypeCd', 'process', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_11', 'InitTypeCd', 'program', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_12', 'InitTypeCd', 'project', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_13', 'InitTypeCd', 'study', '013', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_14', 'InitTypeCd', 'task', '014', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_15', 'InitTypeCd', 'trial', '015', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_2', 'InitTypeCd', 'collection', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_3', 'InitTypeCd', 'exercise', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_4', 'InitTypeCd', 'experiment', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_5', 'InitTypeCd', 'investigation', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_6', 'InitTypeCd', 'mission', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_7', 'InitTypeCd', 'sensor', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_8', 'InitTypeCd', 'operation', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('InitTypeCd_9', 'InitTypeCd', 'platform', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('KeyTypCd_1', 'KeyTypCd', 'discipline', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('KeyTypCd_2', 'KeyTypCd', 'place', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('KeyTypCd_3', 'KeyTypCd', 'stratum', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('KeyTypCd_4', 'KeyTypCd', 'temporal', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('KeyTypCd_5', 'KeyTypCd', 'theme', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('CountryCd_98', 'CountryCd', 'Iceland', 'is', 'false'); INSERT INTO elmnt_code_list VALUES ('CountryCd_99', 'CountryCd', 'India', 'in', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_1', 'LangCd', 'fra', 'fra', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_2', 'LangCd', 'spa', 'spa', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_3', 'LangCd', 'eng', 'eng', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_4', 'LangCd', 'por', 'por', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_5', 'LangCd', 'ara', 'ara', 'false'); INSERT INTO elmnt_code_list VALUES ('LangCd_6', 'LangCd', 'ger', 'ger', 'false'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_10', 'MaintFreqCd', 'irregular', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_11', 'MaintFreqCd', 'notPlanned', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_12', 'MaintFreqCd', 'unknown', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('LangCd_7', 'LangCd', 'rus', 'rus', 'false'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_1', 'MaintFreqCd', 'continual', '001', 'false'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_2', 'MaintFreqCd', 'daily', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_3', 'MaintFreqCd', 'weekly', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_4', 'MaintFreqCd', 'fornightly', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_5', 'MaintFreqCd', 'monthly', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_6', 'MaintFreqCd', 'quarterly', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_7', 'MaintFreqCd', 'biannually', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_8', 'MaintFreqCd', 'annually', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_9', 'MaintFreqCd', 'asNeeded', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_1', 'MedFormCd', 'cpio', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_2', 'MedFormCd', 'tar', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_3', 'MedFormCd', 'highSierra', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_4', 'MedFormCd', 'iso9660', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_5', 'MedFormCd', 'iso9660RockRidge', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_6', 'MedFormCd', 'iso9660AppleHFS', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_13', 'MaintFreqCd', 'triennal', '013', 'false'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_1', 'MedNameCd', 'cdRom', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_10', 'MedNameCd', '3580Cartridge', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_11', 'MedNameCd', '4mmCartridgetape', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_12', 'MedNameCd', '8mmCartridgeTape', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_13', 'MedNameCd', '1quarterInchCartridgeTape', '013', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_14', 'MedNameCd', 'digitalLinearTape', '014', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_15', 'MedNameCd', 'onLine', '015', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_16', 'MedNameCd', 'satelite', '016', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_17', 'MedNameCd', 'telephoneLink', '017', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_18', 'MedNameCd', 'hardcopy', '018', 'true'); INSERT INTO elmnt_code_list VALUES ('MaintFreqCd_14', 'MaintFreqCd', 'four-year', '014', 'false'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_2', 'MedNameCd', 'dvd', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_3', 'MedNameCd', 'dvdRom', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_4', 'MedNameCd', '3halfInchFloppy', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_5', 'MedNameCd', '5quarterInchFloppy', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_6', 'MedNameCd', '7trackTape', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_7', 'MedNameCd', '9trackTape', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_8', 'MedNameCd', '3480Cartridge', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_9', 'MedNameCd', '3490Cartridge', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('ObCd_1', 'ObCd', 'mandatory', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('ObCd_2', 'ObCd', 'optional', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('ObCd_3', 'ObCd', 'conditionnal', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('OnFunctCd_1', 'OnFunctCd', 'download', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('OnFunctCd_2', 'OnFunctCd', 'information', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('OnFunctCd_3', 'OnFunctCd', 'offlineAccess', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('OnFunctCd_4', 'OnFunctCd', 'order', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('OnFunctCd_5', 'OnFunctCd', 'search', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('PixOrientCd_1', 'PixOrientCd', 'center', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('PixOrientCd_2', 'PixOrientCd', 'lowerLeft', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('PixOrientCd_3', 'PixOrientCd', 'lowerRight', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('PixOrientCd_4', 'PixOrientCd', 'upperRight', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('PixOrientCd_5', 'PixOrientCd', 'upperLeft', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_1', 'PresFormCd', 'documentDigital', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_11', 'PresFormCd', 'tableDigital', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_12', 'PresFormCd', 'tableHardcopy', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('MedFormCd_7', 'MedFormCd', 'none', '007', 'false'); INSERT INTO elmnt_code_list VALUES ('MedNameCd_19', 'MedNameCd', 'none', '019', 'false'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_15', 'PresFormCd', 'geoDatabase', '015', 'false'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_16', 'PresFormCd', 'database', '016', 'false'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_2', 'PresFormCd', 'documentHardcopy', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_3', 'PresFormCd', 'imageDigital', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_4', 'PresFormCd', 'imageHardcopy', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_5', 'PresFormCd', 'mapDigital', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_6', 'PresFormCd', 'mapHardcopy', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_1', 'ProgCd', 'completed', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_2', 'ProgCd', 'historicalArchive', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_3', 'ProgCd', 'obsolete', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_4', 'ProgCd', 'onGoing', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_5', 'ProgCd', 'planned', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_6', 'ProgCd', 'required', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('ProgCd_7', 'ProgCd', 'underDevelopment', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_17', 'PresFormCd', 'vector theme', '017', 'false'); INSERT INTO elmnt_code_list VALUES ('PresFormCd_18', 'PresFormCd', 'raster layer', '018', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_1', 'RefSysCd', '4326', '4326', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_62', 'RefSysCd', '102022', '102022', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_10', 'RefSysCd', '102030', '102030', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_11', 'RefSysCd', '102001', '102001', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_12', 'RefSysCd', '102002', '102002', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_13', 'RefSysCd', '54027', '54027', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_14', 'RefSysCd', '54002', '54002', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_15', 'RefSysCd', '102013', '102013', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_16', 'RefSysCd', '102031', '102031', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_17', 'RefSysCd', '102014', '102014', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_18', 'RefSysCd', '23028', '23028', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_19', 'RefSysCd', '23029', '23029', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_2', 'RefSysCd', '102023', '102023', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_20', 'RefSysCd', '23030', '23030', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_21', 'RefSysCd', '23031', '23031', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_22', 'RefSysCd', '23032', '23032', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_23', 'RefSysCd', '23033', '23033', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_24', 'RefSysCd', '23034', '23034', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_25', 'RefSysCd', '23035', '23035', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_26', 'RefSysCd', '23036', '23036', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_27', 'RefSysCd', '23037', '23037', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_28', 'RefSysCd', '23038', '23038', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_29', 'RefSysCd', '102007', '102007', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_3', 'RefSysCd', '102024', '102024', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_30', 'RefSysCd', '54004', '54004', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_31', 'RefSysCd', '102008', '102008', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_32', 'RefSysCd', '102010', '102010', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_33', 'RefSysCd', '102009', '102009', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_34', 'RefSysCd', '2154', '2154', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_35', 'RefSysCd', '27581', '27581', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_36', 'RefSysCd', '27582', '27582', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_37', 'RefSysCd', '27593', '27593', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_38', 'RefSysCd', '27583', '27583', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_39', 'RefSysCd', '27584', '27584', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_4', 'RefSysCd', '102006', '102006', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_40', 'RefSysCd', '27571', '27571', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_41', 'RefSysCd', '27572', '27572', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_42', 'RefSysCd', '27573', '27573', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_43', 'RefSysCd', '27574', '27574', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_44', 'RefSysCd', '102033', '102033', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_45', 'RefSysCd', '102032', '102032', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_46', 'RefSysCd', '102015', '102015', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_47', 'RefSysCd', '102003', '102003', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_48', 'RefSysCd', '102005', '102005', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_49', 'RefSysCd', '102004', '102004', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_5', 'RefSysCd', '102025', '102025', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_50', 'RefSysCd', '32628', '32628', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_51', 'RefSysCd', '32629', '32629', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_52', 'RefSysCd', '32630', '32630', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_53', 'RefSysCd', '32631', '32631', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_54', 'RefSysCd', '32632', '32632', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_55', 'RefSysCd', '32633', '32633', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_56', 'RefSysCd', '32634', '32634', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_57', 'RefSysCd', '32635', '32635', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_58', 'RefSysCd', '32636', '32636', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_59', 'RefSysCd', '32637', '32637', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_6', 'RefSysCd', '102026', '102026', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_60', 'RefSysCd', '32638', '32638', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_61', 'RefSysCd', 'unknown', '000', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_7', 'RefSysCd', '102027', '102027', 'false'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_1', 'RestrictCd', 'copyright', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_2', 'RestrictCd', 'patent', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_3', 'RestrictCd', 'patentPending', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_4', 'RestrictCd', 'trademark', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_5', 'RestrictCd', 'license', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_6', 'RestrictCd', 'intellectualPropertyRight', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_7', 'RestrictCd', 'restricted', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('RestrictCd_8', 'RestrictCd', 'otherRestrictions', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_1', 'RoleCd', 'resourceProvider', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_10', 'RoleCd', 'publisher', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_11', 'RoleCd', 'author', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_2', 'RoleCd', 'custodian', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_3', 'RoleCd', 'owner', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_4', 'RoleCd', 'user', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_5', 'RoleCd', 'distributor', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_6', 'RoleCd', 'originator', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_7', 'RoleCd', 'pointOfContact', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_8', 'RoleCd', 'principalInvestigator', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('RoleCd_9', 'RoleCd', 'processor', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('ScopeCd_5', 'ScopeCd', 'dataset', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('ScopeCd_6', 'ScopeCd', 'series', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_1', 'SpatRepTypCd', 'vector', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_2', 'SpatRepTypCd', 'grid', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_3', 'SpatRepTypCd', 'textTable', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_4', 'SpatRepTypCd', 'tin', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_5', 'SpatRepTypCd', 'stereoModel', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('SpatRepTypCd_6', 'SpatRepTypCd', 'video', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_1', 'TopicCatCd', 'farming', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_10', 'TopicCatCd', 'imageryBaseMapsEarthCover', '010', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_11', 'TopicCatCd', 'intelligenceMilitary', '011', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_12', 'TopicCatCd', 'inlandWaters', '012', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_13', 'TopicCatCd', 'location', '013', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_14', 'TopicCatCd', 'oceans', '014', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_15', 'TopicCatCd', 'planningCadastre', '015', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_16', 'TopicCatCd', 'society', '016', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_17', 'TopicCatCd', 'structure', '017', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_18', 'TopicCatCd', 'transportation', '018', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_19', 'TopicCatCd', 'utilitiesCommunication', '019', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_2', 'TopicCatCd', 'biota', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_3', 'TopicCatCd', 'boundaries', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_4', 'TopicCatCd', 'climatologyMeteorologyAtmosphere', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_5', 'TopicCatCd', 'economy', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_6', 'TopicCatCd', 'elevation', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_7', 'TopicCatCd', 'environment', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_8', 'TopicCatCd', 'geoscientificInformation', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('TopicCatCd_9', 'TopicCatCd', 'health', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_1', 'TopoLevCd', 'geometryOnly', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_2', 'TopoLevCd', 'topology1D', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_3', 'TopoLevCd', 'planarGraph', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_4', 'TopoLevCd', 'fullPlanarGraph', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_5', 'TopoLevCd', 'surfaceGraph', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_6', 'TopoLevCd', 'fullSurfaceGraph', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_7', 'TopoLevCd', 'topology3D', '007', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_8', 'TopoLevCd', 'fullTopology3D', '008', 'true'); INSERT INTO elmnt_code_list VALUES ('TopoLevCd_9', 'TopoLevCd', 'abstract', '009', 'true'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_8', 'RefSysCd', '102028', '102028', 'false'); INSERT INTO elmnt_code_list VALUES ('RefSysCd_9', 'RefSysCd', '102029', '102029', 'false'); INSERT INTO elmnt_code_list VALUES ('uom_1', 'uom', 'meter', 'm', 'false'); INSERT INTO elmnt_code_list VALUES ('uom_2', 'uom', 'centimeter', 'cm', 'false'); INSERT INTO elmnt_code_list VALUES ('uom_3', 'uom', 'kilometer', 'km', 'false'); INSERT INTO elmnt_code_list VALUES ('uom_4', 'uom', 'mile', 'mi', 'false'); INSERT INTO elmnt_code_list VALUES ('DCPList_1', 'DCPList', 'XML', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('DCPList_2', 'DCPList', 'CORBA', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('DCPList_3', 'DCPList', 'JAVA', '003', 'true'); INSERT INTO elmnt_code_list VALUES ('DCPList_4', 'DCPList', 'COM', '004', 'true'); INSERT INTO elmnt_code_list VALUES ('DCPList_5', 'DCPList', 'SQL', '005', 'true'); INSERT INTO elmnt_code_list VALUES ('DCPList_6', 'DCPList', 'WebServices', '006', 'true'); INSERT INTO elmnt_code_list VALUES ('CouplingTypeCd_1', 'CouplingTypeCd', 'loose', '001', 'true'); INSERT INTO elmnt_code_list VALUES ('CouplingTypeCd_2', 'CouplingTypeCd', 'mixed', '002', 'true'); INSERT INTO elmnt_code_list VALUES ('CouplingTypeCd_3', 'CouplingTypeCd', 'tight', '003', 'true'); -- -- Data for Name: elmnt_gabarit; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_ReferenceSystem_99', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'RS_Identifier_131', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_ReferenceSystem_99', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'RS_Identifier_131', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Resolution_115', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Resolution_115', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_RepresentativeFraction_123', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_RepresentativeFraction_123', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Series_78', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_ReferenceSystem_99', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'RS_Identifier_131', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_RepresentativeFraction_123', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Resolution_115', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'EX_Extent_118', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_GridSpatialRepresentation_98', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_GeometricObjects_463', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_RepresentativeFraction_123', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Resolution_115', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_VectorSpatialRepresentation_102', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'EX_Extent_118', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Resolution_115', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Dimension_367', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_ReferenceSystem_99', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'RS_Identifier_131', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_ReferenceSystem_99', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'RS_Identifier_131', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'EX_Extent_118', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_ResponsibleParty_157', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_ResponsibleParty_71', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_ResponsibleParty_157', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_ResponsibleParty_71', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_ResponsibleParty_157', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_ResponsibleParty_71', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Medium_294', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_BrowseGraphic_509', 'false', 2, '1', NULL, NULL, 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_BrowseGraphic_509', 'false', 2, '1', NULL, NULL, 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_BrowseGraphic_509', 'false', 2, '1', NULL, NULL, 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_BrowseGraphic_509', 'false', 2, '1', NULL, NULL, 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'DQ_DataQuality_106', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'DQ_Scope_439', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Series_78', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'LI_Lineage_441', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Format_220', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_LegalConstraints_259', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_MaintenanceInformation_226', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Date_76', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_OnlineResource_292', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Format_220', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Format_112', 'false', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'CI_Series_78', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'EX_Extent_118', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'EX_GeographicDescription_117', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_DigitalTransferOptions_138', 'true', 1, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Identifier_155', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Keywords_113', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'EX_TemporalExtent_145', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'TimePeriod_501', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Format_220', 'true', 0, '62', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'EX_GeographicBoundingBox_116', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_ResponsibleParty_71', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Contact_73', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Telephone_74', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Address_75', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_OnlineResource_77', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'MD_DataIdentification_68', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_ResponsibleParty_191', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Contact_197', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Telephone_203', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Address_206', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_OnlineResource_213', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Citation_72', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_ResponsibleParty_157', 'true', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Contact_168', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Telephone_174', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Address_177', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_OnlineResource_184', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'MD_Distribution_105', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'MD_Distributor_137', 'true', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_ResponsibleParty_280', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Contact_316', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Telephone_323', 'false', 0, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_Address_322', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'CI_OnlineResource_455', 'false', 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'characterSet_4', 'true', 0, '1', '006', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'referenceSystemInfo_38', 'true', 0, '1', NULL, '80', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'referenceSystemIdentifier_401', 'true', 0, '1', NULL, '8000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'code_417', 'true', 0, '1', NULL, '80000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'abstract_70', 'true', 0, '1', NULL, '900', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'credit_49', 'false', 1, '1', NULL, '901', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'status_50', 'false', 1, '1', NULL, '902', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'language_60', 'true', 0, '62', 'fra', '9030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'characterSet_61', 'true', 0, '1', '006', '904', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'topicCategory_62', 'true', 0, '5', NULL, '9050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '9060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'keyword_269', 'true', 0, '1', NULL, '90600', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'citation_47', 'true', 0, '1', NULL, '9070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'title_84', 'true', 0, '1', NULL, '90700', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'date_86', 'true', 0, '1', NULL, '907010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'date_79', 'true', 0, '1', NULL, '9070100', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'dateType_80', 'true', 0, '1', '001', '9070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'presentationForm_92', 'true', 0, '1', '015', '90702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'organisationName_164', 'true', 0, '1', NULL, '9070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'role_167', 'true', 0, '1', '002', '9070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'deliveryPoint_178', 'false', 1, '1', NULL, '90703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'city_179', 'false', 1, '1', NULL, '90703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'postalCode_181', 'false', 1, '1', NULL, '90703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'country_182', 'false', 1, '1', NULL, '90703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'electronicMailAddress_183', 'true', 1, '3', NULL, '907030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'linkage_185', 'false', 1, '1', NULL, '90703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'spatialRepresentationType_58', 'true', 0, '62', '001', '9080', 3, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'spatialResolution_59', 'false', 0, '1', NULL, '9090', 4, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'equivalentScale_121', 'false', 0, '1', NULL, '909000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'denominator_124', 'false', 0, '1', NULL, '9090000', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'extent_66', 'true', 0, '1', NULL, '90a0', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'geographicElement_141', 'true', 0, '2', NULL, '90a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'westBoundLongitude_126', 'true', 0, '1', '-180', '90a0000', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'eastBoundLongitude_127', 'true', 0, '1', '180', '90a0001', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'northBoundLatitude_129', 'true', 0, '1', '90', '90a0002', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'southBoundLatitude_128', 'true', 0, '1', '-90', '90a0003', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'geographicElement_506', 'true', 0, '2', NULL, '90a010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'geographicIdentifier_130', 'true', 0, '1', NULL, '90a01000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '90a010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'temporalElement_142', 'false', 0, '1', NULL, '90a020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'extent_146', 'false', 0, '1', NULL, '90a02000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'beginPosition_502', 'false', 0, '1', NULL, '90a020000', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'endPosition_504', 'false', 0, '1', NULL, '90a020001', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'resourceFormat_54', 'true', 0, '62', NULL, '90b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'name_221', 'true', 0, '1', NULL, '90b00', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'version_222', 'true', 0, '1', NULL, '90b01', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'resourceMaintenance_52', 'false', 1, '1', NULL, '90c0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '90c00', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'resourceConstraints_57', 'false', 1, '1', NULL, '90d0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'useLimitation_259', 'false', 1, '1', NULL, '90d00', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'accessConstraints_260', 'false', 1, '62', '008', '90d010', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'useConstraints_261', 'false', 1, '62', '008', '90d020', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'otherConstraints_262', 'false', 1, '1', NULL, '90d03', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'distributionFormat_134', 'false', 1, '62', NULL, 'a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'name_119', 'false', 1, '1', NULL, 'a0000', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'version_120', 'false', 1, '1', NULL, 'a0001', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'organisationName_312', 'false', 0, '1', NULL, 'a010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'role_315', 'false', 0, '1', '005', 'a010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'deliveryPoint_327', 'false', 1, '1', NULL, 'a0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'city_328', 'false', 1, '1', NULL, 'a0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'postalCode_330', 'false', 1, '1', NULL, 'a0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'country_331', 'false', 1, '1', NULL, 'a0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'a01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'linkage_456', 'false', 1, '1', NULL, 'a0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'transferOptions_136', 'true', 1, '62', NULL, 'a020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'transferSize_290', 'false', 1, '1', NULL, 'a0200', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'onLine_291', 'false', 1, '62', NULL, 'a02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'linkage_300', 'false', 1, '1', NULL, 'a020100', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'offLine_293', 'false', 1, '1', NULL, 'a02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'name_295', 'false', 1, '1', '019', 'a020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'density_296', 'false', 1, '62', NULL, 'a0202010', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'volumes_298', 'false', 1, '1', NULL, 'a020202', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'mediumFormat_299', 'false', 1, '62', '007', 'a0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'scope_436', 'false', 1, '1', NULL, 'b000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'level_442', 'false', 1, '1', '005', 'b0000', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'lineage_438', 'false', 1, '1', NULL, 'b010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'statement_448', 'false', 1, '1', NULL, 'b0100', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'identificationInfo_36', 'true', 0, '1', NULL, '90', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '907030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'contactInfo_166', 'true', 4, '1', NULL, '90703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'address_170', 'true', 4, '1', NULL, '9070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'onlineResource_171', 'false', 4, '1', NULL, '9070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'distributionInfo_41', 'false', 1, '1', NULL, 'a0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'distributor_135', 'false', 4, '1', NULL, 'a010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'distributorContact_276', 'false', 4, '62', NULL, 'a01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'contactInfo_314', 'false', 4, '1', NULL, 'a0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'address_318', 'false', 4, '1', NULL, 'a010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_geo', 'onlineResource_319', 'false', 4, '1', NULL, 'a010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'characterSet_4', 'true', 0, '1', 'fra', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'referenceSystemInfo_38', 'true', 0, '1', NULL, '80', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'referenceSystemIdentifier_401', 'true', 0, '1', NULL, '8000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'code_417', 'true', 0, '1', NULL, '80000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'abstract_70', 'true', 0, '1', NULL, '900', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'credit_49', 'false', 1, '1', NULL, '901', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'status_50', 'false', 1, '1', NULL, '902', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'language_60', 'true', 0, '62', 'fra', '9030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'characterSet_61', 'true', 0, '1', 'fra', '904', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'topicCategory_62', 'true', 0, '5', NULL, '9050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '9060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'keyword_269', 'true', 0, '1', NULL, '90600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'citation_47', 'true', 0, '1', NULL, '9070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'title_84', 'true', 0, '1', NULL, '90700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'date_86', 'true', 0, '1', NULL, '907010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'date_79', 'true', 0, '1', NULL, '9070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'dateType_80', 'true', 0, '1', '001', '9070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'presentationForm_92', 'true', 0, '1', '005', '90702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'organisationName_164', 'true', 0, '1', NULL, '9070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'role_167', 'true', 0, '1', '002', '9070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'deliveryPoint_178', 'false', 1, '1', NULL, '90703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'city_179', 'false', 1, '1', NULL, '90703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'postalCode_181', 'false', 1, '1', NULL, '90703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'country_182', 'false', 1, '1', NULL, '90703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'electronicMailAddress_183', 'true', 1, '3', NULL, '907030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'linkage_185', 'false', 1, '1', NULL, '90703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'spatialRepresentationType_58', 'true', 0, '62', '001', '9080', 3, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'spatialResolution_59', 'false', 0, '1', NULL, '9090', 4, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'equivalentScale_121', 'false', 0, '1', NULL, '909000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'denominator_124', 'false', 0, '1', NULL, '9090000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'extent_66', 'true', 0, '1', NULL, '90a0', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'geographicElement_141', 'true', 0, '2', NULL, '90a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'westBoundLongitude_126', 'true', 0, '1', '-180', '90a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'eastBoundLongitude_127', 'true', 0, '1', '180', '90a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'northBoundLatitude_129', 'true', 0, '1', '90', '90a0002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'southBoundLatitude_128', 'true', 0, '1', '-90', '90a0003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'geographicElement_506', 'true', 0, '2', NULL, '90a010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'geographicIdentifier_130', 'true', 0, '1', NULL, '90a01000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '90a010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'temporalElement_142', 'false', 0, '1', NULL, '90a020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'extent_146', 'false', 0, '1', NULL, '90a02000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'beginPosition_502', 'false', 0, '1', NULL, '90a020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'endPosition_504', 'false', 0, '1', NULL, '90a020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'resourceFormat_54', 'true', 0, '62', NULL, '90b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'name_221', 'true', 0, '1', NULL, '90b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'version_222', 'true', 0, '1', NULL, '90b01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'resourceMaintenance_52', 'false', 1, '1', NULL, '90c0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '90c00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'fileName_510', 'false', 2, '1', NULL, '90d00', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'fileType_511', 'false', 2, '1', NULL, '90d01', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'resourceConstraints_57', 'false', 1, '1', NULL, '90e0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'useLimitation_259', 'false', 1, '1', NULL, '90e00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'accessConstraints_260', 'false', 1, '62', '008', '90e010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'useConstraints_261', 'false', 1, '62', '008', '90e020', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'otherConstraints_262', 'false', 1, '1', NULL, '90e03', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'distributionFormat_134', 'false', 1, '62', NULL, 'a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'name_119', 'false', 1, '1', NULL, 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'version_120', 'false', 1, '1', NULL, 'a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'organisationName_312', 'false', 1, '1', NULL, 'a010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'role_315', 'false', 1, '1', '005', 'a010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'deliveryPoint_327', 'false', 1, '1', NULL, 'a0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'city_328', 'false', 1, '1', NULL, 'a0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'postalCode_330', 'false', 1, '1', NULL, 'a0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'country_331', 'false', 1, '1', NULL, 'a0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'a01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'linkage_456', 'false', 1, '1', NULL, 'a0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'transferOptions_136', 'true', 1, '62', NULL, 'a020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'transferSize_290', 'false', 1, '1', NULL, 'a0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'onLine_291', 'false', 1, '62', NULL, 'a02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'linkage_300', 'false', 1, '1', NULL, 'a020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'offLine_293', 'false', 1, '1', NULL, 'a02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'name_295', 'false', 1, '1', '019', 'a020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'density_296', 'false', 1, '62', NULL, 'a0202010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'volumes_298', 'false', 1, '1', NULL, 'a020202', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'mediumFormat_299', 'false', 1, '62', '007', 'a0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'scope_436', 'false', 1, '1', NULL, 'b000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'level_442', 'false', 1, '1', '005', 'b0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'lineage_438', 'false', 1, '1', NULL, 'b010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'statement_448', 'false', 1, '1', NULL, 'b0100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'identificationInfo_36', 'true', 0, '1', NULL, '90', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '907030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'contactInfo_166', 'true', 4, '1', NULL, '90703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'address_170', 'true', 4, '1', NULL, '9070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'onlineResource_171', 'false', 4, '1', NULL, '9070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'graphicOverview_508', 'false', 4, '62', NULL, '90d0', -1, 5, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'distributionInfo_41', 'false', 1, '1', NULL, 'a0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'distributor_135', 'false', 4, '1', NULL, 'a010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'distributorContact_276', 'false', 4, '62', NULL, 'a01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'contactInfo_314', 'false', 4, '1', NULL, 'a0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'address_318', 'false', 4, '1', NULL, 'a010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_num', 'onlineResource_319', 'false', 4, '1', NULL, 'a010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'characterSet_4', 'true', 0, '1', 'fra', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'citation_47', 'true', 0, '1', NULL, '9060', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'referenceSystemInfo_38', 'true', 0, '1', NULL, '80', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'referenceSystemIdentifier_401', 'true', 0, '1', NULL, '8000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'code_417', 'true', 0, '1', NULL, '80000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'abstract_70', 'true', 0, '1', NULL, '900', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'credit_49', 'false', 1, '1', NULL, '901', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'status_50', 'false', 1, '1', NULL, '902', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'language_60', 'true', 0, '62', 'fra', '9030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'descriptiveKeywords_55', 'true', 0, '5', 'fra', '9040', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'keyword_269', 'true', 0, '1', NULL, '90400', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'topicCategory_62', 'true', 0, '5', NULL, '9050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'title_84', 'true', 0, '1', NULL, '90600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'date_86', 'true', 0, '1', NULL, '906010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'date_79', 'true', 0, '1', NULL, '9060100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'dateType_80', 'true', 0, '1', '001', '9060101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'presentationForm_92', 'true', 0, '1', '006', '90602', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'series_93', 'false', 0, '1', NULL, '906030', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'name_81', 'false', 0, '1', NULL, '9060300', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'ISBN_96', 'false', 0, '1', NULL, '90604', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'ISSN_97', 'false', 0, '1', NULL, '90605', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'organisationName_164', 'true', 0, '1', NULL, '9060600', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'role_167', 'true', 0, '1', '002', '9060601', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'deliveryPoint_178', 'false', 1, '1', NULL, '90606020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'city_179', 'false', 1, '1', NULL, '90606020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'postalCode_181', 'false', 1, '1', NULL, '90606020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'country_182', 'false', 1, '1', NULL, '90606020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'electronicMailAddress_183', 'true', 1, '3', NULL, '906060200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'linkage_185', 'false', 1, '1', NULL, '90606020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'spatialResolution_59', 'true', 0, '1', NULL, '9070', 4, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'equivalentScale_121', 'true', 0, '1', NULL, '907000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'denominator_124', 'true', 0, '1', NULL, '9070000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'extent_66', 'true', 0, '1', NULL, '9080', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'geographicElement_141', 'true', 0, '2', NULL, '908000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'westBoundLongitude_126', 'true', 0, '1', '-180', '9080000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'eastBoundLongitude_127', 'true', 0, '1', '180', '9080001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'northBoundLatitude_129', 'true', 0, '1', '90', '9080002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'southBoundLatitude_128', 'true', 0, '1', '-90', '9080003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'geographicElement_506', 'true', 0, '2', NULL, '908010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'geographicIdentifier_130', 'true', 0, '1', NULL, '90801000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '908010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'temporalElement_142', 'false', 0, '1', NULL, '908020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'extent_146', 'false', 0, '1', NULL, '90802000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'beginPosition_502', 'false', 0, '1', NULL, '908020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'endPosition_504', 'false', 0, '1', NULL, '908020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'resourceMaintenance_52', 'false', 1, '1', NULL, '9090', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '90900', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'fileName_510', 'false', 2, '1', NULL, '90a00', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'fileType_511', 'false', 2, '1', NULL, '90a01', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'resourceConstraints_57', 'false', 1, '1', NULL, '90b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'useLimitation_259', 'false', 1, '1', NULL, '90b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'accessConstraints_260', 'false', 1, '62', '008', '90b010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'useConstraints_261', 'false', 1, '62', '008', '90b020', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'otherConstraints_262', 'false', 1, '1', NULL, '90b03', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'distributionFormat_134', 'false', 1, '62', NULL, 'a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'name_119', 'false', 1, '1', NULL, 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'version_120', 'false', 1, '1', NULL, 'a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'organisationName_312', 'false', 1, '1', NULL, 'a010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'role_315', 'false', 1, '1', '005', 'a010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'deliveryPoint_327', 'false', 1, '1', NULL, 'a0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'city_328', 'false', 1, '1', NULL, 'a0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'postalCode_330', 'false', 1, '1', NULL, 'a0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'country_331', 'false', 1, '1', NULL, 'a0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'a01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'linkage_456', 'false', 1, '1', NULL, 'a0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'transferOptions_136', 'true', 1, '62', NULL, 'a020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'transferSize_290', 'false', 1, '1', NULL, 'a0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'offLine_293', 'false', 1, '1', NULL, 'a02010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'name_295', 'false', 1, '1', '019', 'a020100', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'density_296', 'false', 1, '62', NULL, 'a0201010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'volumes_298', 'false', 1, '1', NULL, 'a020102', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'mediumFormat_299', 'false', 1, '62', '007', 'a0201030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'scope_436', 'false', 1, '1', NULL, 'b000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'level_442', 'false', 1, '1', '005', 'b0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'lineage_438', 'false', 1, '1', NULL, 'b010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'statement_448', 'false', 1, '1', NULL, 'b0100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'identificationInfo_36', 'true', 0, '1', NULL, '90', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '906060', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'contactInfo_166', 'true', 4, '1', NULL, '90606020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'address_170', 'true', 4, '1', NULL, '9060602000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'onlineResource_171', 'false', 4, '1', NULL, '9060602010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'graphicOverview_508', 'false', 4, '62', NULL, '90a0', -1, 5, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'distributionInfo_41', 'false', 1, '1', NULL, 'a0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'distributor_135', 'false', 4, '1', NULL, 'a010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'distributorContact_276', 'false', 4, '62', NULL, 'a01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'contactInfo_314', 'false', 4, '1', NULL, 'a0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'address_318', 'false', 4, '1', NULL, 'a010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('carte_papier', 'onlineResource_319', 'false', 4, '1', NULL, 'a010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'parentIdentifier_5', 'false', 0, '62', NULL, '10', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'language_3', 'true', 0, '1', 'fra', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'characterSet_4', 'true', 0, '1', 'fra', '3', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dateStamp_9', 'true', 0, '1', NULL, '6', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dataSetURI_268', 'false', 1, '1', NULL, '7', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'organisationName_11', 'true', 0, '1', NULL, '800', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'role_14', 'true', 0, '1', '002', '801', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'deliveryPoint_19', 'false', 1, '1', NULL, '8020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'city_20', 'false', 1, '1', NULL, '8020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'postalCode_22', 'false', 1, '1', NULL, '8020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'country_23', 'false', 1, '1', NULL, '8020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'electronicMailAddress_24', 'true', 1, '3', NULL, '80200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'linkage_26', 'false', 1, '1', NULL, '8020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'spatialRepresentationInfo_37', 'false', 0, '1', NULL, '90', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'numberOfDimensions_365', 'false', 0, '1', '002', '900', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'axisDimensionsProperties_366', 'false', 0, '3', NULL, '9010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dimensionName_368', 'false', 0, '1', '002', '90100', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dimensionSize_369', 'false', 0, '1', NULL, '90101', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'resolution_370', 'false', 0, '1', NULL, '90102', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'cellGeometry_371', 'false', 0, '1', '002', '902', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'transformationParameterAvailability_372', 'false', 0, '1', '002', '903', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'referenceSystemInfo_38', 'false', 0, '1', NULL, 'a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'referenceSystemIdentifier_401', 'true', 0, '1', NULL, 'a000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'code_417', 'true', 0, '1', NULL, 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'citation_47', 'true', 0, '1', NULL, 'b070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'abstract_70', 'true', 0, '1', NULL, 'b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'credit_49', 'false', 1, '1', NULL, 'b01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'status_50', 'false', 1, '1', NULL, 'b02', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'language_60', 'true', 0, '62', 'fra', 'b030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'characterSet_61', 'true', 0, '1', 'fra', 'b04', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'topicCategory_62', 'true', 0, '5', NULL, 'b050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'descriptiveKeywords_55', 'true', 0, '5', NULL, 'b060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'keyword_269', 'true', 0, '1', NULL, 'b0600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'title_84', 'true', 0, '1', NULL, 'b0700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'date_86', 'true', 0, '1', NULL, 'b07010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'date_79', 'true', 0, '1', NULL, 'b070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dateType_80', 'true', 0, '1', '001', 'b070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'presentationForm_92', 'true', 0, '1', '018', 'b0702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'organisationName_164', 'true', 0, '1', NULL, 'b070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'role_167', 'true', 0, '1', '002', 'b070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'deliveryPoint_178', 'false', 1, '1', NULL, 'b0703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'city_179', 'false', 1, '1', NULL, 'b0703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'postalCode_181', 'false', 1, '1', NULL, 'b0703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'country_182', 'false', 1, '1', NULL, 'b0703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'electronicMailAddress_183', 'true', 1, '3', NULL, 'b07030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'linkage_185', 'false', 1, '1', NULL, 'b0703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'spatialRepresentationType_58', 'true', 0, '1', '002', 'b08', 3, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'spatialResolution_59', 'false', 0, '1', NULL, 'b090', 4, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'distance_122', 'true', 0, '1', NULL, 'b0900', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'extent_66', 'true', 0, '1', NULL, 'b0a0', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'geographicElement_141', 'true', 0, '2', NULL, 'b0a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'westBoundLongitude_126', 'true', 0, '1', '-180', 'b0a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'eastBoundLongitude_127', 'true', 0, '1', '180', 'b0a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'northBoundLatitude_129', 'true', 0, '1', '90', 'b0a0002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'southBoundLatitude_128', 'true', 0, '1', '-90', 'b0a0003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'geographicElement_506', 'true', 0, '2', NULL, 'b0a010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'geographicIdentifier_130', 'true', 0, '1', NULL, 'b0a01000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', 'b0a010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'temporalElement_142', 'false', 0, '1', NULL, 'b0a020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'extent_146', 'false', 0, '1', NULL, 'b0a02000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'beginPosition_502', 'false', 0, '1', NULL, 'b0a020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'endPosition_504', 'false', 0, '1', NULL, 'b0a020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'resourceFormat_54', 'true', 0, '62', NULL, 'b0b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'name_221', 'true', 0, '1', NULL, 'b0b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'version_222', 'true', 0, '1', NULL, 'b0b01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'fileName_510', 'false', 2, '1', NULL, 'b0c00', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'fileType_511', 'false', 2, '1', NULL, 'b0c01', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'distributionFormat_134', 'false', 1, '62', NULL, 'c000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'name_119', 'false', 1, '1', NULL, 'c0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'version_120', 'false', 1, '1', NULL, 'c0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'organisationName_312', 'false', 1, '1', NULL, 'c010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'role_315', 'false', 1, '1', '005', 'c010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'deliveryPoint_327', 'false', 1, '1', NULL, 'c0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'city_328', 'false', 1, '1', NULL, 'c0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'postalCode_330', 'false', 1, '1', NULL, 'c0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'country_331', 'false', 1, '1', NULL, 'c0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'c01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'linkage_456', 'false', 1, '1', NULL, 'c0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'transferOptions_136', 'true', 1, '62', NULL, 'c020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'transferSize_290', 'false', 1, '1', NULL, 'c0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'onLine_291', 'false', 1, '62', NULL, 'c02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'linkage_300', 'false', 1, '1', NULL, 'c020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'offLine_293', 'false', 1, '1', NULL, 'c02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'name_295', 'false', 1, '1', '019', 'c020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'density_296', 'false', 1, '62', NULL, 'c0202010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'volumes_298', 'false', 1, '1', NULL, 'c020202', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'mediumFormat_299', 'false', 1, '62', '007', 'c0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'd0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'scope_436', 'false', 1, '1', NULL, 'd000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'level_442', 'false', 1, '1', '010', 'd0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'lineage_438', 'false', 1, '1', NULL, 'd010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'statement_448', 'false', 1, '1', NULL, 'd0100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'contact_8', 'true', 4, '1', NULL, '80', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'contactInfo_13', 'true', 4, '1', NULL, '8020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'address_18', 'true', 4, '1', NULL, '802000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'onlineResource_25', 'false', 4, '1', NULL, '802010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'identificationInfo_36', 'true', 0, '1', NULL, 'b0', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'citedResponsibleParty_91', 'true', 4, '1', NULL, 'b07030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'contactInfo_166', 'true', 4, '1', NULL, 'b0703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'address_170', 'true', 4, '1', NULL, 'b070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'onlineResource_171', 'false', 4, '1', NULL, 'b070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'graphicOverview_508', 'false', 4, '62', NULL, 'b0c0', -1, 5, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'distributionInfo_41', 'false', 1, '1', NULL, 'c0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'distributor_135', 'false', 4, '1', NULL, 'c010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'distributorContact_276', 'false', 4, '62', NULL, 'c01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'contactInfo_314', 'false', 4, '1', NULL, 'c0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'address_318', 'false', 4, '1', NULL, 'c010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_raster', 'onlineResource_319', 'false', 4, '1', NULL, 'c010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'parentIdentifier_5', 'false', 0, '62', NULL, '10', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'language_3', 'true', 0, '1', 'fra', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'characterSet_4', 'true', 0, '1', 'fra', '3', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'dateStamp_9', 'true', 0, '1', NULL, '6', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'dataSetURI_268', 'false', 1, '1', NULL, '7', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'organisationName_11', 'true', 0, '1', NULL, '800', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'role_14', 'true', 0, '1', '002', '801', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'deliveryPoint_19', 'false', 1, '1', NULL, '8020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'city_20', 'false', 1, '1', NULL, '8020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'postalCode_22', 'false', 1, '1', NULL, '8020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'country_23', 'false', 1, '1', NULL, '8020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'electronicMailAddress_24', 'true', 1, '3', NULL, '80200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'linkage_26', 'false', 1, '1', NULL, '8020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'spatialRepresentationInfo_37', 'true', 0, '1', NULL, '90', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'topologyLevel_397', 'true', 0, '1', '001', '900', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geometricObjects_398', 'true', 0, '1', NULL, '9010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geometricObjectType_464', 'true', 0, '1', '004', '90100', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geometricObjectCount_465', 'false', 0, '1', NULL, '90101', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'referenceSystemInfo_38', 'false', 0, '1', NULL, 'a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'referenceSystemIdentifier_401', 'true', 0, '1', NULL, 'a000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'code_417', 'true', 0, '1', NULL, 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'abstract_70', 'true', 0, '1', NULL, 'b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'credit_49', 'false', 1, '1', NULL, 'b01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'status_50', 'false', 1, '1', NULL, 'b02', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'language_60', 'true', 0, '62', 'fra', 'b030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'characterSet_61', 'true', 0, '1', 'fra', 'b04', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'topicCategory_62', 'true', 0, '5', NULL, 'b050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'descriptiveKeywords_55', 'true', 0, '5', NULL, 'b060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'keyword_269', 'true', 0, '1', NULL, 'b0600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'citation_47', 'true', 0, '1', NULL, 'b070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'title_84', 'true', 0, '1', NULL, 'b0700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'date_86', 'true', 0, '1', NULL, 'b07010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'date_79', 'true', 0, '1', NULL, 'b070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'dateType_80', 'true', 0, '1', '001', 'b070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'presentationForm_92', 'true', 0, '1', '017', 'b0702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'organisationName_164', 'true', 0, '1', NULL, 'b070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'role_167', 'true', 0, '1', '002', 'b070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'deliveryPoint_178', 'false', 1, '1', NULL, 'b0703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'city_179', 'false', 1, '1', NULL, 'b0703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'postalCode_181', 'false', 1, '1', NULL, 'b0703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'country_182', 'false', 1, '1', NULL, 'b0703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'electronicMailAddress_183', 'true', 1, '3', NULL, 'b07030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'linkage_185', 'false', 1, '1', NULL, 'b0703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'spatialRepresentationType_58', 'true', 0, '1', '001', 'b08', 3, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'spatialResolution_59', 'false', 0, '1', NULL, 'b090', 4, 2, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'equivalentScale_121', 'false', 0, '1', NULL, 'b09000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'denominator_124', 'false', 0, '1', NULL, 'b090000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'extent_66', 'true', 0, '1', NULL, 'b0a0', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geographicElement_141', 'true', 0, '2', NULL, 'b0a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'westBoundLongitude_126', 'true', 0, '1', '-180', 'b0a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'eastBoundLongitude_127', 'true', 0, '1', '180', 'b0a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'northBoundLatitude_129', 'true', 0, '1', '90', 'b0a0002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'southBoundLatitude_128', 'true', 0, '1', '-90', 'b0a0003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geographicElement_506', 'true', 0, '2', NULL, 'b0a010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'geographicIdentifier_130', 'true', 0, '1', NULL, 'b0a01000', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', 'b0a010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'temporalElement_142', 'false', 0, '1', NULL, 'b0a020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'extent_146', 'false', 0, '1', NULL, 'b0a02000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'beginPosition_502', 'false', 0, '1', NULL, 'b0a020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'endPosition_504', 'false', 0, '1', NULL, 'b0a020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'resourceFormat_54', 'true', 0, '62', NULL, 'b0b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'name_221', 'true', 0, '1', NULL, 'b0b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'version_222', 'true', 0, '1', NULL, 'b0b01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'fileName_510', 'false', 2, '1', NULL, 'b0c00', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'fileType_511', 'false', 2, '1', NULL, 'b0c01', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'distributionFormat_134', 'false', 1, '62', NULL, 'c000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'name_119', 'false', 1, '1', NULL, 'c0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'version_120', 'false', 1, '1', NULL, 'c0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'organisationName_312', 'false', 1, '1', NULL, 'c010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'role_315', 'false', 1, '1', '005', 'c010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'deliveryPoint_327', 'false', 1, '1', NULL, 'c0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'city_328', 'false', 1, '1', NULL, 'c0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'postalCode_330', 'false', 1, '1', NULL, 'c0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'country_331', 'false', 1, '1', NULL, 'c0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'c01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'linkage_456', 'false', 1, '1', NULL, 'c0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'transferOptions_136', 'true', 1, '62', NULL, 'c020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'transferSize_290', 'false', 1, '1', NULL, 'c0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'onLine_291', 'false', 1, '62', NULL, 'c02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'linkage_300', 'false', 1, '1', NULL, 'c020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'offLine_293', 'false', 1, '1', NULL, 'c02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'name_295', 'false', 1, '1', '019', 'c020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'density_296', 'false', 1, '62', NULL, 'c0202010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'volumes_298', 'false', 1, '1', NULL, 'c020202', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'mediumFormat_299', 'false', 1, '62', '007', 'c0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'd0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'scope_436', 'false', 1, '1', NULL, 'd000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'level_442', 'false', 1, '1', '010', 'd0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'lineage_438', 'false', 1, '1', NULL, 'd010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'statement_448', 'false', 1, '1', NULL, 'd0100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'contact_8', 'true', 4, '1', NULL, '80', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'contactInfo_13', 'true', 4, '1', NULL, '8020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'address_18', 'true', 4, '1', NULL, '802000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'onlineResource_25', 'false', 4, '1', NULL, '802010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'distributor_135', 'false', 4, '1', NULL, 'c010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'identificationInfo_36', 'true', 0, '1', NULL, 'b0', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'citedResponsibleParty_91', 'true', 4, '1', NULL, 'b07030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'contactInfo_166', 'true', 4, '1', NULL, 'b0703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'address_170', 'true', 4, '1', NULL, 'b070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'onlineResource_171', 'false', 4, '1', NULL, 'b070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'graphicOverview_508', 'false', 4, '62', NULL, 'b0c0', -1, 5, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'distributionInfo_41', 'false', 1, '1', NULL, 'c0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'distributorContact_276', 'false', 4, '62', NULL, 'c01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'contactInfo_314', 'false', 4, '1', NULL, 'c0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'address_318', 'false', 4, '1', NULL, 'c010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('couche_vecteur', 'onlineResource_319', 'false', 4, '1', NULL, 'c010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'parentIdentifier_5', 'false', 0, '62', NULL, '10', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'characterSet_4', 'true', 0, '1', '006', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'language_3', 'true', 0, '1', 'fra', '3', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'dateStamp_9', 'true', 0, '1', NULL, '6', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'dataSetURI_268', 'false', 1, '1', NULL, '7', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'organisationName_11', 'true', 0, '1', NULL, '800', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'role_14', 'true', 0, '1', '002', '801', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'deliveryPoint_19', 'false', 1, '1', NULL, '8020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'city_20', 'false', 1, '1', NULL, '8020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'postalCode_22', 'false', 1, '1', NULL, '8020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'country_23', 'false', 1, '1', NULL, '8020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'electronicMailAddress_24', 'true', 1, '3', NULL, '80200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'linkage_26', 'false', 1, '1', NULL, '8020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'abstract_70', 'true', 0, '1', NULL, '900', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'credit_49', 'false', 1, '1', NULL, '901', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'status_50', 'false', 1, '1', NULL, '902', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'language_60', 'true', 0, '62', 'fra', '9030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'characterSet_61', 'true', 0, '1', 'fra', '904', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'topicCategory_62', 'true', 0, '5', NULL, '9050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '9060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'keyword_269', 'true', 0, '1', NULL, '90600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'citation_47', 'true', 0, '1', NULL, '9070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'title_84', 'true', 0, '1', NULL, '90700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'date_86', 'true', 0, '1', NULL, '907010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'date_79', 'true', 0, '1', NULL, '9070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'dateType_80', 'true', 0, '1', '001', '9070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'presentationForm_92', 'true', 0, '1', '011', '90702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'organisationName_164', 'true', 0, '1', NULL, '9070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'role_167', 'true', 0, '1', '002', '9070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'deliveryPoint_178', 'false', 1, '1', NULL, '90703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'city_179', 'false', 1, '1', NULL, '90703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'postalCode_181', 'false', 1, '1', NULL, '90703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'country_182', 'false', 1, '1', NULL, '90703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'electronicMailAddress_183', 'true', 1, '3', NULL, '907030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'linkage_185', 'false', 1, '1', NULL, '90703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'extent_66', 'true', 0, '1', NULL, '9080', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'geographicElement_141', 'true', 0, '2', NULL, '908000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'westBoundLongitude_126', 'true', 0, '1', '-180', '9080000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'eastBoundLongitude_127', 'true', 0, '1', '180', '9080001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'northBoundLatitude_129', 'true', 0, '1', '90', '9080002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'southBoundLatitude_128', 'true', 0, '1', '-90', '9080003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'geographicElement_506', 'true', 0, '2', NULL, '908010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'geographicIdentifier_130', 'true', 0, '1', NULL, '90801000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '908010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'temporalElement_142', 'false', 0, '1', NULL, '908020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'extent_146', 'false', 0, '1', NULL, '90802000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'beginPosition_502', 'false', 0, '1', NULL, '908020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'endPosition_504', 'false', 0, '1', NULL, '908020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'resourceFormat_54', 'true', 0, '62', NULL, '9090', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'name_221', 'true', 0, '1', NULL, '90900', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'version_222', 'true', 0, '1', NULL, '90901', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'dataQualityInfo_42', 'false', 1, '1', NULL, 'a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'scope_436', 'false', 1, '1', NULL, 'a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'level_442', 'false', 1, '1', '010', 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'lineage_438', 'false', 1, '1', NULL, 'a010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'statement_448', 'false', 1, '1', NULL, 'a0100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'distributionFormat_134', 'false', 1, '62', NULL, 'b000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'name_119', 'false', 1, '1', NULL, 'b0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'version_120', 'false', 1, '1', NULL, 'b0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'organisationName_312', 'false', 1, '1', NULL, 'b010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'role_315', 'false', 1, '1', '005', 'b010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'deliveryPoint_327', 'false', 1, '1', NULL, 'b0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'city_328', 'false', 1, '1', NULL, 'b0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'postalCode_330', 'false', 1, '1', NULL, 'b0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'country_331', 'false', 1, '1', NULL, 'b0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'b01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'linkage_456', 'false', 1, '1', NULL, 'b0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'transferOptions_136', 'true', 1, '62', NULL, 'b020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'transferSize_290', 'false', 1, '1', NULL, 'b0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'onLine_291', 'false', 1, '62', NULL, 'b02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'linkage_300', 'false', 1, '1', NULL, 'b020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'offLine_293', 'false', 1, '1', NULL, 'b02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'name_295', 'false', 1, '1', '019', 'b020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'density_296', 'false', 1, '62', NULL, 'b0202010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'volumes_298', 'false', 1, '1', NULL, 'b020202', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'mediumFormat_299', 'false', 1, '62', '007', 'b0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'contact_8', 'true', 4, '1', NULL, '80', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'contactInfo_13', 'true', 4, '1', NULL, '8020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'address_18', 'true', 4, '1', NULL, '802000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'onlineResource_25', 'false', 4, '1', NULL, '802010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'identificationInfo_36', 'true', 0, '1', NULL, '90', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '907030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'contactInfo_166', 'true', 4, '1', NULL, '90703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'address_170', 'true', 4, '1', NULL, '9070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'onlineResource_171', 'false', 4, '1', NULL, '9070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'distributionInfo_41', 'false', 1, '1', NULL, 'b0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'distributor_135', 'false', 4, '1', NULL, 'b010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'distributorContact_276', 'false', 4, '62', NULL, 'b01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'contactInfo_314', 'false', 4, '1', NULL, 'b0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'address_318', 'false', 4, '1', NULL, 'b010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('table_num', 'onlineResource_319', 'false', 4, '1', NULL, 'b010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'characterSet_4', 'true', 0, '1', 'fra', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'abstract_70', 'true', 0, '1', NULL, '800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'credit_49', 'false', 1, '1', NULL, '801', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'status_50', 'false', 1, '1', NULL, '802', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'language_60', 'true', 0, '62', 'fra', '8030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'characterSet_61', 'true', 0, '1', 'fra', '804', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'topicCategory_62', 'true', 0, '5', NULL, '8050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '8060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'keyword_269', 'true', 0, '1', NULL, '80600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'citation_47', 'true', 0, '1', NULL, '8070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'title_84', 'true', 0, '1', NULL, '80700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'date_86', 'true', 0, '1', NULL, '807010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'date_79', 'true', 0, '1', NULL, '8070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'dateType_80', 'true', 0, '1', '001', '8070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'presentationForm_92', 'true', 0, '1', '016', '80702', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'organisationName_164', 'true', 0, '1', NULL, '8070300', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'role_167', 'true', 0, '1', '002', '8070301', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'deliveryPoint_178', 'false', 1, '1', NULL, '80703020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'city_179', 'false', 1, '1', NULL, '80703020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'postalCode_181', 'false', 1, '1', NULL, '80703020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'country_182', 'false', 1, '1', NULL, '80703020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'electronicMailAddress_183', 'true', 1, '3', NULL, '807030200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'linkage_185', 'false', 1, '1', NULL, '80703020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'resourceMaintenance_52', 'false', 1, '1', NULL, '8080', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '80800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'extent_66', 'true', 0, '1', NULL, '8090', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'geographicElement_141', 'true', 0, '2', NULL, '809000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'westBoundLongitude_126', 'true', 0, '1', '-180', '8090000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'eastBoundLongitude_127', 'true', 0, '1', '180', '8090001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'northBoundLatitude_129', 'true', 0, '1', '90', '8090002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'southBoundLatitude_128', 'true', 0, '1', '-90', '8090003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'geographicElement_506', 'true', 0, '2', NULL, '809010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'geographicIdentifier_130', 'true', 0, '1', NULL, '80901000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '809010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'temporalElement_142', 'false', 0, '1', NULL, '809020', -1, -1, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'extent_146', 'false', 0, '1', NULL, '80902000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'beginPosition_502', 'false', 0, '1', NULL, '809020000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'endPosition_504', 'false', 0, '1', NULL, '809020001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'resourceFormat_54', 'true', 0, '62', NULL, '80a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'name_221', 'true', 0, '1', NULL, '80a00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'version_222', 'true', 0, '1', NULL, '80a01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'resourceConstraints_57', 'false', 1, '1', NULL, '80b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'useLimitation_259', 'false', 1, '1', NULL, '80b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'accessConstraints_260', 'false', 1, '62', '008', '80b010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'useConstraints_261', 'false', 1, '62', '008', '80b020', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'otherConstraints_262', 'false', 1, '1', NULL, '80b03', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'dataQualityInfo_42', 'false', 1, '1', NULL, '90', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'scope_436', 'false', 1, '1', NULL, '9000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'level_442', 'false', 1, '1', '005', '90000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'lineage_438', 'false', 1, '1', NULL, '9010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'statement_448', 'false', 1, '1', NULL, '90100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'distributionFormat_134', 'false', 1, '62', NULL, 'a000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'name_119', 'false', 1, '1', NULL, 'a0000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'version_120', 'false', 1, '1', NULL, 'a0001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'organisationName_312', 'false', 1, '1', NULL, 'a010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'role_315', 'false', 1, '1', '005', 'a010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'deliveryPoint_327', 'false', 1, '1', NULL, 'a0100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'city_328', 'false', 1, '1', NULL, 'a0100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'postalCode_330', 'false', 1, '1', NULL, 'a0100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'country_331', 'false', 1, '1', NULL, 'a0100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'electronicMailAddress_332', 'false', 1, '3', NULL, 'a01000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'linkage_456', 'false', 1, '1', NULL, 'a0100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'transferOptions_136', 'true', 1, '62', NULL, 'a020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'transferSize_290', 'false', 1, '1', NULL, 'a0200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'onLine_291', 'false', 1, '62', NULL, 'a02010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'linkage_300', 'false', 1, '1', NULL, 'a020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'offLine_293', 'false', 1, '1', NULL, 'a02020', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'name_295', 'false', 1, '1', '019', 'a020200', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'density_296', 'false', 1, '62', NULL, 'a0202010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'volumes_298', 'false', 1, '1', NULL, 'a020202', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'mediumFormat_299', 'false', 1, '62', '007', 'a0202030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'identificationInfo_36', 'true', 0, '1', NULL, '80', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '807030', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'contactInfo_166', 'true', 4, '1', NULL, '80703020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'address_170', 'true', 4, '1', NULL, '8070302000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'onlineResource_171', 'false', 4, '1', NULL, '8070302010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'distributionInfo_41', 'false', 1, '1', NULL, 'a0', 3, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'distributor_135', 'false', 4, '1', NULL, 'a010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'distributorContact_276', 'false', 4, '62', NULL, 'a01000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'contactInfo_314', 'false', 4, '1', NULL, 'a0100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'address_318', 'false', 4, '1', NULL, 'a010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('base_alpha', 'onlineResource_319', 'false', 4, '1', NULL, 'a010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'characterSet_4', 'true', 0, '1', '006', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'abstract_70', 'true', 0, '1', NULL, '800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'credit_49', 'true', 0, '62', NULL, '8010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'status_50', 'false', 1, '1', NULL, '802', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'language_60', 'true', 0, '62', 'fra', '8030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'characterSet_61', 'true', 0, '1', '006', '804', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'topicCategory_62', 'true', 0, '5', NULL, '8050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '8060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'keyword_269', 'true', 0, '1', NULL, '80600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'citation_47', 'true', 0, '1', NULL, '8070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'title_84', 'true', 0, '1', NULL, '80700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'date_86', 'true', 0, '1', NULL, '807010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'date_79', 'true', 0, '1', NULL, '8070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'dateType_80', 'true', 0, '1', '001', '8070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'edition_87', 'false', 1, '1', NULL, '80702', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'presentationForm_92', 'true', 0, '1', '001', '80703', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'series_93', 'false', 0, '1', NULL, '807040', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'name_81', 'false', 0, '1', NULL, '8070400', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'page_83', 'false', 1, '1', NULL, '8070401', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'ISBN_96', 'false', 0, '1', NULL, '80705', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'organisationName_164', 'true', 0, '1', NULL, '8070600', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'role_167', 'true', 0, '1', '002', '8070601', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'deliveryPoint_178', 'false', 1, '1', NULL, '80706020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'city_179', 'false', 1, '1', NULL, '80706020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'postalCode_181', 'false', 1, '1', NULL, '80706020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'country_182', 'false', 1, '1', NULL, '80706020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'electronicMailAddress_183', 'true', 1, '3', NULL, '807060200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'linkage_185', 'false', 1, '1', NULL, '80706020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'ISSN_97', 'false', 0, '1', NULL, '80707', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'collectiveTitle_95', 'false', 1, '1', NULL, '80708', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'resourceMaintenance_52', 'false', 1, '1', NULL, '8080', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '80800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'extent_66', 'true', 0, '1', NULL, '8090', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'geographicElement_141', 'true', 0, '2', NULL, '809000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'westBoundLongitude_126', 'true', 0, '1', '-180', '8090000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'eastBoundLongitude_127', 'true', 0, '1', '180', '8090001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'northBoundLatitude_129', 'true', 0, '1', '90', '8090002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'southBoundLatitude_128', 'true', 0, '1', '-90', '8090003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'geographicElement_506', 'true', 0, '2', NULL, '809010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'geographicIdentifier_130', 'true', 0, '1', NULL, '80901000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '809010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'resourceFormat_54', 'false', 0, '1', NULL, '80a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'name_221', 'false', 0, '1', NULL, '80a00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'version_222', 'false', 0, '1', NULL, '80a01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'resourceConstraints_57', 'false', 1, '1', NULL, '80b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'useLimitation_259', 'false', 1, '1', NULL, '80b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'accessConstraints_260', 'false', 1, '62', '008', '80b010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'useConstraints_261', 'false', 1, '62', '008', '80b020', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'otherConstraints_262', 'false', 1, '1', NULL, '80b03', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'distributionFormat_134', 'false', 1, '62', NULL, '9000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'name_119', 'false', 1, '1', NULL, '90000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'version_120', 'false', 1, '1', NULL, '90001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'organisationName_312', 'false', 1, '1', NULL, '9010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'role_315', 'false', 1, '1', '005', '9010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'deliveryPoint_327', 'false', 1, '1', NULL, '90100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'city_328', 'false', 1, '1', NULL, '90100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'postalCode_330', 'false', 1, '1', NULL, '90100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'country_331', 'false', 1, '1', NULL, '90100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'electronicMailAddress_332', 'false', 1, '3', NULL, '901000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'linkage_456', 'false', 1, '1', NULL, '90100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'transferSize_290', 'false', 1, '1', NULL, '90200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'onLine_291', 'false', 1, '62', NULL, '902010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'linkage_300', 'false', 1, '1', NULL, '9020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'identificationInfo_36', 'true', 0, '1', NULL, '80', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '807060', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'contactInfo_166', 'true', 4, '1', NULL, '80706020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'address_170', 'true', 4, '1', NULL, '8070602000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'onlineResource_171', 'false', 4, '1', NULL, '8070602010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'distributionInfo_41', 'false', 1, '1', NULL, '90', 6, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'distributor_135', 'false', 4, '1', NULL, '9010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'distributorContact_276', 'false', 4, '62', NULL, '901000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'contactInfo_314', 'false', 4, '1', NULL, '90100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'address_318', 'false', 4, '1', NULL, '9010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'onlineResource_319', 'false', 4, '1', NULL, '9010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_biblio', 'transferOptions_136', 'true', 1, '62', NULL, '9020', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'fileIdentifier_2', 'true', 0, '1', NULL, '0', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'characterSet_4', 'true', 0, '1', '006', '2', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'metadataStandardVersion_35', 'true', 0, '1', 'FRA 1.0', '4', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'dateStamp_9', 'true', 0, '1', NULL, '5', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'dataSetURI_268', 'false', 1, '1', NULL, '6', 0, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'organisationName_11', 'true', 0, '1', NULL, '700', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'role_14', 'true', 0, '1', '002', '701', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'deliveryPoint_19', 'false', 1, '1', NULL, '7020000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'city_20', 'false', 1, '1', NULL, '7020001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'postalCode_22', 'false', 1, '1', NULL, '7020002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'country_23', 'false', 1, '1', NULL, '7020003', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'electronicMailAddress_24', 'true', 1, '3', NULL, '70200040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'linkage_26', 'false', 1, '1', NULL, '7020100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'abstract_70', 'true', 0, '1', NULL, '800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'credit_49', 'true', 0, '62', NULL, '8010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'status_50', 'false', 1, '1', NULL, '802', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'language_60', 'true', 0, '62', 'fra', '8030', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'characterSet_61', 'true', 0, '1', '006', '804', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'topicCategory_62', 'true', 0, '5', NULL, '8050', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'descriptiveKeywords_55', 'true', 0, '5', NULL, '8060', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'keyword_269', 'true', 0, '1', NULL, '80600', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'citation_47', 'true', 0, '1', NULL, '8070', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'title_84', 'true', 0, '1', NULL, '80700', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'date_86', 'true', 0, '1', NULL, '807010', 5, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'date_79', 'true', 0, '1', NULL, '8070100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'dateType_80', 'true', 0, '1', '001', '8070101', 1, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'edition_87', 'false', 1, '1', NULL, '80702', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'presentationForm_92', 'true', 0, '1', '001', '80703', 0, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'series_93', 'false', 0, '1', NULL, '807040', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'name_81', 'false', 0, '1', NULL, '8070400', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'page_83', 'false', 1, '1', NULL, '8070401', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'ISBN_96', 'false', 0, '1', NULL, '80705', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'organisationName_164', 'true', 0, '1', NULL, '8070600', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'role_167', 'true', 0, '1', '002', '8070601', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'deliveryPoint_178', 'false', 1, '1', NULL, '80706020000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'city_179', 'false', 1, '1', NULL, '80706020001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'postalCode_181', 'false', 1, '1', NULL, '80706020002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'country_182', 'false', 1, '1', NULL, '80706020003', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'electronicMailAddress_183', 'true', 1, '3', NULL, '807060200040', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'linkage_185', 'false', 1, '1', NULL, '80706020100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'ISSN_97', 'false', 0, '1', NULL, '80707', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'collectiveTitle_95', 'false', 1, '1', NULL, '80708', NULL, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'resourceMaintenance_52', 'false', 1, '1', NULL, '8080', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'maintenanceAndUpdateFrequency_238', 'false', 1, '1', '012', '80800', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'extent_66', 'true', 0, '1', NULL, '8090', -1, 2, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'geographicElement_141', 'true', 0, '2', NULL, '809000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'westBoundLongitude_126', 'true', 0, '1', '-180', '8090000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'eastBoundLongitude_127', 'true', 0, '1', '180', '8090001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'northBoundLatitude_129', 'true', 0, '1', '90', '8090002', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'southBoundLatitude_128', 'true', 0, '1', '-90', '8090003', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'geographicElement_506', 'true', 0, '2', NULL, '809010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'geographicIdentifier_130', 'true', 0, '1', NULL, '80901000', -1, NULL, -1, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'code_133', 'true', 0, '1', 'N_90_E_180_S_-90_E-180', '809010000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'resourceFormat_54', 'false', 0, '1', NULL, '80a0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'name_221', 'false', 0, '1', NULL, '80a00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'version_222', 'false', 0, '1', NULL, '80a01', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'resourceConstraints_57', 'false', 1, '1', NULL, '80b0', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'useLimitation_259', 'false', 1, '1', NULL, '80b00', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'accessConstraints_260', 'false', 1, '62', '008', '80b010', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'useConstraints_261', 'false', 1, '62', '008', '80b020', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'otherConstraints_262', 'false', 1, '1', NULL, '80b03', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'distributionFormat_134', 'false', 1, '62', NULL, '9000', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'name_119', 'false', 1, '1', NULL, '90000', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'version_120', 'false', 1, '1', NULL, '90001', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'organisationName_312', 'false', 1, '1', NULL, '9010000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'role_315', 'false', 1, '1', '005', '9010001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'deliveryPoint_327', 'false', 1, '1', NULL, '90100020000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'city_328', 'false', 1, '1', NULL, '90100020001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'postalCode_330', 'false', 1, '1', NULL, '90100020002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'country_331', 'false', 1, '1', NULL, '90100020003', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'electronicMailAddress_332', 'false', 1, '3', NULL, '901000200040', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'linkage_456', 'false', 1, '1', NULL, '90100020100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'transferSize_290', 'false', 1, '1', NULL, '90200', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'onLine_291', 'false', 1, '62', NULL, '902010', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'linkage_300', 'false', 1, '1', NULL, '9020100', 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'contact_8', 'true', 4, '1', NULL, '70', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'contactInfo_13', 'true', 4, '1', NULL, '7020', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'address_18', 'true', 4, '1', NULL, '702000', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'onlineResource_25', 'false', 4, '1', NULL, '702010', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'identificationInfo_36', 'true', 0, '1', NULL, '80', 3, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '807060', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'contactInfo_166', 'true', 4, '1', NULL, '80706020', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'address_170', 'true', 4, '1', NULL, '8070602000', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'onlineResource_171', 'false', 4, '1', NULL, '8070602010', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'distributionInfo_41', 'false', 1, '1', NULL, '90', 6, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'distributor_135', 'false', 4, '1', NULL, '9010', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'distributorContact_276', 'false', 4, '62', NULL, '901000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'contactInfo_314', 'false', 4, '1', NULL, '90100020', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'address_318', 'false', 4, '1', NULL, '9010002000', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'onlineResource_319', 'false', 4, '1', NULL, '9010002010', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('doc_texte_num', 'transferOptions_136', 'true', 1, '62', NULL, '9020', 4, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'MD_Metadata_1', 'true', 0, '1', NULL, NULL, 3, NULL, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'individualName_10', 'false', 0, '1', NULL, '000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'organisationName_11', 'true', 0, '1', NULL, '001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'positionName_12', 'false', 0, '1', NULL, '002', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'voice_16', 'false', 1, '1', NULL, '0030000', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'facsimile_17', 'false', 1, '1', NULL, '0030001', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'deliveryPoint_19', 'false', 1, '1', NULL, '0030100', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'city_20', 'false', 1, '1', NULL, '0030101', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'administrativeArea_21', 'false', 1, '1', NULL, '0030102', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'postalCode_22', 'false', 1, '1', NULL, '0030103', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'country_23', 'false', 1, '1', 'fr', '0030104', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'electronicMailAddress_24', 'true', 0, '5', NULL, '00301050', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'linkage_26', 'false', 0, '1', NULL, '0030200', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'protocol_27', 'false', 1, '1', NULL, '0030201', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'applicationProfile_28', 'false', 1, '1', NULL, '0030202', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'name_29', 'false', 1, '1', NULL, '0030203', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'description_30', 'false', 1, '1', NULL, '0030204', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'function_31', 'false', 1, '5', '002', '00302050', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'hoursOfService_32', 'false', 1, '1', NULL, '00303', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInstructions_33', 'false', 1, '1', NULL, '00304', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'role_14', 'true', 0, '5', '002', '0040', 2, NULL, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'individualName_163', 'false', 0, '1', NULL, '1000000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'organisationName_164', 'false', 0, '1', NULL, '1000001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'positionName_165', 'false', 0, '1', NULL, '1000002', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'voice_175', 'false', 1, '1', NULL, '10000030000', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'facsimile_176', 'false', 1, '1', NULL, '10000030001', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'deliveryPoint_178', 'false', 1, '1', NULL, '10000030100', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'city_179', 'false', 1, '1', NULL, '10000030101', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'administrativeArea_180', 'false', 1, '1', NULL, '10000030102', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'postalCode_181', 'false', 1, '1', NULL, '10000030103', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'country_182', 'false', 1, '1', 'fr', '10000030104', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'electronicMailAddress_183', 'true', 0, '5', NULL, '100000301050', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'linkage_185', 'false', 0, '1', NULL, '10000030200', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'protocol_186', 'false', 1, '1', NULL, '10000030201', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'applicationProfile_187', 'false', 1, '1', NULL, '10000030202', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'name_188', 'false', 1, '1', NULL, '10000030203', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'description_189', 'false', 1, '1', NULL, '10000030204', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'function_190', 'false', 1, '5', '002', '100000302050', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'hoursOfService_172', 'false', 1, '1', NULL, '100000303', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInstructions_173', 'false', 1, '1', NULL, '100000304', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'role_167', 'true', 0, '1', '002', '1000004', 2, NULL, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'individualName_192', 'false', 0, '1', NULL, '10100', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'organisationName_193', 'false', 0, '1', NULL, '10101', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'positionName_194', 'false', 0, '1', NULL, '10102', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'voice_204', 'false', 1, '1', NULL, '101030000', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'facsimile_205', 'false', 1, '1', NULL, '101030001', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'deliveryPoint_207', 'false', 1, '1', NULL, '101030100', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'city_208', 'false', 1, '1', NULL, '101030101', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'administrativeArea_209', 'false', 1, '1', NULL, '101030102', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'postalCode_210', 'false', 1, '1', NULL, '101030103', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'country_211', 'false', 1, '1', 'fr', '101030104', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'electronicMailAddress_212', 'true', 0, '5', NULL, '1010301050', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'linkage_214', 'false', 0, '1', NULL, '101030200', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'protocol_215', 'false', 1, '1', NULL, '101030201', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'applicationProfile_216', 'false', 1, '1', NULL, '101030202', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'name_217', 'false', 1, '1', NULL, '101030203', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'description_218', 'false', 1, '1', NULL, '101030204', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'function_219', 'false', 1, '5', '002', '1010302050', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'hoursOfService_201', 'false', 1, '1', NULL, '1010303', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInstructions_202', 'false', 1, '1', NULL, '1010304', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'role_196', 'true', 0, '1', '007', '10104', 2, NULL, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'individualName_311', 'false', 0, '1', NULL, '2000000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'organisationName_312', 'false', 0, '1', NULL, '2000001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'positionName_313', 'false', 0, '1', NULL, '2000002', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'voice_325', 'false', 1, '1', NULL, '20000030000', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'facsimile_326', 'false', 1, '1', NULL, '20000030001', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'deliveryPoint_327', 'false', 1, '1', NULL, '20000030100', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'city_328', 'false', 1, '1', NULL, '20000030101', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'administrativeArea_329', 'false', 1, '1', NULL, '20000030102', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'postalCode_330', 'false', 1, '1', NULL, '20000030103', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'country_331', 'false', 1, '1', 'fr', '20000030104', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'electronicMailAddress_332', 'true', 0, '5', NULL, '200000301050', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'linkage_456', 'false', 0, '1', NULL, '20000030200', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'protocol_457', 'false', 1, '1', NULL, '20000030201', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'applicationProfile_458', 'false', 1, '1', NULL, '20000030202', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'name_459', 'false', 1, '1', NULL, '20000030203', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'description_460', 'false', 1, '1', NULL, '20000030204', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'function_461', 'false', 1, '5', '002', '200000302050', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'hoursOfService_320', 'false', 1, '1', NULL, '200000303', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInstructions_321', 'false', 1, '1', NULL, '200000304', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'role_315', 'true', 0, '1', '005', '2000004', 2, NULL, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contact_8', 'true', 4, '1', NULL, '00', 2, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInfo_13', 'true', 4, '1', NULL, '0030', -1, -1, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'phone_15', 'false', 4, '1', NULL, '003000', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'address_18', 'true', 4, '1', NULL, '003010', -1, 6, -1, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'onlineResource_25', 'false', 4, '1', NULL, '003020', 2, 6, NULL, 'M', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'identificationInfo_36', 'true', 4, '1', NULL, '10', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'citation_47', 'true', 4, '1', NULL, '1000', 2, 1, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'citedResponsibleParty_91', 'true', 4, '1', NULL, '100000', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInfo_166', 'true', 4, '1', NULL, '10000030', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'phone_169', 'false', 4, '1', NULL, '1000003000', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'address_170', 'true', 4, '1', NULL, '1000003010', -1, 6, -1, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'onlineResource_171', 'false', 4, '1', NULL, '1000003020', 2, 6, NULL, 'R', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'pointOfContact_51', 'false', 4, '1', NULL, '1010', 2, 6, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInfo_195', 'false', 4, '1', NULL, '101030', 2, 6, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'phone_198', 'false', 4, '1', NULL, '10103000', 2, 6, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'address_199', 'true', 4, '1', NULL, '10103010', 2, 6, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'onlineResource_200', 'false', 4, '1', NULL, '10103020', 2, 6, NULL, 'R1', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'distributionInfo_41', 'true', 4, '1', NULL, '20', 2, 3, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'distributor_135', 'true', 4, '1', NULL, '2000', 2, 6, NULL, NULL, NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'distributorContact_276', 'false', 4, '62', NULL, '200000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'contactInfo_314', 'true', 4, '1', NULL, '20000030', -1, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'phone_317', 'false', 4, '1', NULL, '2000003000', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'address_318', 'true', 4, '1', NULL, '2000003010', 2, 6, -1, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('refer_gab_iso19115', 'onlineResource_319', 'false', 4, '1', NULL, '2000003020', 2, 6, NULL, 'D', NULL); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Address_75', 'true', 1, '1', '', '', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Contact_73', 'true', 1, '1', '', '', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_OnlineResource_77', 'false', 1, '1', '', '', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_ResponsibleParty_71', 'true', 0, '1', '', '', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_Metadata_1', 'true', 0, '1', '', '', 3, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_ServiceIdentification_69', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_ResponsibleParty_950', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Citation_949', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Date_927', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_Keywords_951', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_StandardOrderProcess_931', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_LegalConstraints_955', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'SV_OperationMetadata_935', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_OnlineResource_948', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Contact_952', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_Address_958', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_Distribution_105', 'false', 1, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_DigitalTransferOptions_138', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'CI_OnlineResource_292', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'EX_Extent_981', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'EX_TemporalExtent_1000', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'TM_Period_1002', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'EX_GeographicBoundingBox_984', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'EX_GeographicDescription_991', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'MD_Identifier_994', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'SV_CoupledResource_1014', 'false', 0, '1', '', NULL, NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'fileIdentifier_2', 'true', 0, '1', '', '0', 0, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'language_3', 'true', 0, '1', 'fra', '1', 1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'characterSet_4', 'true', 0, '1', '006', '2', 1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'metadataStandardName_34', 'true', 0, '1', 'ISO 19115 FRA 1.0', '3', 0, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'metadataStandardVersion_35', 'true', 0, '1', 'Document texte numérique', '4', 0, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'dateStamp_9', 'true', 0, '1', '', '5', 0, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'contact_8', 'true', 4, '1', '', '60', 2, 6, -1, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'organisationName_11', 'true', 0, '1', '', '600', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'role_14', 'true', 0, '1', '002', '601', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'contactInfo_13', 'true', 4, '1', '', '6020', -1, -1, -1, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'address_18', 'true', 4, '1', '', '602000', -1, 6, -1, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'deliveryPoint_19', 'false', 1, '1', '', '6020000', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'city_20', 'false', 1, '1', '', '6020001', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'postalCode_22', 'false', 1, '1', '', '6020002', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'country_23', 'false', 1, '1', '', '6020003', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'electronicMailAddress_24', 'true', 1, '3', '', '60200040', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'onlineResource_25', 'false', 4, '1', '', '602010', 2, 6, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'linkage_26', 'false', 1, '1', '', '6020100', 2, NULL, NULL, 'M', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'identificationInfo_36', 'true', 0, '1', '', '70', 4, 1, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'citation_936', 'true', 0, '1', '', '7000', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'title_924', 'true', 0, '1', '', '70000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'datec_926', 'true', 0, '1', '', '700010', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'date_928', 'true', 0, '1', '', '7000100', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'dateType_929', 'true', 0, '1', '001', '7000101', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'abstract_963', 'true', 0, '1', '', '701', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'credit_938', 'false', 1, '5', '', '7020', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'status_940', 'false', 1, '1', '001', '703', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'pointOfContact_941', 'true', 1, '10', '', '7040', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'organisationName_949', 'false', 1, '1', '', '70400', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'contactInfo_951', 'false', 1, '1', '', '704010', -1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'address_957', 'false', 1, '1', '', '70401000', -1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'electronicMailAddress_964', 'true', 1, '5', '', '7040100000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'role_975', 'true', 1, '1', '007', '70402', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'descriptiveKeywords_942', 'true', 0, '1', '', '7050', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'keyword_952', 'true', 0, '5', '', '705000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'serviceType_925', 'true', 0, '1', '', '706', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'serviceTypeVersion_926', 'false', 0, '1', '', '707', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'restrictions_932', 'true', 1, '1', '', '7080', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'useLimitation_969', 'false', 1, '1', '', '70800', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'accessConstraints_970', 'false', 1, '1', '006', '70801', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'useConstraints_971', 'false', 1, '1', '006', '70802', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'accessProperties_930', 'false', 1, '1', '', '7090', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'fees_964', 'false', 1, '1', '', '70900', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'plannedAvailableDateTime_965', 'false', 1, '1', '', '70901', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'orderingInstructions_966', 'false', 1, '1', '', '70902', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'turnaround_967', 'false', 1, '1', '', '70903', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'containsOperations_934', 'false', 0, '10', '', '70a0', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'operationName_943', 'true', 0, '1', '', '70a00', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'DCP_944', 'false', 0, '1', '006', '70a01', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'operationDescription_945', 'false', 1, '1', '', '70a02', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'invocationName_946', 'false', 1, '1', '', '70a03', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'connectPoint_947', 'false', 1, '1', '', '70a040', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'linkage_958', 'false', 1, '1', '', '70a0400', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'name_961', 'false', 1, '1', '', '70a0401', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'extent_1011', 'false', 0, '1', '', '70b0', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'geographicElement_983', 'true', 0, '2', '', '70b000', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'westBoundLongitude_986', 'true', 0, '1', '', '70b0000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'eastBoundLongitude_987', 'true', 0, '1', '', '70b0001', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'southBoundLatitude_988', 'true', 0, '1', '', '70b0002', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'northBoundLatitude_989', 'true', 0, '1', '', '70b0003', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'geographicElement_990', 'false', 0, '1', '', '70b010', -1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'geographicIdentifier_993', 'false', 0, '1', '', '70b01000', -1, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'code_1074', 'true', 0, '1', '', '70b010000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'temporalElement_999', 'false', 1, '62', '', '70b020', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'extent_1001', 'false', 1, '1', '', '70b02000', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'begin_1003', 'false', 1, '1', '', '70b020000', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'end_1004', 'false', 1, '1', '', '70b020001', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'couplingType_1012', 'true', 0, '1', '001', '70c', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'coupledResource_1013', 'false', 1, '1', '', '70d0', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'identifier_1015', 'false', 1, '1', '', '70d00', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'operationName_1016', 'false', 1, '1', '', '70d01', NULL, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'distributionInfo_41', 'true', 0, '1', '', '80', 4, 3, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'transferOptions_136', 'true', 0, '1', '', '8000', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'onLine_291', 'true', 0, '1', '', '800000', 4, NULL, NULL, '', ''); INSERT INTO elmnt_gabarit VALUES ('web_service_geo', 'linkage_300', 'true', 0, '1', '', '8000000', NULL, NULL, NULL, '', ''); -- -- Data for Name: elmnt_liste_interface; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO elmnt_liste_interface VALUES ('nivacces_0', 'nivacces', '0'); INSERT INTO elmnt_liste_interface VALUES ('nivacces_1', 'nivacces', '1'); INSERT INTO elmnt_liste_interface VALUES ('nivacces_2', 'nivacces', '2'); INSERT INTO elmnt_liste_interface VALUES ('nivacces_3', 'nivacces', '3'); INSERT INTO elmnt_liste_interface VALUES ('coulpref_bleu', 'coulpref', 'bleu'); INSERT INTO elmnt_liste_interface VALUES ('coulpref_marron', 'coulpref', 'marron'); INSERT INTO elmnt_liste_interface VALUES ('coulpref_vert', 'coulpref', 'vert'); INSERT INTO elmnt_liste_interface VALUES ('type_label_message', 'type_label', 'message'); INSERT INTO elmnt_liste_interface VALUES ('type_label_code', 'type_label', 'code'); INSERT INTO elmnt_liste_interface VALUES ('type_label_element', 'type_label', 'element'); INSERT INTO elmnt_liste_interface VALUES ('type_label_liste', 'type_label', 'liste'); INSERT INTO elmnt_liste_interface VALUES ('type_label_gabarit', 'type_label', 'gabarit'); INSERT INTO elmnt_liste_interface VALUES ('type_label_thesaurus', 'type_label', 'thesaurus'); INSERT INTO elmnt_liste_interface VALUES ('niv_saisie_0', 'niv_saisie', '0'); INSERT INTO elmnt_liste_interface VALUES ('niv_saisie_1', 'niv_saisie', '1'); INSERT INTO elmnt_liste_interface VALUES ('niv_saisie_2', 'niv_saisie', '2'); INSERT INTO elmnt_liste_interface VALUES ('publier_0', 'publier', '0'); INSERT INTO elmnt_liste_interface VALUES ('publier_1', 'publier', '1'); INSERT INTO elmnt_liste_interface VALUES ('confidentialite_0', 'confidentialite', '0'); INSERT INTO elmnt_liste_interface VALUES ('confidentialite_1', 'confidentialite', '1'); INSERT INTO elmnt_liste_interface VALUES ('polit_publi_0', 'polit_publi', '0'); INSERT INTO elmnt_liste_interface VALUES ('polit_publi_1', 'polit_publi', '1'); INSERT INTO elmnt_liste_interface VALUES ('langue_eng', 'langue', 'eng'); INSERT INTO elmnt_liste_interface VALUES ('langue_fra', 'langue', 'fra'); INSERT INTO elmnt_liste_interface VALUES ('orig_fiche_MDweb_local', 'orig_fiche', 'MDweb_local'); INSERT INTO elmnt_liste_interface VALUES ('orig_fiche_import_XML', 'orig_fiche', 'import_XML'); INSERT INTO elmnt_liste_interface VALUES ('langue_por', 'langue', 'por'); INSERT INTO elmnt_liste_interface VALUES ('import_source_MDWeb', 'import_source', 'MDweb'); INSERT INTO elmnt_liste_interface VALUES ('import_source_SIEL', 'import_source', 'ArcGIS'); INSERT INTO elmnt_liste_interface VALUES ('import_source_MTDEx', 'import_source', 'MDExtractor'); -- -- Data for Name: elmnt_mtd; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO elmnt_mtd VALUES ('MD_Metadata_1', 'gmd:MD_Metadata', 'metadata', 'ISO 19115', NULL, 'racine', 'M', '1', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('fileIdentifier_2', 'gmd:fileIdentifier', 'mdFileID', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('language_3', 'gmd:language', 'mdLang', 'ISO 19115', 'LangCd', 'list_ext', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('characterSet_4', 'gmd:characterSet', 'mdChar', 'ISO 19115', 'CharSetCd', 'list', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('parentIdentifier_5', 'gmd:parentIdentifier', 'mdParentID', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hierarchyLevel_6', 'gmd:hierarchyLevel', 'mdHrLv', 'ISO 19115', 'ScopeCd', 'list', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hierarchyLevelName_7', 'gmd:hierarchyLevelName', 'mdHrLvName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contact_8', 'gmd:contact', 'mdContact', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dateStamp_9', 'gmd:dateStamp', 'mdDateSt', 'ISO 19115', NULL, 'datetime', 'M', '1', 'true', 'false', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_71', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_10', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_11', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_12', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_13', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('role_14', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Contact_73', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_15', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_74', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_16', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_17', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_18', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_75', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_19', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_20', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_21', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_22', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_23', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_24', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineResource_25', 'gmd:onlineResource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_77', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_26', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_27', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_28', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_29', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_30', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_31', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_32', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_33', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('metadataStandardName_34', 'gmd:metadataStandardName', 'mdStanName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('metadataStandardVersion_35', 'gmd:metadataStandardVersion', 'mdStanVer', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('identificationInfo_36', 'gmd:identificationInfo', 'dataIdInfo', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('spatialRepresentationInfo_37', 'gmd:spatialRepresentationInfo', 'spatRepInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('referenceSystemInfo_38', 'gmd:referenceSystemInfo', 'refSysInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('metadataExtensionInfo_39', 'gmd:metadataExtensionInfo', 'mdExtInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('contentInfo_40', 'gmd:contentInfo', 'contInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distributionInfo_41', 'gmd:distributionInfo', 'distInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dataQualityInfo_42', 'gmd:dataQualityInfo', 'dqInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('portrayalCatalogueInfo_43', 'gmd:portrayalCatalogueInfo', 'porCatInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('applicationSchemaInfo_44', 'gmd:applicationSchemaInfo', 'appSchInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('metadataMaintenance_45', 'gmd:metadataMaintenance', 'mdMaint', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('metadataConstraints_46', 'gmd:metadataConstraints', 'mdConst', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_DataIdentification_68', 'fra:FRA_DataIdentification', 'DataIdent', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('citation_47', 'gmd:citation', 'idCitation', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('purpose_48', 'gmd:purpose', 'idPurp', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('credit_49', 'gmd:credit', 'idCredit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('status_50', 'gmd:status', 'idStatus', 'ISO 19115', 'ProgCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pointOfContact_51', 'gmd:pointOfContact', 'idPoC', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('resourceMaintenance_52', 'gmd:resourceMaintenance', 'resMaint', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('resourceFormat_54', 'gmd:resourceFormat', 'dsFormat', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('descriptiveKeywords_55', 'gmd:descriptiveKeywords', 'descKeys', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('resourceSpecificUsage_56', 'gmd:resourceSpecificUsage', 'idSpecUse', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('resourceConstraints_57', 'gmd:resourceConstraints', 'resConst', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('spatialRepresentationType_58', 'gmd:spatialRepresentationType', 'spatRpType', 'ISO 19115', 'SpatRepTypCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('spatialResolution_59', 'gmd:spatialResolution', 'dataScale', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('language_60', 'gmd:language', 'dataLang', 'ISO 19115', 'LangCd', 'list_ext', 'M', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('characterSet_61', 'gmd:characterSet', 'dataChar', 'ISO 19115', 'CharSetCd', 'list', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('topicCategory_62', 'gmd:topicCategory', 'tpCat', 'ISO 19115', 'TopicCatCd', 'enum', 'M', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('environnementDescription_65', 'gmd:environnementDescription', 'envirDesc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extent_66', 'gmd:extent', 'dataExt', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('supplementalInformation_67', 'gmd:supplementalInformation', 'suppInfo', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('abstract_70', 'gmd:abstract', 'idAbs', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_72', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_86', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_76', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('series_93', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_78', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_79', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_80', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_81', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_82', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_83', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_84', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_85', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_87', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_88', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_89', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_91', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_92', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_94', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_95', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_96', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_97', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_GridSpatialRepresentation_98', 'gmd:MD_GridSpatialRepresentation', 'GridSpatRep', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ReferenceSystem_99', 'fra:FRA_DirectReferenceSystem', 'RefSystem', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Georectified_100', 'gmd:MD_Georectified', 'Georect', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Georeferenceable_101', 'gmd:MD_Georeferenceable', 'Georef', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_VectorSpatialRepresentation_102', 'gmd:MD_VectorSpatialRepresentation', 'VectSpatRep', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_MetadataExtensionInformation_103', 'gmd:MD_MetadataExtensionInformation', 'MdExtInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Distribution_105', 'gmd:MD_Distribution', 'Distrib', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_DataQuality_106', 'gmd:DQ_DataQuality', 'DataQual', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_PortrayalCatalogueReference_107', 'gmd:MD_PortrayalCatalogueReference', 'PortCatRef', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Constraints_108', 'fra:FRA_Constraints', 'Conts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ApplicationSchemaInformation_109', 'gmd:MD_ApplicationSchemaInformation', 'AppSchInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_MaintenanceInformation_110', 'gmd:MD_MaintenanceInformation', 'MaintInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distributionFormat_134', 'gmd:distributionFormat', 'distFormat', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Format_112', 'gmd:MD_Format', 'Format', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Keywords_113', 'gmd:MD_Keywords', 'Keywords', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Usage_114', 'gmd:MD_Usage', 'Usage', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Resolution_115', 'gmd:MD_Resolution', 'Resol', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('geographicElement_141', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicBoundingBox_116', 'gmd:EX_GeographicBoundingBox', 'GeoBndBox', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('geographicElement_506', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicDescription_117', 'gmd:EX_GeographicDescription', 'GeoDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_Extent_118', 'gmd:EX_Extent', 'Extent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_119', 'gmd:name', 'formatName', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_120', 'gmd:version', 'formatVer', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('equivalentScale_121', 'gmd:equivalentScale', 'equScale', 'ISO 19115', NULL, 'rubrique', 'C', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distance_122', 'gmd:distance', 'scaleDist', 'ISO 19115', NULL, 'float', 'C', '1', 'false', 'true', 'gco:Distance'); INSERT INTO elmnt_mtd VALUES ('MD_RepresentativeFraction_123', 'gmd:MD_RepresentativeFraction', 'RepFract', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('denominator_124', 'gmd:denominator', 'rfDenom', 'ISO 19115', NULL, 'integer', 'M', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('westBoundLongitude_126', 'gmd:westBoundLongitude', 'westBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('eastBoundLongitude_127', 'gmd:eastBoundLongitude', 'eastBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('southBoundLatitude_128', 'gmd:southBoundLatitude', 'southBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('northBoundLatitude_129', 'gmd:northBoundLatitude', 'northBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('geographicIdentifier_130', 'gmd:geographicIdentifier', 'geoId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('referenceSystemIdentifier_401', 'gmd:referenceSystemIdentifier', 'refSysId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_131', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_155', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_132', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_133', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'thesaurus', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('distributor_135', 'gmd:distributor', 'distributor', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('transferOptions_136', 'gmd:transferOptions', 'distTranOps', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Distributor_137', 'gmd:MD_Distributor', 'Distributor', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_DigitalTransferOptions_138', 'gmd:MD_DigitalTransferOptions', 'DigTranOps', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_BoundingPolygon_144', 'gmd:EX_BoundingPolygon', 'BoundPoly', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_139', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('description_140', 'gmd:description', 'exDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('temporalElement_142', 'gmd:temporalElement', 'tempEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('verticalElement_143', 'gmd:verticalElement', 'vertEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('geographicElement_507', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_TemporalExtent_145', 'gmd:EX_TemporalExtent', 'TempExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extent_146', 'gmd:extent', 'exTemp', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('Ex_VerticalExtent_147', 'gmd:Ex_VerticalExtent', 'VertExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('minimumValue_148', 'gmd:minimumValue', 'vertMinVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('maximumValue_149', 'gmd:maximumValue', 'vertMaxVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('unitOfMeasure_150', 'gmd:unitOfMeasure', 'vertUoM', 'ISO 19115', 'uom', 'text', 'M', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('polygon_151', 'gmd:polygon', 'polygon', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('verticalDatum_152', 'gmd:verticalDatum', 'vertDatum', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('aggregateInfo_154', 'gmd:aggregateInfo', 'aggrInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_157', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_163', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_164', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_165', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_166', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('role_167', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Contact_168', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_169', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('address_170', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('onlineResource_171', 'gmd:onlineResource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('hoursOfService_172', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_173', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_174', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_175', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_176', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Address_177', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_178', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_179', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_180', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_181', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_182', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_183', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_184', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_185', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_186', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_187', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_188', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_189', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_190', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_191', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_192', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_193', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_194', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_195', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('role_196', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Contact_197', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_198', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('address_199', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('onlineResource_200', 'gmd:onlineResource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('hoursOfService_201', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_202', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_203', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_204', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_205', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Address_206', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_207', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_208', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_209', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_210', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_211', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_212', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_213', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_214', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_215', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_216', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_217', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_218', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_219', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_Format_220', 'gmd:MD_Format', 'Format', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_221', 'gmd:name', 'formatName', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_222', 'gmd:version', 'formatVer', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('amendmentNumber_223', 'gmd:amendmentNumber', 'formatAmdNum', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('specification_224', 'gmd:specification', 'formatSpec', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('fileDecompressionTechnique_225', 'gmd:fileDecompressionTechnique', 'fileDecmTech', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_MaintenanceInformation_226', 'gmd:MD_MaintenanceInformation', 'MaintInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('maintenanceAndUpdateFrequency_227', 'gmd:maintenanceAndUpdateFrequency', 'maintFreq', 'ISO 19115', 'MaintFreqCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateOfNextUpdate_228', 'gmd:dateOfNextUpdate', 'dateNext', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('userDefinedMaintenanceFrequency_229', 'gmd:userDefinedMaintenanceFrequency', 'usrDefFreq', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gts:TM_PeriodDuration'); INSERT INTO elmnt_mtd VALUES ('updateScope_230', 'gmd:updateScope', 'maintScp', 'ISO 19115', 'ScopeCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('updateScopeDescription_231', 'gmd:updateScopeDescription', 'upScpDesc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('maintenanceNote_232', 'gmd:maintenanceNote', 'maintNote', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contact_233', 'gmd:contact', 'maintCont', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ScopeDescription_234', 'gmd:MD_ScopeDescription', 'ScpDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_235', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_924', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_925', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_926', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_927', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_928', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_929', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_930', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_931', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_932', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_933', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_934', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_935', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_936', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_937', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_938', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_939', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_940', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_941', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_942', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_943', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_944', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_945', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_946', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_947', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_948', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_949', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_950', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_951', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('maintenanceAndUpdateFrequency_238', 'gmd:maintenanceAndUpdateFrequency', 'maintFreq', 'ISO 19115', 'MaintFreqCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateOfNextUpdate_239', 'gmd:dateOfNextUpdate', 'dateNext', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('userDefinedMaintenanceFrequency_240', 'gmd:userDefinedMaintenanceFrequency', 'usrDefFreq', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gts:TM_PeriodDuration'); INSERT INTO elmnt_mtd VALUES ('updateScopeDescription_241', 'gmd:updateScopeDescription', 'upScpDesc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('updateScope_242', 'gmd:updateScope', 'maintScp', 'ISO 19115', 'ScopeCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('maintenanceNote_243', 'gmd:maintenanceNote', 'maintNote', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contact_244', 'gmd:contact', 'maintCont', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ScopeDescription_245', 'gmd:MD_ScopeDescription', 'ScpDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_246', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_952', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_953', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_954', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_955', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_956', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_957', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_958', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_959', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_960', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_961', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_962', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_963', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_964', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_965', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_966', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_967', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_968', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_969', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_970', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_971', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_972', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_973', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_974', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_975', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_976', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_977', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_978', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_979', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_Constraints_247', 'fra:FRA_Constraints', 'Conts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_248', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_LegalConstraints_249', 'fra:FRA_LegalConstraints', 'LegConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_249', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('accessConstraints_250', 'gmd:accessConstraints', 'accessConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_SecurityConstraints_253', 'fra:FRA_SecurityConstraints', 'SecConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_250', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('useConstraints_251', 'gmd:useConstraints', 'useConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherConstraints_252', 'gmd:otherConstraints', 'othConsts', 'ISO 19115', NULL, 'text', 'C', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classification_254', 'gmd:classification', 'class', 'ISO 19115', 'ClassificationCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('userNote_255', 'gmd:userNote', 'userNote', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classificationSystem_256', 'gmd:classificationSystem', 'classSys', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('handlingDescription_257', 'gmd:handlingDescription', 'handDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('useLimitation_258', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_LegalConstraints_259', 'fra:FRA_LegalConstraints', 'LegConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_259', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('accessConstraints_260', 'gmd:accessConstraints', 'accessConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_SecurityConstraints_263', 'fra:FRA_SecurityConstraints', 'SecConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_260', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('useConstraints_261', 'gmd:useConstraints', 'useConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherConstraints_262', 'gmd:otherConstraints', 'othConsts', 'ISO 19115', NULL, 'text', 'C', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classification_264', 'gmd:classification', 'class', 'ISO 19115', 'ClassificationCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('userNote_265', 'gmd:userNote', 'userNote', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classificationSystem_266', 'gmd:classificationSystem', 'classSys', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('handlingDescription_267', 'gmd:handlingDescription', 'handDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dataSetURI_268', 'gmd:dataSetURI', 'dataSetURI', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('keyword_269', 'gmd:keyword', 'keyword', 'ISO 19115', NULL, 'thesaurus', 'M', 'N', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('Type_270', 'gmd:Type', 'keyTyp', 'ISO 19115', 'KeyTypCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ThesaurusName_271', 'gmd:ThesaurusName', 'thesaName', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_272', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_980', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_981', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_982', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_983', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_984', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_985', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_986', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_987', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_988', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_989', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_990', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_991', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_992', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_993', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_994', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_995', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_996', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_997', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_998', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_999', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1000', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1001', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1002', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1003', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('amendmentNumber_273', 'gmd:amendmentNumber', 'formatAmdNum', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('specification_274', 'gmd:specification', 'formatSpec', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('fileDecompressionTechnique_275', 'gmd:fileDecompressionTechnique', 'fileDecmTech', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('distributorContact_276', 'gmd:distributorContact', 'distorCont', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distributorOrderProcess_277', 'gmd:distributorOrderProcess', 'distorOrdPrc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distributorFormat_278', 'gmd:distributorFormat', 'distorFormat', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('distributorTransferOptions_279', 'gmd:distributorTransferOptions', 'distorTran', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_280', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_StandardOrderProcess_281', 'gmd:MD_StandardOrderProcess', 'StanOrdProc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('fees_282', 'gmd:fees', 'resfees', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('plannedAvailableDateTime_283', 'gmd:plannedAvailableDateTime', 'planAvDtTm', 'ISO 19115', NULL, 'datetime', 'O', '1', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('orderingInstructions_284', 'gmd:orderingInstructions', 'ordInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('turnaround_285', 'gmd:turnaround', 'ordTurn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_Format_286', 'gmd:MD_Format', 'Format', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_DigitalTransferOptions_288', 'gmd:MD_DigitalTransferOptions', 'DigTranOps', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('unitsOfDistribution_289', 'gmd:unitsOfDistribution', 'unitsODist', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('transferSize_290', 'gmd:transferSize', 'transSize', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('onLine_291', 'gmd:onLine', 'onLineSrc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_292', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('offLine_293', 'gmd:offLine', 'offLineMed', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Medium_294', 'gmd:MD_Medium', 'Medium', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_295', 'gmd:name', 'medName', 'ISO 19115', 'MedNameCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('density_296', 'gmd:density', 'medDensity', 'ISO 19115', NULL, 'real', 'O', 'N', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('densityUnits_297', 'gmd:densityUnits', 'medDenUnits', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('volumes_298', 'gmd:volumes', 'medVol', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('mediumFormat_299', 'gmd:mediumFormat', 'medFormat', 'ISO 19115', 'MedFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('linkage_300', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_301', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_302', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_303', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_304', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_305', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_306', 'gmd:name', 'formatName', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_307', 'gmd:version', 'formatVer', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('amendmentNumber_308', 'gmd:amendmentNumber', 'formatAmdNum', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('specification_309', 'gmd:specification', 'formatSpec', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('fileDecompressionTechnique_310', 'gmd:fileDecompressionTechnique', 'fileDecmTech', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_311', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_312', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_313', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'C', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_314', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('role_315', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Contact_316', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_317', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('address_318', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('onlineResource_319', 'gmd:onlineResource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('hoursOfService_320', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_321', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Address_322', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_323', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_325', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_326', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_327', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_328', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_329', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_330', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_331', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_332', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_324', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_333', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_334', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_335', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_336', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_337', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_338', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('unitsOfDistribution_339', 'gmd:unitsOfDistribution', 'unitsODist', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('transferOptions_340', 'gmd:transferOptions', 'distTranOps', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('onLine_341', 'gmd:onLine', 'onLineSrc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('offLine_342', 'gmd:offLine', 'offLineMed', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_343', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Medium_344', 'gmd:MD_Medium', 'Medium', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_345', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_346', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_347', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_348', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_349', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_350', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_354', 'gmd:name', 'medName', 'ISO 19115', 'MedNameCd', 'list', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('density_355', 'gmd:density', 'medDensity', 'ISO 19115', NULL, 'real', 'O', 'N', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('densityUnits_356', 'gmd:densityUnits', 'medDenUnits', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('volumes_357', 'gmd:volumes', 'medVol', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('mediumFormat_358', 'gmd:mediumFormat', 'medFormat', 'ISO 19115', 'MedFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('specificUsage_359', 'gmd:specificUsage', 'specUsage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('UsageDateTime_360', 'gmd:UsageDateTime', 'usageDate', 'ISO 19115', NULL, 'datetime', 'O', '1', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('userDeterminedLimitations_361', 'gmd:userDeterminedLimitations', 'usrDetLim', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('userContactInfo_362', 'gmd:userContactInfo', 'usrCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_363', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_1004', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1005', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1006', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1007', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1008', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1009', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1010', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1011', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1012', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1013', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1014', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1015', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1016', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1017', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1018', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1019', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1020', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1021', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1022', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1023', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1024', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1025', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1026', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1027', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1028', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1029', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1030', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1031', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_AggregateInformation_364', 'gmd:MD_AggregateInformation', 'AggregateInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('numberOfDimensions_365', 'gmd:numberOfDimensions', 'numDims', 'ISO 19115', NULL, 'integer', 'M', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('axisDimensionsProperties_366', 'gmd:axisDimensionsProperties', 'axDimProps', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Dimension_367', 'gmd:MD_Dimension', 'Dimen', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dimensionName_368', 'gmd:dimensionName', 'dimName', 'ISO 19115', 'DimNameTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dimensionSize_369', 'gmd:dimensionSize', 'dimSize', 'ISO 19115', NULL, 'integer', 'M', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('resolution_370', 'gmd:resolution', 'dimResol', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Measure'); INSERT INTO elmnt_mtd VALUES ('cellGeometry_371', 'gmd:cellGeometry', 'cellGeo', 'ISO 19115', 'CellGeoCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('transformationParameterAvailability_372', 'gmd:transformationParameterAvailability', 'tranParaAv', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('checkPointAvailibility_381', 'gmd:checkPointAvailibility', 'chkPtAv', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('checkPointDescription_382', 'gmd:checkPointDescription', 'chkPtDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('cornerPoints_383', 'gmd:cornerPoints', 'cornerPts', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('centerPoint_384', 'gmd:centerPoint', 'centerPt', 'ISO 19115', NULL, 'float', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('pointInPixel_385', 'gmd:pointInPixel', 'ptInPixel', 'ISO 19115', 'PixOrientCd', 'enum', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('transformationDimensionDescription_386', 'gmd:transformationDimensionDescription', 'tranDimDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('transformationDimensionMapping_387', 'gmd:transformationDimensionMapping', 'tranDimMap', 'ISO 19115', NULL, 'text', 'O', '2', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('georeferencedParameters_393', 'gmd:georeferencedParameters', 'georefPars', 'ISO 19115', NULL, 'integer', 'M', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('orientationParameterDescription_391', 'gmd:orientationParameterDescription', 'orieParaDs', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('orientationParameterAvailability_389', 'gmd:orientationParameterAvailability', 'orieParaAv', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('controlPointAvailability_388', 'gmd:controlPointAvailability', 'ctrlPtAv', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('parameterCitation_395', 'gmd:parameterCitation', 'paraCit', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_519', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1032', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1033', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1034', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1035', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1036', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1037', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1038', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1039', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1040', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1041', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1042', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1043', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1044', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1045', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1046', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1047', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1048', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1049', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1050', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1051', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1052', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1053', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1054', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1055', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('topologyLevel_397', 'gmd:topologyLevel', 'topLvl', 'ISO 19115', 'TopoLevCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geometricObjects_398', 'gmd:geometricObjects', 'geometObjs', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_399', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_400', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('MD_CRS_402', 'gmd:MD_CRS', 'MdCoRefSys', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('referenceSystemIdentifier_403', 'gmd:referenceSystemIdentifier', 'refSysId', 'ISO 19115', NULL, 'rubrique', 'C', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_404', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_877', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '2', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('authority_878', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_879', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1056', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1057', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1058', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1059', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1060', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1061', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1062', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1063', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1064', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1065', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1066', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1067', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1068', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1069', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1070', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1071', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1072', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1073', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1074', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1075', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1076', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1077', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1078', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1079', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('codeSpace_880', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_881', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('projection_403', 'gmd:projection', 'projection', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('ellipsoid_404', 'gmd:ellipsoid', 'ellipsoid', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('datum_405', 'gmd:datum', 'datum', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('ellipsoidParameters_407', 'gmd:ellipsoidParameters', 'ellParas', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('projectionParameters_408', 'gmd:projectionParameters', 'projParas', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('codeSpace_409', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_410', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_411', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_412', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('version_413', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_EllipsoidParameters_414', 'gmd:MD_EllipsoidParameters', 'EllParas', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ProjectionParameters_415', 'gmd:MD_ProjectionParameters', 'ProjParas', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_416', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_417', 'gmd:code', 'identCode', 'ISO 19115', 'RefSysCd', 'list_ext', 'M', '1', 'false', 'true', 'gmx:Anchor'); INSERT INTO elmnt_mtd VALUES ('code_418', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('authority_419', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('codeSpace_420', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_421', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('authority_422', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_423', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('codeSpace_424', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_425', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('authority_426', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_427', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('codeSpace_428', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_429', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_430', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1080', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1081', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1082', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1083', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1084', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1085', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1086', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1087', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1088', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1089', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1090', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1091', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1092', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1093', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1094', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1095', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1096', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1097', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1098', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1099', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1100', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1101', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1102', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1103', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_431', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1104', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1105', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1106', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1107', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1108', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1109', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1110', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1111', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1112', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1113', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1114', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1115', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1116', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1117', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1118', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1119', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1120', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1121', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1122', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1123', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1124', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1125', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1126', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1127', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_432', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1128', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1129', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1130', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1131', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1132', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1133', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1134', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1135', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1136', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1137', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1138', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1139', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1140', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1141', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1142', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1143', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1144', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1145', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1146', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1147', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1148', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1149', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1150', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1151', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_434', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1152', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1153', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1154', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1155', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1156', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1157', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1158', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1159', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1160', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1161', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1162', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1163', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1164', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1165', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1166', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1167', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1168', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1169', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1170', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1171', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1172', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1173', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1174', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1175', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_435', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1176', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1177', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1178', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1179', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1180', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1181', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1182', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1183', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1184', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1185', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1186', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1187', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1188', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1189', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1190', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1191', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1192', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1193', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1194', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1195', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1196', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1197', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1198', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1199', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('scope_436', 'gmd:scope', 'dqScope', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('report_437', 'gmd:report', 'dqReport', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('lineage_438', 'gmd:lineage', 'dataLineage', 'ISO 19115', NULL, 'rubrique', 'C', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_Scope_439', 'gmd:DQ_Scope', 'DQScope', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('LI_Lineage_441', 'gmd:LI_Lineage', 'Lineage', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('level_442', 'gmd:level', 'scpLvl', 'ISO 19115', 'ScopeCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('extent_443', 'gmd:extent', 'scpExt', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('levelDescription_444', 'gmd:levelDescription', 'scpLvlDesc', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_Extent_445', 'gmd:EX_Extent', 'Extent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ScopeDescription_447', 'gmd:MD_ScopeDescription', 'ScpDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('statement_448', 'gmd:statement', 'statement', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('processStep_449', 'gmd:processStep', 'prcStep', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('source_450', 'gmd:source', 'dataSource', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('LI_ProcessStep_451', 'gmd:LI_ProcessStep', 'PrcessStep', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('LI_Source_452', 'gmd:LI_Source', 'Source', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_455', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_456', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_457', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_458', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_459', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_460', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_461', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_GeometricObjects_463', 'gmd:MD_GeometricObjects', 'GeometObjs', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('geometricObjectType_464', 'gmd:geometricObjectType', 'geoObjTyp', 'ISO 19115', 'GeoObjTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geometricObjectCount_465', 'gmd:geometricObjectCount', 'geoObjCnt', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('TimePeriod_501', 'gml:TimePeriod', 'TimePeriod', 'ISO 19108', NULL, 'class', 'true', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('beginPosition_502', 'gml:beginPosition', 'beginPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('endPosition_504', 'gml:endPosition', 'endPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('graphicOverview_508', 'gmd:graphicOverview', 'graphOver', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_BrowseGraphic_509', 'gmd:MD_BrowseGraphic', 'BrowGraph', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('fileName_510', 'gmd:fileName', 'bgFileName', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('fileType_511', 'gmd:fileType', 'bgFileType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('semiMajorAxis_519', 'gmd:semiMajorAxis', 'semiMajAx', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('denominatorOfFlatetteningRatio_521', 'gmd:denominatorOfFlatetteningRatio', 'denFlatRat', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('zone_522', 'gmd:zone', 'zone', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('standardParallel_523', 'gmd:standardParallel', 'stanParal', 'ISO 19115', NULL, 'real', 'O', '2', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('longitudeOfCentralMeridian_523', 'gmd:longitudeOfCentralMeridian', 'longCntMer', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('latitudeOfProjectionOrigin_524', 'gmd:latitudeOfProjectionOrigin', 'latProjOri', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('falseEasting_526', 'gmd:falseEasting', 'falEasting', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('falseNorthing_527', 'gmd:falseNorthing', 'falNorthing', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('falseEastingNorthingUnits_528', 'gmd:falseEastingNorthingUnits', 'falENUnits', 'ISO 19115', 'uom', 'list_ext', 'O', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('scaleFactorAtEquator_529', 'gmd:scaleFactorAtEquator', 'sclFacEqu', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('heightOfProspectivePointAboveSurface_530', 'gmd:heightOfProspectivePointAboveSurface', 'hgtProsPt', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('longitudeOfProjectionCenter_531', 'gmd:longitudeOfProjectionCenter', 'longProjCnt', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('latitudeOfProjectionCenter_532', 'gmd:latitudeOfProjectionCenter', 'latProjCnt', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('scaleFactorAtCenterLine_533', 'gmd:scaleFactorAtCenterLine', 'sclFacCnt', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('straightVerticalLongitudeFromPole_534', 'gmd:straightVerticalLongitudeFromPole', 'stVrLongPI', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('scaleFactorAtProjectionOrigin_535', 'gmd:scaleFactorAtProjectionOrigin', 'sclFacPrOr', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('obliqueLineAzimuthParameter_536', 'gmd:obliqueLineAzimuthParameter', 'obLnAziPars', 'ISO 19115', NULL, 'class', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ObliqueLineAzimuth_537', 'gmd:MD_ObliqueLineAzimuth', 'ObLineAzi', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('azimuthAngle_538', 'gmd:azimuthAngle', 'aziAngle', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('azimuthMeasurePointLongitude_539', 'gmd:azimuthMeasurePointLongitude', 'aziPtLong', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('obliqueLinePointParameter_537', 'gmd:obliqueLinePointParameter', 'obLnPtPars', 'ISO 19115', NULL, 'class', 'O', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ObliqueLinePoint_540', 'gmd:MD_ObliqueLinePoint', 'ObLinePt', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('obliqueLineLatitude_541', 'gmd:obliqueLineLatitude', 'obLineLat', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('obliqueLineLongitude_542', 'gmd:obliqueLineLongitude', 'obLineLong', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('extensionOnLineResource_544', 'gmd:extensionOnLineResource', 'extOnRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_559', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extendedElementInformation_545', 'gmd:extendedElementInformation', 'extEleInfo', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ExtendedElementInformation_546', 'gmd:MD_ExtendedElementInformation', 'ExtEleInfo', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_547', 'gmd:name', 'extEleName', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('shortName_548', 'gmd:shortName', 'extEleShortName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('domainCode_549', 'gmd:domainCode', 'extDomCode', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('definition_550', 'gmd:definition', 'extEleDef', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('obligation_551', 'gmd:obligation', 'extEleOb', 'ISO 19115', 'ObCd', 'enum', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('condition_552', 'gmd:condition', 'extEleCond', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dataType_552', 'gmd:dataType', 'eleDataType', 'ISO 19115', 'DatatypeCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('maximumOccurrence_553', 'gmd:maximumOccurrence', 'extEleMxOc', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('domainValue_554', 'gmd:domainValue', 'extEleDomVal', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('parentEntity_555', 'gmd:parentEntity', 'extEleParEnt', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('rule_556', 'gmd:rule', 'extEleRule', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('rationale_557', 'gmd:rationale', 'extEleRat', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('source_558', 'gmd:source', 'extEleSrc', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_560', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_1200', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1201', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1202', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1203', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1204', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1205', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1206', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1207', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1208', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1209', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1210', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1211', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1212', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1213', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1214', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1215', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1216', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1217', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1218', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1219', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1220', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1221', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1222', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1223', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1224', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1225', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1226', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1227', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('AggregateDataSetName_562', 'gmd:AggregateDataSetName', 'aggrDSName', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_566', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1228', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1229', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1230', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1231', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1232', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1233', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1234', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1235', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1236', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1237', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1238', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1239', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1240', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1241', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1242', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1243', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1244', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1245', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1246', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1247', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1248', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1249', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1250', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1251', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('AggregateDataSetIdentitier_563', 'gmd:AggregateDataSetIdentitier', 'aggrDSIdent', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_567', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1252', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1253', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1254', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('associationType_564', 'gmd:associationType', 'assocType', 'ISO 19115', 'AscTypeCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('initiativeType_565', 'gmd:initiativeType', 'initType', 'ISO 19115', 'InitTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_FeatureCatalogueDescription_568', 'gmd:MD_FeatureCatalogueDescription', 'FetCatDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('complianceCode_569', 'gmd:complianceCode', 'compCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('language_570', 'gmd:language', 'catLang', 'ISO 19115', 'LangCd', 'list_ext', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('includedWithDataset_571', 'gmd:includedWithDataset', 'incWithDS', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('featureTypes_572', 'gmd:featureTypes', 'catFetTyps', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:LocalName'); INSERT INTO elmnt_mtd VALUES ('featureCatalogueCitation_573', 'gmd:featureCatalogueCitation', 'catCitation', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_605', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1255', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1256', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1257', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1258', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1259', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1260', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1261', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1262', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1263', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1264', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1265', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1266', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1267', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1268', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1269', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1270', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1271', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1272', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1273', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1274', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1275', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1276', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1277', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1278', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_CoverageDescription_574', 'gmd:MD_CoverageDescription', 'CovDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('attributeDescription_576', 'gmd:attributeDescription', 'attDesc', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('contentType_577', 'gmd:contentType', 'contentTyp', 'ISO 19115', 'ContentTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dimension_578', 'gmd:dimension', 'covDim', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_RangeDimension_593', 'gmd:MD_RangeDimension', 'RangeDim', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ImageDescription_580', 'gmd:MD_ImageDescription', 'ImgDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('illuminationElevationAngle_581', 'gmd:illuminationElevationAngle', 'illElevAng', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('illuminationAzimuthAngle_582', 'gmd:illuminationAzimuthAngle', 'illAziAng', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('imagingCondition_583', 'gmd:imagingCondition', 'imagCond', 'ISO 19115', 'ImgCondCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('imageQualityCode_584', 'gmd:imageQualityCode', 'imagQuCode', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_606', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1279', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1280', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1281', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('cloudCoverPercentage_585', 'gmd:cloudCoverPercentage', 'cloudCovPer', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('processingLevelCode_586', 'gmd:processingLevelCode', 'prcTypCode', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_607', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1282', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1283', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1284', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('compressionGenerationQuantity_587', 'gmd:compressionGenerationQuantity', 'cmpGenQuan', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('triangulationIndicator_588', 'gmd:triangulationIndicator', 'trianInd', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('radiometricCalibrationDataAvailability_589', 'gmd:radiometricCalibrationDataAvailability', 'radCalDatAv', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('cameraCalibrationInformationAvailability_590', 'gmd:cameraCalibrationInformationAvailability', 'camCalInAv', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('filmDistortionInformationAvailability_591', 'gmd:filmDistortionInformationAvailability', 'filmDistInAv', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('lensDistortionInformationAvailability_592', 'gmd:lensDistortionInformationAvailability', 'lensDistInAv', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('sequenceIdentifier_594', 'gmd:sequenceIdentifier', 'seqID', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('descriptor_595', 'gmd:descriptor', 'dimDescrp', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_Band_596', 'gmd:MD_Band', 'Band', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('maxValue_597', 'gmd:maxValue', 'maxVal', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('minValue_598', 'gmd:minValue', 'minVal', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('units_599', 'gmd:units', 'valUnit', 'ISO 19115', 'uom', 'list_ext', 'O', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('peakResponse_600', 'gmd:peakResponse', 'pkResp', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('bitsPerValue_601', 'gmd:bitsPerValue', 'bitsPerVal', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('toneGradation_602', 'gmd:toneGradation', 'toneGrad', 'ISO 19115', NULL, 'integer', 'O', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('scaleFactor_603', 'gmd:scaleFactor', 'sclFac', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('offset_604', 'gmd:offset', 'offset', 'ISO 19115', NULL, 'real', 'O', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('portrayalCatalogueCitation_608', 'gmd:portrayalCatalogueCitation', 'portCatCit', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_609', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1285', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1286', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1287', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1288', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1289', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1290', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1291', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1292', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1293', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1294', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1295', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1296', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1297', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1298', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1299', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1300', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1301', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1302', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1303', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1304', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1305', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1306', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1307', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1308', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_611', 'gmd:name', 'asName', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_618', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1309', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1310', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1311', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1312', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1313', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1314', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1315', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1316', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1317', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1318', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1319', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1320', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1321', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1322', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1323', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1324', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1325', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1326', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1327', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1328', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1329', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1330', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1331', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1332', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('schemaLanguage_612', 'gmd:schemaLanguage', 'asSchLang', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('constraintLanguage_613', 'gmd:constraintLanguage', 'asCstLang', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('schemaAscii_614', 'gmd:schemaAscii', 'asAscii', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('graphicsFile_615', 'gmd:graphicsFile', 'asGraFile', 'ISO 19115', NULL, 'binary', 'O', '1', 'false', 'true', 'gco:Binary'); INSERT INTO elmnt_mtd VALUES ('softwareDevelopmentFile_616', 'gmd:softwareDevelopmentFile', 'asSwDevFile', 'ISO 19115', NULL, 'binary', 'O', '1', 'false', 'true', 'gco:Binary'); INSERT INTO elmnt_mtd VALUES ('softwareDevelopmentFileFormat_617', 'gmd:softwareDevelopmentFileFormat', 'asSwDevFiFt', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_618', 'gmd:description', 'stepDesc', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('rationale_619', 'gmd:rationale', 'stepRat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_620', 'gmd:dateTime', 'stepDateTm', 'ISO 19115', NULL, 'datetime', 'O', '1', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('processor_621', 'gmd:processor', 'stepProc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_623', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_1333', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1334', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1335', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1336', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1337', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1338', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1339', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1340', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1341', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1342', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1343', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1344', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1345', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1346', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1347', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1348', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1349', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1350', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1351', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1352', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1353', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1354', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1355', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1356', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1357', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1358', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1359', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1360', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('source_622', 'gmd:source', 'stepSrc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('LI_Source_624', 'gmd:LI_Source', 'Source', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('description_623', 'gmd:description', 'srcDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('scaleDenominator_624', 'gmd:scaleDenominator', 'srcScale', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_RepresentativeFraction_629', 'gmd:MD_RepresentativeFraction', 'RepFract', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('denominator_630', 'gmd:denominator', 'rfDenom', 'ISO 19115', NULL, 'integer', 'M', '1', 'false', 'true', 'gco:Integer'); INSERT INTO elmnt_mtd VALUES ('sourceReferenceSystem_625', 'gmd:sourceReferenceSystem', 'srcRefSys', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_ReferenceSystem_637', 'gmd:MD_ReferenceSystem', 'RefSystem', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('referenceSystemIdentifier_638', 'gmd:referenceSystemIdentifier', 'refSysId', 'ISO 19115', NULL, 'rubrique', 'C', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_639', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1361', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1362', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1363', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('codeSpace_1364', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_1365', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('sourceCitation_626', 'gmd:sourceCitation', 'srcCitatn', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_638', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1366', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1367', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1368', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1369', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1370', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1371', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1372', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1373', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1374', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1375', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1376', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1377', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1378', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1379', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1380', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1381', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1382', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1383', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1384', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1385', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1386', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1387', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1388', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1389', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('sourceExtent_627', 'gmd:sourceExtent', 'srcExt', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_Extent_628', 'gmd:EX_Extent', 'Extent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('description_629', 'gmd:description', 'exDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_630', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicBoundingBox_631', 'gmd:EX_GeographicBoundingBox', 'GeoBndBox', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_632', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('westBoundLongitude_633', 'gmd:westBoundLongitude', 'westBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('eastBoundLongitude_634', 'gmd:eastBoundLongitude', 'eastBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('southBoundLatitude_635', 'gmd:southBoundLatitude', 'southBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('northBoundLatitude_636', 'gmd:northBoundLatitude', 'northBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('geographicElement_637', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicDescription_638', 'gmd:EX_GeographicDescription', 'GeoDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_639', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('geographicIdentifier_640', 'gmd:geographicIdentifier', 'geoId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_641', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1390', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1391', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1392', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_642', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_BoundingPolygon_643', 'gmd:EX_BoundingPolygon', 'BoundPoly', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_644', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('polygon_645', 'gmd:polygon', 'polygon', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('temporalElement_646', 'gmd:temporalElement', 'tempEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_TemporalExtent_647', 'gmd:EX_TemporalExtent', 'TempExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extent_648', 'gmd:extent', 'exTemp', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('TimePeriod_649', 'gml:TimePeriod', 'TimePeriod', 'ISO 19108', NULL, 'class', 'true', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('beginPosition_650', 'gml:beginPosition', 'beginPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('endPosition_660', 'gml:endPosition', 'endPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('verticalElement_661', 'gmd:verticalElement', 'vertEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('Ex_VerticalExtent_662', 'gmd:Ex_VerticalExtent', 'VertExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('minimumValue_663', 'gmd:minimumValue', 'vertMinVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('maximumValue_664', 'gmd:maximumValue', 'vertMaxVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('unitOfMeasure_665', 'gmd:unitOfMeasure', 'vertUoM', 'ISO 19115', 'uom', 'text', 'M', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('verticalDatum_666', 'gmd:verticalDatum', 'vertDatum', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('sourceStep_628', 'gmd:sourceStep', 'srcStep', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('LI_ProcessStep_631', 'gmd:LI_ProcessStep', 'PrcessStep', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('description_632', 'gmd:description', 'stepDesc', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('rationale_633', 'gmd:rationale', 'stepRat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_634', 'gmd:dateTime', 'stepDateTm', 'ISO 19115', NULL, 'datetime', 'O', '1', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('processor_635', 'gmd:processor', 'stepProc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('source_636', 'gmd:source', 'stepSrc', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('description_668', 'gmd:description', 'exDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_669', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicBoundingBox_670', 'gmd:EX_GeographicBoundingBox', 'GeoBndBox', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_671', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('westBoundLongitude_672', 'gmd:westBoundLongitude', 'westBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('eastBoundLongitude_673', 'gmd:eastBoundLongitude', 'eastBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('southBoundLatitude_674', 'gmd:southBoundLatitude', 'southBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('northBoundLatitude_675', 'gmd:northBoundLatitude', 'northBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('geographicElement_676', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicDescription_677', 'gmd:EX_GeographicDescription', 'GeoDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_678', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('geographicIdentifier_679', 'gmd:geographicIdentifier', 'geoId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_680', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1393', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1394', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1395', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_681', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_BoundingPolygon_682', 'gmd:EX_BoundingPolygon', 'BoundPoly', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_683', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('polygon_684', 'gmd:polygon', 'polygon', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('temporalElement_685', 'gmd:temporalElement', 'tempEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_TemporalExtent_686', 'gmd:EX_TemporalExtent', 'TempExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extent_687', 'gmd:extent', 'exTemp', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('TimePeriod_688', 'gml:TimePeriod', 'TimePeriod', 'ISO 19108', NULL, 'class', 'true', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('beginPosition_689', 'gml:beginPosition', 'beginPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('endPosition_690', 'gml:endPosition', 'endPosition', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('verticalElement_691', 'gmd:verticalElement', 'vertEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('Ex_VerticalExtent_692', 'gmd:Ex_VerticalExtent', 'VertExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('minimumValue_693', 'gmd:minimumValue', 'vertMinVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('maximumValue_694', 'gmd:maximumValue', 'vertMaxVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('unitOfMeasure_695', 'gmd:unitOfMeasure', 'vertUoM', 'ISO 19115', 'uom', 'text', 'M', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('verticalDatum_696', 'gmd:verticalDatum', 'vertDatum', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('attributes_448', 'gmd:attributes', 'attribSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('features_449', 'gmd:features', 'featSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('featureInstances_450', 'gmd:featureInstances', 'featIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('attributeInstances_541', 'gmd:attributeInstances', 'attribIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dataset_542', 'gmd:dataset', 'datasetSet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('other_543', 'gmd:other', 'other', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('attributes_235', 'gmd:attributes', 'attribSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('features_236', 'gmd:features', 'featSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('featureInstances_237', 'gmd:featureInstances', 'featIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('attributeInstances_238', 'gmd:attributeInstances', 'attribIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dataset_239', 'gmd:dataset', 'datasetSet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('other_240', 'gmd:other', 'other', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('DQ_CompletenessCommission_697', 'gmd:DQ_CompletenessCommission', 'DQCompComm', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 713', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 714', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_715', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1396', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1397', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1398', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 716', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 717', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 718', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 719', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_720', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1399', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1400', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1401', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1402', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1403', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1404', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1405', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1406', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1407', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1408', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1409', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1410', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1411', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1412', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1413', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1414', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1415', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1416', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1417', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1418', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1419', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1420', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1421', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1422', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 721', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 722', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1423', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1424', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1425', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1426', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1427', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1428', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1429', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1430', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1431', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1432', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_CompletenessOmission_698', 'gmd:DQ_CompletenessOmission', 'DQCompOm', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 724', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 725', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_726', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1433', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1434', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1435', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 727', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 728', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 729', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 730', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_731', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1436', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1437', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1438', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1439', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1440', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1441', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1442', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1443', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1444', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1445', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1446', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1447', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1448', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1449', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1450', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1451', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1452', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1453', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1454', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1455', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1456', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1457', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1458', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1459', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 732', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 733', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1460', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1461', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1462', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1463', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1464', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1465', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1466', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1467', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1468', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1469', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_ConceptualConsistency_699', 'gmd:DQ_ConceptualConsistency', 'DQConcConsis', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 735', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 736', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_737', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1470', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1471', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1472', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 738', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 739', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 740', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 741', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_742', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1473', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1474', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1475', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1476', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1477', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1478', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1479', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1480', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1481', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1482', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1483', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1484', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1485', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1486', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1487', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1488', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1489', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1490', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1491', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1492', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1493', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1494', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1495', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1496', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 743', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 744', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1497', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1498', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1499', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1500', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1501', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1502', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1503', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1504', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1505', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1506', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_DomainConsistency_700', 'gmd:DQ_DomainConsistency', 'DQDomConsis', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 746', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 747', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_748', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1507', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1508', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1509', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 749', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 750', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 751', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 752', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_753', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1510', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1511', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1512', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1513', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1514', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1515', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1516', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1517', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1518', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1519', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1520', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1521', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1522', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1523', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1524', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1525', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1526', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1527', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1528', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1529', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1530', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1531', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1532', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1533', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 754', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 755', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1534', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1535', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1536', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1537', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1538', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1539', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1540', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1541', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1542', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1543', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_FormatConsistency_701', 'gmd:DQ_FormatConsistency', 'DQFormConsis', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 757', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 758', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_759', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1544', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1545', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1546', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 760', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 761', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 762', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 763', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_764', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1547', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1548', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1549', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1550', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1551', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1552', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1553', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1554', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1555', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1556', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1557', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1558', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1559', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1560', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1561', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1562', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1563', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1564', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1565', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1566', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1567', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1568', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1569', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1570', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 765', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 766', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1571', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1572', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1573', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1574', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1575', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1576', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1577', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1578', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1579', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1580', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_TopologicalConsistency_702', 'gmd:DQ_TopologicalConsistency', 'DQTopConsis', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 768', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 769', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_770', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1581', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1582', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1583', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 771', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 772', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 773', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 774', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_775', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1584', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1585', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1586', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1587', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1588', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1589', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1590', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1591', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1592', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1593', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1594', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1595', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1596', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1597', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1598', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1599', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1600', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1601', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1602', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1603', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1604', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1605', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1606', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1607', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 776', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 777', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1608', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1609', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1610', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1611', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1612', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1613', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1614', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1615', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1616', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1617', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_AbsoluteExternalPositionalAccuracy_703', 'gmd:DQ_AbsoluteExternalPositionalAccuracy', 'DQAbsExtPosAcc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 779', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 780', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_781', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1618', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1619', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1620', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 782', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 783', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 784', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 785', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_786', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1621', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1622', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1623', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1624', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1625', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1626', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1627', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1628', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1629', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1630', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1631', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1632', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1633', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1634', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1635', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1636', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1637', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1638', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1639', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1640', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1641', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1642', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1643', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1644', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 787', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 788', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1645', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1646', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1647', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1648', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1649', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1650', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1651', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1652', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1653', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1654', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_GriddedDataPositionalAccuracy_704', 'gmd:DQ_GriddedDataPositionalAccuracy', 'DQGridDataPosAcc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 790', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 791', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_792', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1655', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1656', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1657', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 793', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 794', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 795', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 796', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_797', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1658', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1659', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1660', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1661', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1662', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1663', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1664', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1665', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1666', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1667', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1668', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1669', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1670', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1671', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1672', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1673', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1674', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1675', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1676', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1677', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1678', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1679', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1680', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1681', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 798', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 799', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1682', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1683', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1684', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1685', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1686', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1687', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1688', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1689', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1690', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1691', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_RelativeInternalPositionalAccuracy_705', 'gmd:DQ_RelativeInternalPositionalAccuracy', 'DQRelIntPosAcc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 801', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 802', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_803', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1692', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1693', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1694', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 804', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 805', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 806', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 807', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_808', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1695', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1696', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1697', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1698', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1699', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1700', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1701', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1702', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1703', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1704', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1705', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1706', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1707', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1708', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1709', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1710', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1711', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1712', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1713', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1714', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1715', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1716', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1717', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1718', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 809', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 810', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1719', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1720', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1721', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1722', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1723', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1724', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1725', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1726', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1727', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1728', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_AccuracyOfATimeMeasurement_706', 'gmd:DQ_AccuracyOfATimeMeasurement', 'DQAccTimeMeas', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 812', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 813', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_814', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1729', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1730', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1731', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 815', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 816', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 817', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 818', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_819', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1732', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1733', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1734', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1735', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1736', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1737', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1738', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1739', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1740', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1741', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1742', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1743', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1744', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1745', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1746', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1747', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1748', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1749', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1750', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1751', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1752', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1753', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1754', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1755', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 820', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 821', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1756', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1757', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1758', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1759', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1760', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1761', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1762', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1763', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1764', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1765', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_TemporalConsistency_707', 'gmd:DQ_TemporalConsistency', 'DQTempConsis', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 823', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 824', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_825', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1766', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1767', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1768', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 826', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 827', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 828', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 829', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_830', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1769', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1770', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1771', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1772', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1773', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1774', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1775', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1776', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1777', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1778', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1779', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1780', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1781', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1782', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1783', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1784', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1785', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1786', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1787', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1788', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1789', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1790', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1791', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1792', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 831', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 832', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1793', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1794', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1795', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1796', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1797', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1798', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1799', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1800', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1801', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1802', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_TemporalValidity_708', 'gmd:DQ_TemporalValidity', 'DQTempValid', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 834', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 835', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_836', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1803', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1804', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1805', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 837', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 838', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 839', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 840', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_841', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1806', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1807', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1808', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1809', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1810', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1811', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1812', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1813', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1814', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1815', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1816', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1817', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1818', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1819', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1820', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1821', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1822', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1823', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1824', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1825', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1826', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1827', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1828', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1829', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 842', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 843', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1830', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1831', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1832', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1833', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1834', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1835', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1836', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1837', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1838', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1839', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_ThematicClassificationCorrectness_709', 'gmd:DQ_ThematicClassificationCorrectness', 'DQThemClassCor', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 845', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 846', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_847', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1840', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1841', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1842', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 848', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 849', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 850', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 851', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_852', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1843', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1844', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1845', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1846', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1847', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1848', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1849', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1850', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1851', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1852', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1853', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1854', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1855', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1856', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1857', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1858', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1859', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1860', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1861', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1862', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1863', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1864', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1865', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1866', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 853', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 854', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1867', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1868', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1869', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1870', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1871', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1872', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1873', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1874', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1875', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1876', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_NonQuantitativeAttributeAccuracy_710', 'gmd:DQ_NonQuantitativeAttributeAccuracy', 'DQNonQuantAttAcc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 856', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 857', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_858', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1877', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1878', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1879', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 859', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 860', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 861', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 862', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_863', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1880', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1881', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1882', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1883', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1884', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1885', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1886', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1887', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1888', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1889', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1890', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1891', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1892', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1893', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1894', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1895', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1896', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1897', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1898', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1899', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1900', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1901', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1902', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1903', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 864', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 865', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1904', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1905', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1906', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1907', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1908', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1909', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1910', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1911', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1912', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1913', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeAttributeAccuracy_711', 'gmd:DQ_QuantitativeAttributeAccuracy', 'DQQuanAttAcc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 867', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 868', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_869', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1914', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1915', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1916', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 870', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 871', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 872', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 873', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_874', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1917', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1918', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1919', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1920', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1921', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1922', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1923', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1924', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1925', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1926', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1927', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1928', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1929', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1930', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1931', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1932', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1933', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1934', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1935', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1936', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1937', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1938', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1939', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1940', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 875', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 876', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_1941', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_1942', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_1943', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_1944', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1945', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_1946', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_1947', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_1948', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_1949', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_1950', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('attributes_882', 'gmd:attributes', 'attribSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('features_883', 'gmd:features', 'featSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('featureInstances_884', 'gmd:featureInstances', 'featIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('attributeInstances_885', 'gmd:attributeInstances', 'attribIntSet', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('dataset_886', 'gmd:dataset', '', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('other_887', 'gmd:other', '', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('locale_882', 'gmd:locale', 'locale', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('PT_Locale_886', 'gmd:PT_Locale', 'PT_Locale', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('language_883', 'gmd:languageCode', 'language', 'ISO 19115', 'LangCd', 'list_ext', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('country_884', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('characterEncoding_885', 'gmd:characterEncoding', 'characterEncoding', 'ISO 19115', 'CharSetCd', 'list', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('relatedCitation_887', 'fra:relatedCitation', 'relatedCitation', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_891', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1951', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1952', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1953', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1954', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1955', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1956', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1957', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1958', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1959', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1960', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1961', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1962', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1963', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1964', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1965', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1966', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1967', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1968', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1969', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1970', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1971', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1972', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1973', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1974', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_889', 'fra:citation', 'CstCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_894', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1975', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1976', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1977', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1978', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1979', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1980', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1981', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1982', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1983', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1984', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1985', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1986', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1987', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1988', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1989', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1990', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1991', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1992', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1993', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1994', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1995', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1996', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1997', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1998', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_897', 'fra:citation', 'SecCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_900', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1999', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2000', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2001', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2002', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2003', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2004', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2005', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2006', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2007', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2008', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2009', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2010', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2011', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2012', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2013', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2014', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2015', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2016', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2017', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2018', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2019', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2020', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2021', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2022', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_888', 'fra:citation', 'LegCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_892', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2023', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2024', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2025', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2026', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2027', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2028', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2029', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2030', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2031', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2032', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2033', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2034', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2035', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2036', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2037', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2038', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2039', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2040', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2041', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2042', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2043', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2044', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2045', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2046', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_895', 'fra:citation', 'LegCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_898', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2047', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2048', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2049', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2050', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2051', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2052', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2053', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2054', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2055', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2056', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2057', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2058', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2059', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2060', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2061', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2062', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2063', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2064', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2065', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2066', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2067', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2068', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2069', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2070', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_890', 'fra:citation', 'SecCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_893', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2071', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2072', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2073', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2074', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2075', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2076', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2077', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2078', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2079', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2080', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2081', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2082', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2083', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2084', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2085', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2086', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2087', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2088', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2089', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2090', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2091', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2092', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2093', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2094', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citation_896', 'fra:citation', 'CstCit', 'ISO 19115 FRA 1.0', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_899', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2095', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2096', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2097', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2098', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2099', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2100', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2101', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2102', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2103', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2104', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2105', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2106', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2107', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2108', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2109', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2110', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2111', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2112', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2113', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2114', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2115', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2116', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2117', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2118', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_ReferenceSystem_901', 'fra:FRA_IndirectReferenceSystem', 'RefSystem', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('referenceSystemIdentifier_902', 'gmd:referenceSystemIdentifier', 'refSysId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('RS_Identifier_903', 'gmd:RS_Identifier', 'RsIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_904', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_905', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2119', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2120', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2121', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2122', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2123', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2124', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2125', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2126', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2127', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2128', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2129', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2130', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2131', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2132', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2133', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2134', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2135', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2136', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2137', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2138', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2139', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2140', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2141', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2142', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('code_906', 'gmd:code', 'identCode', 'ISO 19115', 'RefSysCd', 'list_ext', 'M', '1', 'false', 'true', 'gmx:Anchor'); INSERT INTO elmnt_mtd VALUES ('codeSpace_907', 'gmd:codeSpace', 'identCodeSpace', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('version_908', 'gmd:version', 'identVrsn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('QE_Usability_909', 'gmd:QE_Usability', 'Usability', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('nameOfMeasure_ 910', 'gmd:nameOfMeasure', 'measName', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureIdentification_ 911', 'gmd:measureIdentification', 'measId', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_912', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2143', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_2144', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2145', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('measureDescription_ 913', 'gmd:measureDescription', 'measDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodType_ 914', 'gmd:evaluationMethodType', 'evalMethType', 'ISO 19115', 'EvalMethTypeCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationMethodDescription_ 915', 'gmd:evaluationMethodDescription', 'evalMethDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('evaluationProcedure_ 916', 'gmd:evaluationProcedure', 'evalProc', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_917', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_2146', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2147', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2148', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2149', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2150', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2151', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2152', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2153', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2154', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2155', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2156', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2157', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2158', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2159', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2160', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2161', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2162', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2163', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2164', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2165', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2166', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2167', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2168', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2169', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('dateTime_ 918', 'gmd:dateTime', 'measDateTm', 'ISO 19115', NULL, 'datetime', 'O', 'N', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('result_ 919', 'gmd:result', 'measResult', 'ISO 19115', NULL, 'rubrique', 'M', '2', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_ConformanceResult_2170', 'gmd:DQ_ConformanceResult', 'ConResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('specification_2171', 'gmd:specification', 'conSpec', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('explanation_2172', 'gmd:explanation', 'conExpl', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pass_2173', 'gmd:pass', 'conPass', 'ISO 19115', NULL, 'boolean', 'M', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_2174', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('DQ_QuantitativeResult_2175', 'gmd:DQ_QuantitativeResult', 'QuanResult', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('valueType_2176', 'gmd:valueType', 'quanValType', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:RecordType'); INSERT INTO elmnt_mtd VALUES ('valueUnit_2177', 'gmd:valueUnit', 'quanValUnit', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:UnitOfMeasure'); INSERT INTO elmnt_mtd VALUES ('errorStatistic_2178', 'gmd:errorStatistic', 'errStat', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('value_2179', 'gmd:value', 'quanVal', 'ISO 19115', NULL, 'text', 'M', 'N', 'false', 'true', 'gco:Record'); INSERT INTO elmnt_mtd VALUES ('MemberName_920', 'gco:MemberName', 'MemberName', 'ISO 19103', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('aName_921', 'gco:aName', 'aName', 'ISO 19103', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('attributeType_922', 'gco:attributeType', 'attributeType', 'ISO 19103', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('TypeName_923', 'gco:TypeName', 'TypeName', 'ISO 19103', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('aName_924', 'gco:aName', 'aName', 'ISO 19103', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2180', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2181', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2182', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2183', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2184', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2185', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2186', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2187', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2188', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2189', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2190', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2191', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2192', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2193', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2194', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2195', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2196', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2197', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2198', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2199', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2200', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2201', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2202', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2203', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2204', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2205', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2206', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2207', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2208', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2209', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2210', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2211', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2212', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2213', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2214', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2215', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2216', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2217', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2218', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2219', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2220', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2221', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2222', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2223', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2224', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2225', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2226', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2227', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2228', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2229', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2230', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2231', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2232', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2233', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2234', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2235', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2236', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2237', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2238', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2239', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2240', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2241', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2242', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2243', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2244', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2245', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2246', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2247', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2248', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2249', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2250', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2251', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2252', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2253', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2254', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2255', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2256', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2257', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2258', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2259', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2260', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2261', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2262', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2263', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2264', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2265', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2266', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2267', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2268', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2269', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2270', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2271', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2272', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2273', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2274', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2275', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2276', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2277', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2278', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2279', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2280', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2281', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2282', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2283', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2284', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2285', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2286', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2287', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2288', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2289', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2290', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2291', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2292', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2293', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2294', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2295', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2296', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2297', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2298', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2299', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2300', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2301', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2302', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2303', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2304', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2305', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2306', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2307', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2308', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2309', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2310', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2311', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2312', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2313', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2314', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2315', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2316', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2317', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2318', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2319', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2320', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2321', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2322', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2323', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2324', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2325', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2326', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2327', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2328', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2329', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2330', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2331', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2332', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2333', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2334', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2335', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2336', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2337', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2338', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2339', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2340', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2341', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2342', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2343', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2344', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2345', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2346', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2347', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2348', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2349', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2350', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2351', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2352', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2353', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2354', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2355', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2356', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2357', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2358', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2359', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2360', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2361', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2362', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2363', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2364', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2365', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2366', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2367', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2368', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2369', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2370', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2371', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2372', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2373', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2374', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2375', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2376', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2377', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2378', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2379', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2380', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2381', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2382', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2383', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2384', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2385', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2386', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2387', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2388', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2389', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2390', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2391', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2392', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2393', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2394', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2395', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2396', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2397', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2398', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2399', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2400', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2401', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2402', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2403', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2404', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2405', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2406', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2407', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2408', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2409', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2410', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2411', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2412', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2413', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2414', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2415', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2416', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2417', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2418', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2419', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2420', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2421', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2422', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2423', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2424', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2425', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2426', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2427', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2428', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2429', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2430', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2431', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2432', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2433', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2434', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2435', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2436', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2437', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2438', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2439', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2440', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2441', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2442', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2443', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2444', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2445', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2446', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2447', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2448', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2449', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2450', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2451', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2452', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2453', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2454', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2455', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2456', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2457', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2458', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2459', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2460', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2461', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2462', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2463', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2464', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2465', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2466', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2467', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2468', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2469', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2470', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2471', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2472', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2473', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2474', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2475', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2476', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2477', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2478', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2479', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2480', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2481', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2482', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2483', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2484', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2485', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2486', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2487', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2488', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2489', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2490', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2491', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2492', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2493', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2494', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2495', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2496', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2497', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2498', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2499', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2500', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2501', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2502', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2503', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2504', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2505', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2506', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2507', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2508', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2509', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2510', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2511', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2512', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2513', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2514', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2515', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2516', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2517', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2518', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2519', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2520', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2521', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2522', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2523', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2524', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2525', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2526', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2527', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2528', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2529', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2530', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2531', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2532', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2533', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2534', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2535', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2536', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2537', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2538', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2539', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2540', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2541', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2542', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2543', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2544', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2545', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2546', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2547', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2548', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2549', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2550', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2551', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2552', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2553', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2554', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2555', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2556', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2557', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2558', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2559', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2560', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2561', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2562', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2563', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2564', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2565', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2566', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2567', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2568', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2569', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2570', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2571', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2572', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2573', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2574', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2575', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2576', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2577', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2578', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2579', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2580', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2581', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2582', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2583', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2584', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2585', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2586', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2587', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2588', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2589', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2590', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2591', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2592', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2593', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2594', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2595', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2596', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2597', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2598', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2599', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2600', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2601', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2602', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2603', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2604', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2605', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2606', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2607', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2608', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2609', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2610', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2611', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2612', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2613', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2614', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2615', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2616', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2617', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2618', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2619', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2620', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2621', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2622', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2623', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2624', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2625', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2626', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2627', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2628', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2629', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2630', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2631', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2632', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2633', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2634', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2635', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2636', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2637', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2638', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2639', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2640', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2641', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2642', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2643', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2644', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2645', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2646', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2647', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2648', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2649', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2650', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2651', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2652', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2653', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2654', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2655', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2656', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2657', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2658', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2659', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2660', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2661', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2662', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2663', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2664', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2665', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2666', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2667', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2668', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2669', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2670', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2671', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2672', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2673', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2674', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2675', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2676', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2677', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2678', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2679', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2680', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2681', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2682', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2683', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2684', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2685', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2686', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2687', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2688', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2689', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2690', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2691', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2692', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2693', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2694', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2695', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2696', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2697', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2698', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2699', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2700', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2701', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2702', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2703', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2704', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2705', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2706', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2707', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2708', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2709', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2710', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2711', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2712', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2713', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2714', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2715', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2716', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2717', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2718', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2719', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2720', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2721', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2722', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2723', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2724', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2725', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2726', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2727', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2728', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2729', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2730', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2731', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2732', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2733', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2734', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2735', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2736', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2737', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2738', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2739', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2740', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2741', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2742', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2743', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2744', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2745', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2746', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2747', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2748', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2749', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2750', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2751', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2752', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2753', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2754', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2755', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2756', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2757', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2758', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2759', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2760', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2761', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2762', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2763', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2764', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2765', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2766', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2767', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2768', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2769', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2770', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2771', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2772', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2773', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2774', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2775', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2776', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2777', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2778', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2779', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2780', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2781', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2782', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2783', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2784', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2785', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2786', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2787', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2788', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2789', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2790', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2791', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2792', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2793', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2794', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2795', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2796', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2797', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2798', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2799', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2800', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2801', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2802', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2803', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2804', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2805', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2806', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2807', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2808', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2809', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2810', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2811', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2812', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2813', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2814', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2815', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2816', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2817', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2818', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2819', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2820', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2821', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2822', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2823', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2824', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2825', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2826', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2827', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2828', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2829', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2830', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2831', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2832', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2833', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2834', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2835', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2836', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2837', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2838', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2839', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2840', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2841', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2842', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2843', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2844', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2845', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2846', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2847', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2848', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2849', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2850', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2851', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2852', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2853', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2854', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2855', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2856', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2857', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2858', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2859', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2860', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2861', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2862', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2863', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2864', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2865', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2866', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2867', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2868', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2869', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2870', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2871', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2872', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2873', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2874', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2875', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2876', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2877', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2878', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2879', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2880', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2881', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2882', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2883', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2884', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2885', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2886', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2887', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2888', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2889', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2890', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2891', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2892', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2893', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2894', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2895', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2896', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2897', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2898', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2899', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2900', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2901', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2902', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2903', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2904', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2905', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2906', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2907', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2908', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2909', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2910', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2911', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2912', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2913', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2914', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2915', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2916', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2917', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2918', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2919', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2920', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2921', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2922', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2923', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2924', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2925', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2926', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2927', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2928', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2929', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2930', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2931', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2932', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2933', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2934', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2935', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2936', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2937', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2938', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2939', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_2940', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_2941', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_2942', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_2943', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_2944', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_2945', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_2946', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_2947', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_2948', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_2949', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_2950', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_2951', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_2952', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_2953', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_2954', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_2955', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_2956', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_2957', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_2958', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_2959', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_2960', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_2961', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_2962', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_2963', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_2964', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_2965', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_2966', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_2967', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2968', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2969', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2970', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2971', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2972', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2973', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2974', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2975', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_2976', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_2977', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_2978', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_2979', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_2980', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_2981', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_2982', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_2983', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_2984', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_2985', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_2986', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_2987', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_2988', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_2989', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_2990', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_2991', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_2992', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_2993', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_2994', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_2995', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_2996', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_2997', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_2998', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_2999', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3000', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3001', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3002', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3003', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3004', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3005', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3006', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3007', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3008', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3009', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3010', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3011', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3012', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3013', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3014', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3015', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3016', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3017', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3018', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3019', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3020', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3021', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3022', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3023', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3024', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3025', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3026', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3027', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3028', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3029', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3030', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3031', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3032', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3033', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3034', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3035', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3036', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3037', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3038', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3039', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3040', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3041', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3042', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3043', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3044', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3045', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3046', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3047', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3048', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3049', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3050', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3051', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3052', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3053', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3054', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3055', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3056', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3057', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3058', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3059', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3060', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3061', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3062', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3063', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3064', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3065', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3066', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3067', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3068', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3069', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3070', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3071', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3072', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3073', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3074', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3075', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3076', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3077', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3078', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3079', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3080', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3081', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3082', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3083', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3084', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3085', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3086', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3087', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3088', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3089', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3090', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3091', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3092', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3093', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3094', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3095', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3096', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3097', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3098', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3099', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3100', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3101', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3102', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3103', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3104', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3105', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3106', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3107', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3108', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3109', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3110', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3111', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3112', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3113', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3114', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3115', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3116', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3117', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3118', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3119', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3120', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3121', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3122', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3123', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3124', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3125', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3126', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3127', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3128', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3129', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3130', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3131', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3132', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3133', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3134', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3135', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3136', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3137', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3138', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3139', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3140', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3141', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3142', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3143', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3144', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3145', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3146', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3147', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3148', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3149', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3150', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3151', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3152', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3153', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3154', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3155', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3156', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3157', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3158', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3159', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3160', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3161', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3162', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3163', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3164', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3165', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3166', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3167', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3168', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3169', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3170', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3171', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3172', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3173', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3174', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3175', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3176', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3177', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3178', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3179', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3180', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3181', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3182', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3183', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3184', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3185', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3186', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3187', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3188', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3189', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3190', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3191', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3192', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3193', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3194', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3195', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3196', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3197', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3198', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3199', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3200', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3201', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3202', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3203', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3204', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3205', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3206', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3207', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3208', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3209', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3210', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3211', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3212', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3213', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3214', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3215', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3216', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3217', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3218', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3219', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3220', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3221', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3222', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3223', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3224', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3225', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3226', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3227', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3228', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3229', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3230', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3231', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3232', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3233', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3234', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3235', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3236', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3237', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3238', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3239', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3240', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3241', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3242', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3243', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3244', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3245', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3246', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3247', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3248', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3249', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3250', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3251', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3252', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3253', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3254', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3255', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3256', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3257', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3258', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3259', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3260', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3261', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3262', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3263', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3264', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3265', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3266', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3267', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3268', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3269', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3270', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3271', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3272', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3273', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3274', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3275', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3276', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3277', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3278', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3279', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3280', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3281', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3282', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3283', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3284', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3285', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3286', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3287', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3288', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3289', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3290', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3291', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3292', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3293', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3294', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3295', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3296', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3297', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3298', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3299', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3300', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3301', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3302', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3303', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3304', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3305', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3306', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3307', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3308', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3309', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3310', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3311', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3312', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3313', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3314', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3315', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3316', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3317', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3318', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3319', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3320', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3321', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3322', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3323', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3324', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3325', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3326', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3327', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3328', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3329', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3330', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3331', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3332', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3333', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3334', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3335', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3336', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3337', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3338', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3339', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3340', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3341', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3342', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3343', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3344', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3345', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3346', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3347', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3348', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3349', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3350', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3351', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3352', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3353', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3354', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3355', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3356', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3357', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3358', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3359', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3360', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3361', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3362', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3363', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3364', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3365', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3366', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3367', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3368', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3369', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3370', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3371', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3372', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3373', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3374', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3375', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3376', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3377', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3378', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3379', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3380', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3381', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3382', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3383', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3384', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3385', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3386', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3387', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3388', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3389', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3390', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3391', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3392', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3393', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3394', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3395', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3396', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3397', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3398', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3399', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3400', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3401', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3402', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3403', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3404', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3405', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3406', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3407', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3408', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3409', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3410', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3411', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3412', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3413', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3414', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3415', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3416', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3417', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3418', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3419', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3420', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3421', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3422', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3423', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3424', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3425', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3426', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3427', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3428', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3429', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3430', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3431', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3432', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3433', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3434', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3435', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3436', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3437', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3438', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3439', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3440', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3441', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3442', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3443', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3444', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3445', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3446', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3447', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3448', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3449', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3450', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3451', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3452', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3453', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3454', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3455', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3456', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3457', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3458', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3459', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3460', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3461', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3462', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3463', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3464', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3465', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3466', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3467', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3468', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3469', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3470', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3471', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3472', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3473', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3474', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3475', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3476', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3477', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3478', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3479', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3480', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3481', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3482', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3483', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3484', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3485', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3486', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3487', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3488', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3489', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3490', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3491', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3492', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3493', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3494', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3495', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3496', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3497', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3498', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3499', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3500', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3501', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3502', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3503', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3504', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3505', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3506', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3507', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3508', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3509', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3510', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3511', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3512', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3513', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3514', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3515', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3516', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3517', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3518', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3519', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3520', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3521', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3522', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3523', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3524', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3525', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3526', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3527', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3528', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3529', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3530', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3531', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3532', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3533', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3534', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3535', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3536', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3537', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3538', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3539', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3540', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3541', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3542', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3543', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3544', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3545', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3546', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3547', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3548', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3549', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3550', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3551', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3552', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3553', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3554', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3555', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3556', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3557', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3558', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3559', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3560', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3561', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3562', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3563', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3564', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3565', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3566', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3567', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3568', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3569', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3570', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3571', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3572', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3573', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3574', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3575', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3576', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3577', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3578', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3579', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3580', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3581', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3582', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3583', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3584', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3585', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3586', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3587', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3588', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3589', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3590', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3591', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3592', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3593', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3594', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3595', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3596', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3597', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3598', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3599', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3600', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3601', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3602', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3603', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3604', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3605', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3606', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3607', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3608', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3609', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3610', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3611', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3612', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3613', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3614', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3615', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3616', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3617', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3618', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3619', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3620', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3621', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3622', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3623', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3624', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3625', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3626', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3627', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3628', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3629', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3630', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3631', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3632', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3633', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3634', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3635', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3636', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3637', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3638', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3639', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3640', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3641', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3642', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3643', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3644', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3645', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3646', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3647', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3648', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3649', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3650', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3651', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3652', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3653', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3654', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3655', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3656', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3657', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3658', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3659', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3660', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3661', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3662', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3663', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3664', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3665', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3666', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3667', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3668', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3669', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3670', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3671', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3672', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3673', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3674', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3675', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3676', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3677', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3678', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3679', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3680', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3681', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3682', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3683', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3684', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3685', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3686', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3687', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3688', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3689', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3690', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3691', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3692', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3693', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3694', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3695', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3696', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3697', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3698', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3699', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3700', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3701', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3702', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3703', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3704', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3705', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3706', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3707', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3708', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3709', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3710', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3711', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3712', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3713', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3714', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3715', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3716', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3717', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3718', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3719', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3720', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3721', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3722', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3723', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3724', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3725', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3726', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3727', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3728', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3729', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3730', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3731', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3732', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3733', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3734', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3735', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3736', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3737', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3738', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3739', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3740', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3741', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3742', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3743', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3744', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3745', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3746', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3747', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3748', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3749', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3750', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3751', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3752', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3753', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3754', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3755', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3756', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3757', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3758', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3759', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3760', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3761', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3762', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3763', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3764', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3765', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3766', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3767', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3768', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3769', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3770', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3771', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3772', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3773', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3774', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3775', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3776', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3777', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3778', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3779', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3780', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3781', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3782', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3783', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3784', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3785', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3786', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3787', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3788', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3789', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3790', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3791', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3792', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3793', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3794', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3795', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3796', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3797', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3798', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3799', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3800', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3801', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3802', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3803', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_3804', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_3805', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_3806', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_3807', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_3808', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_3809', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_3810', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_3811', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_3812', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_3813', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_3814', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_3815', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_3816', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_3817', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_3818', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_3819', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_3820', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_3821', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_3822', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_3823', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_3824', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_3825', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_3826', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_3827', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3828', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3829', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3830', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3831', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3832', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3833', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3834', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3835', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3836', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3837', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3838', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3839', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3840', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3841', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3842', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3843', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3844', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3845', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3846', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3847', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3848', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3849', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3850', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3851', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3852', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3853', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3854', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3855', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3856', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3857', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3858', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3859', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3860', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3861', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3862', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3863', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3864', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3865', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3866', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3867', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3868', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3869', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3870', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3871', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3872', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3873', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3874', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3875', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3876', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3877', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3878', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3879', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3880', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3881', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3882', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3883', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3884', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3885', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3886', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3887', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3888', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3889', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3890', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3891', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3892', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3893', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3894', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3895', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3896', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3897', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3898', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3899', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3900', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3901', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3902', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3903', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3904', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3905', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3906', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3907', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3908', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3909', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3910', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3911', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3912', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3913', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3914', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3915', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3916', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3917', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3918', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3919', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3920', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3921', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3922', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3923', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3924', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3925', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3926', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3927', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3928', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3929', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3930', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3931', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3932', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3933', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3934', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3935', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3936', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3937', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3938', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3939', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3940', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3941', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3942', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3943', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3944', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3945', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3946', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3947', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3948', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3949', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3950', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3951', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3952', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3953', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3954', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3955', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3956', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3957', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3958', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3959', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3960', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3961', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3962', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3963', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3964', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3965', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3966', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3967', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3968', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3969', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3970', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3971', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_3972', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_3973', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_3974', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_3975', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_3976', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_3977', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_3978', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_3979', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_3980', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_3981', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_3982', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_3983', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_3984', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_3985', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_3986', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_3987', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_3988', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_3989', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_3990', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_3991', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_3992', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_3993', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_3994', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_3995', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_3996', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_3997', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_3998', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_3999', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_4000', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_4001', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_4002', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_4003', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_4004', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_4005', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_4006', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_4007', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_4008', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_4009', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_4010', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_4011', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_4012', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_4013', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_4014', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_4015', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_4016', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_4017', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_4018', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_4019', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_4020', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_4021', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_4022', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_4023', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_4024', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_4025', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_4026', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_4027', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_4028', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_4029', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_4030', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_4031', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_4032', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_4033', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_4034', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_4035', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_4036', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_4037', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_4038', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_4039', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_4040', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_4041', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_4042', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_4043', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_4044', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_4045', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_4046', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_4047', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_4048', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_4049', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_4050', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_4051', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_4052', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_4053', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_4054', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_4055', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_4056', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_4057', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_4058', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_4059', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_4060', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_4061', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_4062', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_4063', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_4064', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_4065', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_4066', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_4067', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_4068', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_4069', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_4070', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_4071', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_4072', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_4073', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_4074', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_4075', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_4076', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_4077', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_4078', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_4079', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_4080', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_4081', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_4082', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_4083', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_4084', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_4085', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_4086', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_4087', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_4088', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_4089', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_4090', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_4091', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_4092', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_4093', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_4094', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_4095', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_4096', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_4097', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_4098', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_4099', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_4100', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_4101', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_4102', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_4103', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_4104', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_4105', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_4106', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_4107', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_4108', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_4109', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_4110', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_4111', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_4112', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_4113', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_4114', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_4115', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_4116', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_4117', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_4118', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_4119', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_4120', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_4121', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_4122', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_4123', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_4124', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_4125', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_4126', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_4127', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('axisUnits_520', 'gco:UomLength', 'axisUnits', 'ISO 19115', 'uom', 'list_ext', 'M', '1', 'false', 'true', 'gco:UomLength'); INSERT INTO elmnt_mtd VALUES ('MD_ServiceIdentification_69', 'fra:FRA_ServiceIdentification', 'SerIdent', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('citation_936', 'gmd:citation', 'idCitation', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('abstract_963', 'gmd:abstract', 'idAbs', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_949', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_924', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_925', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_926', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_927', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_928', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_929', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_930', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_931', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_932', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_933', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_934', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_935', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_936', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_937', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_938', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_939', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_940', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_941', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_942', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_943', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_944', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_945', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_946', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_947', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('purpose_937', 'gmd:purpose', 'purpose', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('credit_938', 'gmd:credit', 'idCredit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('status_940', 'gmd:status', 'idStatus', 'ISO 19115', 'ProgCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('pointOfContact_941', 'gmd:pointOfContact', 'idPoC', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_950', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('individualName_948', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_949', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_950', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_951', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_952', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_953', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_954', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_955', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_956', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_957', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_958', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_959', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_960', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_961', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_962', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_963', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_964', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_965', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_966', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_967', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_968', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_969', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_970', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_971', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_972', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_973', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_974', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_975', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('descriptiveKeywords_942', 'gmd:descriptiveKeywords', 'descKeys', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Keywords_951', 'gmd:MD_Keywords', 'Keywords', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('keyword_952', 'gmd:keyword', 'keyword', 'ISO 19115', NULL, 'thesaurus', 'M', 'N', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('Type_953', 'gmd:Type', 'keyTyp', 'ISO 19115', 'KeyTypCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ThesaurusName_954', 'gmd:ThesaurusName', 'thesaName', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_957', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_976', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_977', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_978', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_979', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_980', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_981', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_982', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_983', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_984', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_985', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_986', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_987', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_988', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_989', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_990', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_991', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_992', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_993', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_994', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_995', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_996', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_997', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_998', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_999', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('serviceType_925', 'srv:serviceType', 'serviceType', 'ISO 19119', NULL, 'text', 'M', '1', 'false', 'true', 'gco:LocalName'); INSERT INTO elmnt_mtd VALUES ('serviceTypeVersion_926', 'srv:serviceTypeVersion', 'serviceTypeVersion', 'ISO 19119', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('accessProperties_930', 'srv:accessProperties', 'accessProperties', 'ISO 19119', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_StandardOrderProcess_931', 'gmd:MD_StandardOrderProcess', 'StanOrdProc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('fees_964', 'gmd:fees', 'resfees', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('plannedAvailableDateTime_965', 'gmd:plannedAvailableDateTime', 'planAvDtTm', 'ISO 19115', NULL, 'datetime', 'O', '1', 'false', 'true', 'gco:DateTime'); INSERT INTO elmnt_mtd VALUES ('orderingInstructions_966', 'gmd:orderingInstructions', 'ordInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('turnaround_967', 'gmd:turnaround', 'ordTurn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('restrictions_932', 'restrictions', 'srv:restrictions', 'ISO 19119', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Constraints_933', 'fra:FRA_Constraints', 'Conts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_968', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_980', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1000', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1001', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1002', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1003', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1004', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1005', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1006', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1007', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1008', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1009', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1010', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1011', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1012', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1013', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1014', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1015', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1016', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1017', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1018', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1019', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1020', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1021', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1022', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1023', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_LegalConstraints_955', 'fra:FRA_LegalConstraints', 'LegConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_969', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('accessConstraints_970', 'gmd:accessConstraints', 'accessConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('useConstraints_971', 'gmd:useConstraints', 'useConsts', 'ISO 19115', 'RestrictCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherConstraints_972', 'gmd:otherConstraints', 'othConsts', 'ISO 19115', NULL, 'text', 'C', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_979', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1024', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1025', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1026', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1027', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1028', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1029', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1030', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1031', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1032', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1033', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1034', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1035', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1036', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1037', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1038', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1039', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1040', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1041', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1042', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1043', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1044', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1045', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1046', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1047', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('MD_SecurityConstraints_956', 'fra:FRA_SecurityConstraints', 'SecConsts', 'ISO 19115 FRA 1.0', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('useLimitation_973', 'gmd:useLimitation', 'useLimit', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classification_974', 'gmd:classification', 'class', 'ISO 19115', 'ClassificationCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('userNote_975', 'gmd:userNote', 'userNote', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('classificationSystem_976', 'gmd:classificationSystem', 'classSys', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('handlingDescription_977', 'gmd:handlingDescription', 'handDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('CI_Citation_978', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('title_1048', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1049', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1050', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1051', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1052', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1053', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1054', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1055', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1056', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1057', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1058', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1059', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1060', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1061', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1062', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1063', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1064', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1065', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1066', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1067', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1068', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1069', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1070', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1071', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('containsOperations_934', 'srv:containsOperations', 'containsOperations', 'ISO 19119', NULL, 'rubrique', 'M', 'N', 'fase', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('SV_OperationMetadata_935', 'srv:SV_OperationMetadata', 'SV_OperationMetadata', 'ISO 19119', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('operationName_943', 'srv:operationName', 'operationName', 'ISO 19119', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('DCP_944', 'srv:DCP', 'DCP', 'ISO 19119', 'DCPList', 'list', 'M', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('operationDescription_945', 'srv:operationDescription', 'operationDescription', 'ISO 19119', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('invocationName_946', 'srv:invocationName', 'invocationName', 'ISO 19119', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('connectPoint_947', 'srv:connectPoint', 'connectPoint', 'ISO 19119', NULL, 'rubrique', 'M', 'N', 'fase', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_948', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_958', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gmd:URL'); INSERT INTO elmnt_mtd VALUES ('protocol_959', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_960', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_961', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_962', 'gmd:description', 'exDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_963', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_1072', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1073', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1074', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1075', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1076', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1077', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1078', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1079', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1080', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1081', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1082', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1083', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1084', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1085', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1086', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1087', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1088', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1089', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1090', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1091', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1092', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1093', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1094', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1095', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1096', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1097', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1098', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1099', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_1100', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1101', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1102', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1103', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1104', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1105', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1106', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1107', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1108', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1109', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1110', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1111', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1112', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1113', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1114', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1115', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1116', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1117', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1118', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1119', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1120', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1121', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1122', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1123', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1124', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1125', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1126', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1127', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_1128', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1129', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1130', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1131', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1132', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1133', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1134', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1135', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1136', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1137', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1138', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1139', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1140', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1141', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1142', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1143', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1144', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1145', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1146', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1147', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1148', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1149', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1150', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1151', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1152', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1153', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1154', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1155', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_1156', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1157', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1158', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1159', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1160', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1161', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1162', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1163', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1164', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1165', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1166', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1167', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1168', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1169', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1170', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1171', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1172', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1173', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1174', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1175', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1176', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1177', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1178', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1179', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1180', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1181', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1182', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1183', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('individualName_1184', 'gmd:individualName', 'rpIndName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('organisationName_1185', 'gmd:organisationName', 'rpOrgName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('positionName_1186', 'gmd:positionName', 'rpPosName', 'ISO 19115', NULL, 'text', 'O', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInfo_1187', 'gmd:contactInfo', 'rpCntInfo', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Contact_1188', 'gmd:CI_Contact', 'Contact', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('phone_1189', 'gmd:phone', 'cntPhone', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Telephone_1190', 'gmd:CI_Telephone', 'Telephone', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('voice_1191', 'gmd:voice', 'voiceNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('facsimile_1192', 'gmd:facsimile', 'faxNum', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('address_1193', 'gmd:address', 'cntAddress', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Address_1194', 'gmd:CI_Address', 'Address', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('deliveryPoint_1195', 'gmd:deliveryPoint', 'delPoint', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('city_1196', 'gmd:city', 'city', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('administrativeArea_1197', 'gmd:administrativeArea', 'adminArea', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('postalCode_1198', 'gmd:postalCode', 'postCode', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('country_1199', 'gmd:country', 'country', 'ISO 19115', 'CountryCd', 'list_ext', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('electronicMailAddress_1200', 'gmd:electronicMailAddress', 'eMailAdd', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('onlineRessource_1201', 'gmd:onlineRessource', 'cntOnlineRes', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_OnlineResource_1202', 'gmd:CI_OnlineResource', 'OnLineRes', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('linkage_1203', 'gmd:linkage', 'linkage', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('protocol_1204', 'gmd:protocol', 'protocol', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('applicationProfile_1205', 'gmd:applicationProfile', 'appProfile', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('name_1206', 'gmd:name', 'orName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('description_1207', 'gmd:description', 'orDesc', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('function_1208', 'gmd:function', 'orFunct', 'ISO 19115', 'OnFunctCd', 'list', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('hoursOfService_1209', 'gmd:hoursOfService', 'cntHours', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('contactInstructions_1210', 'gmd:contactInstructions', 'cntInstr', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('role_1211', 'gmd:role', 'role', 'ISO 19115', 'RoleCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('extent_1011', 'gmd:extent', 'dataExt', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_Extent_981', 'gmd:EX_Extent', 'Extent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('description_982', 'gmd:description', 'exDesc', 'ISO 19115', NULL, 'text', 'C', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_983', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicBoundingBox_984', 'gmd:EX_GeographicBoundingBox', 'GeoBndBox', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_985', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('westBoundLongitude_986', 'gmd:westBoundLongitude', 'westBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('eastBoundLongitude_987', 'gmd:eastBoundLongitude', 'eastBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('southBoundLatitude_988', 'gmd:southBoundLatitude', 'southBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('northBoundLatitude_989', 'gmd:northBoundLatitude', 'northBL', 'ISO 19115', NULL, 'float', 'M', '1', 'false', 'true', 'gco:Decimal'); INSERT INTO elmnt_mtd VALUES ('geographicElement_990', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_GeographicDescription_991', 'gmd:EX_GeographicDescription', 'GeoDesc', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_992', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('geographicIdentifier_993', 'gmd:geographicIdentifier', 'geoId', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_994', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1072', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Citation_1073', 'gmd:CI_Citation', 'Citation', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1074', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('geographicElement_995', 'gmd:geographicElement', 'geoEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_BoundingPolygon_996', 'gmd:EX_BoundingPolygon', 'BoundPoly', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extentTypeCode_997', 'gmd:extentTypeCode', 'exTypeCode', 'ISO 19115', NULL, 'boolean', 'O', '1', 'false', 'true', 'gco:Boolean'); INSERT INTO elmnt_mtd VALUES ('polygon_998', 'gmd:polygon', 'polygon', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('temporalElement_999', 'gmd:temporalElement', 'tempEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('EX_TemporalExtent_1000', 'gmd:EX_TemporalExtent', 'TempExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('extent_1001', 'gmd:extent', 'exTemp', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('TM_Period_1002', 'gml:TM_Period', 'TM_Period', 'ISO 19108', NULL, 'class', 'true', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('begin_1003', 'gml:begin', 'begin', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('end_1004', 'gml:end', 'end', 'ISO 19108', NULL, 'date', 'true', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('verticalElement_1005', 'gmd:verticalElement', 'vertEle', 'ISO 19115', NULL, 'rubrique', 'C', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('Ex_VerticalExtent_1006', 'gmd:Ex_VerticalExtent', 'VertExtent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('minimumValue_1007', 'gmd:minimumValue', 'vertMinVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('maximumValue_1008', 'gmd:maximumValue', 'vertMaxVal', 'ISO 19115', NULL, 'real', 'M', '1', 'false', 'true', 'gco:Real'); INSERT INTO elmnt_mtd VALUES ('unitOfMeasure_1009', 'gmd:unitOfMeasure', 'vertUoM', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('verticalDatum_1010', 'gmd:verticalDatum', 'vertDatum', 'ISO 19115', NULL, 'rubrique', 'M', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('couplingType_1012', 'srv:couplingType', 'couplingType', 'ISO 19119', 'CouplingTypeCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('coupledResource_1013', 'srv:coupledResource', 'coupledResource', 'ISO 19119', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('SV_CoupledResource_1014', 'srv:SV_CoupledResource', 'SV_CoupledResource', 'ISO 19119', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('identifier_1015', 'srv:identifier', 'identifier', 'ISO 19119', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('operationName_1016', 'srv:operationName', 'operationName', 'ISO 19119', NULL, '', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('title_1215', 'gmd:title', 'resTitle', 'ISO 19115', NULL, 'text', 'M', '1', 'true', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('alternateTitle_1216', 'gmd:alternateTitle', 'resAltTitle', 'ISO 19115', NULL, 'text', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('datec_1217', 'gmd:date', 'resRefDate', 'ISO 19115', NULL, 'rubrique', 'M', 'N', 'true', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Date_1218', 'gmd:CI_Date', 'Date', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('date_1219', 'gmd:date', 'refDate', 'ISO 19115', NULL, 'date', 'M', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('dateType_1220', 'gmd:dateType', 'refDateType', 'ISO 19115', 'DateTypCd', 'list', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('edition_1221', 'gmd:edition', 'resEd', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('editionDate_1222', 'gmd:editionDate', 'resEdDate', 'ISO 19115', NULL, 'date', 'O', '1', 'false', 'true', 'gco:Date'); INSERT INTO elmnt_mtd VALUES ('identifier_1223', 'gmd:identifier', 'citId', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('MD_Identifier_1224', 'gmd:MD_Identifier', 'MdIdent', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('authority_1225', 'gmd:authority', 'identAuth', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('code_1226', 'gmd:code', 'identCode', 'ISO 19115', NULL, 'text', 'M', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('citedResponsibleParty_1227', 'gmd:citedResponsibleParty', 'citRespParty', 'ISO 19115', NULL, 'rubrique', 'O', 'N', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_ResponsibleParty_1228', 'gmd:CI_ResponsibleParty', 'RespParty', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('presentationForm_1229', 'gmd:presentationForm', 'presForm', 'ISO 19115', 'PresFormCd', 'list', 'O', 'N', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('series_1230', 'gmd:series', 'datasetSeries', 'ISO 19115', NULL, 'rubrique', 'O', '1', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('CI_Series_1231', 'gmd:CI_Series', 'DatasetSeries', 'ISO 19115', NULL, 'class', 'ind', 'ind', 'false', 'true', NULL); INSERT INTO elmnt_mtd VALUES ('name_1232', 'gmd:name', 'seriesName', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('issueIdentification_1233', 'gmd:issueIdentification', 'issId', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('page_1234', 'gmd:page', 'artPage', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('otherCitationDetails_1235', 'gmd:otherCitationDetails', 'otherCitDet', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('collectiveTitle_1236', 'gmd:collectiveTitle', 'collTitle', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISBN_1237', 'gmd:ISBN', 'isbn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); INSERT INTO elmnt_mtd VALUES ('ISSN_1238', 'gmd:ISSN', 'issn', 'ISO 19115', NULL, 'text', 'O', '1', 'false', 'true', 'gco:CharacterString'); -- -- Data for Name: est_contenu; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'base_geo', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'carte_num', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'table_num', 1); INSERT INTO est_contenu VALUES ('linkage_185', 'CI_OnlineResource_184', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('protocol_186', 'CI_OnlineResource_184', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('applicationProfile_187', 'CI_OnlineResource_184', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('name_188', 'CI_OnlineResource_184', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('description_189', 'CI_OnlineResource_184', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('function_190', 'CI_OnlineResource_184', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('linkage_214', 'CI_OnlineResource_213', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('protocol_215', 'CI_OnlineResource_213', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('applicationProfile_216', 'CI_OnlineResource_213', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('name_217', 'CI_OnlineResource_213', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('description_218', 'CI_OnlineResource_213', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('function_219', 'CI_OnlineResource_213', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'base_geo', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'carte_num', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'table_num', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'base_geo', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'carte_num', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'table_num', 1); INSERT INTO est_contenu VALUES ('linkage_456', 'CI_OnlineResource_455', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('protocol_457', 'CI_OnlineResource_455', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('applicationProfile_458', 'CI_OnlineResource_455', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('name_459', 'CI_OnlineResource_455', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('description_460', 'CI_OnlineResource_455', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('function_461', 'CI_OnlineResource_455', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'base_geo', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'carte_num', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'table_num', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('protocol_27', 'CI_OnlineResource_77', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('applicationProfile_28', 'CI_OnlineResource_77', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('name_29', 'CI_OnlineResource_77', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('description_30', 'CI_OnlineResource_77', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('function_31', 'CI_OnlineResource_77', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_177', 'address_170', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Address_206', 'address_199', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Address_322', 'address_318', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('MD_Dimension_367', 'axisDimensionsProperties_366', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'base_alpha', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'base_geo', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'base_geo', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'base_geo', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'base_geo', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'base_geo', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'carte_num', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'carte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'carte_num', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'carte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'carte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'couche_raster', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'couche_vecteur', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'table_num', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'table_num', 2); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'table_num', 3); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'table_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'table_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_178', 'CI_Address_177', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('city_179', 'CI_Address_177', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('administrativeArea_180', 'CI_Address_177', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('postalCode_181', 'CI_Address_177', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('country_182', 'CI_Address_177', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('electronicMailAddress_183', 'CI_Address_177', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('deliveryPoint_207', 'CI_Address_206', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('city_208', 'CI_Address_206', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('administrativeArea_209', 'CI_Address_206', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('postalCode_210', 'CI_Address_206', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('country_211', 'CI_Address_206', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('electronicMailAddress_212', 'CI_Address_206', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'base_alpha', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'base_geo', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'base_geo', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'base_geo', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'base_geo', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'base_geo', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'carte_num', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'carte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'carte_num', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'carte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'carte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'couche_raster', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'couche_vecteur', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'table_num', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'table_num', 2); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'table_num', 3); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'table_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'table_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_327', 'CI_Address_322', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('city_328', 'CI_Address_322', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('administrativeArea_329', 'CI_Address_322', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('postalCode_330', 'CI_Address_322', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('country_331', 'CI_Address_322', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('electronicMailAddress_332', 'CI_Address_322', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'base_geo', 2); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'base_alpha', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'base_geo', 1); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'base_geo', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'base_geo', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'base_geo', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'carte_num', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'carte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'carte_num', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'carte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'carte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'couche_raster', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'couche_vecteur', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'table_num', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'table_num', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'table_num', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'table_num', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'table_num', 5); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('administrativeArea_21', 'CI_Address_75', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'refer_gab_iso19115', 6); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'base_geo', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'base_geo', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'base_geo', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'base_geo', 4); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'carte_num', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'carte_num', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'carte_num', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'carte_num', 4); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('series_93', 'CI_Citation_72', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('ISBN_96', 'CI_Citation_72', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('ISSN_97', 'CI_Citation_72', 'carte_papier', 6); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'carte_papier', 7); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('edition_87', 'CI_Citation_72', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('series_93', 'CI_Citation_72', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('ISBN_96', 'CI_Citation_72', 'doc_texte_num', 6); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'doc_texte_num', 7); INSERT INTO est_contenu VALUES ('ISSN_97', 'CI_Citation_72', 'doc_texte_num', 8); INSERT INTO est_contenu VALUES ('collectiveTitle_95', 'CI_Citation_72', 'doc_texte_num', 9); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('edition_87', 'CI_Citation_72', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('series_93', 'CI_Citation_72', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('ISBN_96', 'CI_Citation_72', 'refer_biblio', 6); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'refer_biblio', 7); INSERT INTO est_contenu VALUES ('ISSN_97', 'CI_Citation_72', 'refer_biblio', 8); INSERT INTO est_contenu VALUES ('collectiveTitle_95', 'CI_Citation_72', 'refer_biblio', 9); INSERT INTO est_contenu VALUES ('title_84', 'CI_Citation_72', 'table_num', 1); INSERT INTO est_contenu VALUES ('date_86', 'CI_Citation_72', 'table_num', 2); INSERT INTO est_contenu VALUES ('presentationForm_92', 'CI_Citation_72', 'table_num', 3); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'table_num', 4); INSERT INTO est_contenu VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'base_geo', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'base_geo', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'carte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'carte_num', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'table_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'table_num', 2); INSERT INTO est_contenu VALUES ('phone_169', 'CI_Contact_168', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('address_170', 'CI_Contact_168', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('onlineResource_171', 'CI_Contact_168', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('hoursOfService_172', 'CI_Contact_168', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('contactInstructions_173', 'CI_Contact_168', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('phone_198', 'CI_Contact_197', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('address_199', 'CI_Contact_197', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('onlineResource_200', 'CI_Contact_197', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('hoursOfService_201', 'CI_Contact_197', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('contactInstructions_202', 'CI_Contact_197', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'base_geo', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'base_geo', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'carte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'carte_num', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'table_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'table_num', 2); INSERT INTO est_contenu VALUES ('phone_317', 'CI_Contact_316', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('address_318', 'CI_Contact_316', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('onlineResource_319', 'CI_Contact_316', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('hoursOfService_320', 'CI_Contact_316', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('contactInstructions_321', 'CI_Contact_316', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'base_geo', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'base_geo', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'carte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'carte_num', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'table_num', 1); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'table_num', 2); INSERT INTO est_contenu VALUES ('phone_15', 'CI_Contact_73', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('hoursOfService_32', 'CI_Contact_73', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('contactInstructions_33', 'CI_Contact_73', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'base_geo', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'base_geo', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'carte_num', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'carte_num', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('date_79', 'CI_Date_76', 'table_num', 1); INSERT INTO est_contenu VALUES ('dateType_80', 'CI_Date_76', 'table_num', 2); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'base_geo', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'base_geo', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'base_geo', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'carte_num', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'carte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'carte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'table_num', 1); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'table_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'table_num', 3); INSERT INTO est_contenu VALUES ('individualName_163', 'CI_ResponsibleParty_157', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('positionName_165', 'CI_ResponsibleParty_157', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('role_167', 'CI_ResponsibleParty_157', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('individualName_192', 'CI_ResponsibleParty_191', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('organisationName_193', 'CI_ResponsibleParty_191', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('positionName_194', 'CI_ResponsibleParty_191', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('contactInfo_195', 'CI_ResponsibleParty_191', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('role_196', 'CI_ResponsibleParty_191', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'base_geo', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'base_geo', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'base_geo', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'carte_num', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'carte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'carte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'table_num', 1); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'table_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'table_num', 3); INSERT INTO est_contenu VALUES ('individualName_311', 'CI_ResponsibleParty_280', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('positionName_313', 'CI_ResponsibleParty_280', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('role_315', 'CI_ResponsibleParty_280', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'base_geo', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'base_geo', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'base_geo', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'carte_num', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'carte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'carte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'table_num', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'table_num', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'table_num', 3); INSERT INTO est_contenu VALUES ('individualName_10', 'CI_ResponsibleParty_71', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('positionName_12', 'CI_ResponsibleParty_71', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'refer_gab_iso19115', 4); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'refer_gab_iso19115', 5); INSERT INTO est_contenu VALUES ('name_81', 'CI_Series_78', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('name_81', 'CI_Series_78', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('page_83', 'CI_Series_78', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('name_81', 'CI_Series_78', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('page_83', 'CI_Series_78', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('voice_175', 'CI_Telephone_174', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('facsimile_176', 'CI_Telephone_174', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('voice_204', 'CI_Telephone_203', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('facsimile_205', 'CI_Telephone_203', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('voice_325', 'CI_Telephone_323', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('facsimile_326', 'CI_Telephone_323', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('voice_16', 'CI_Telephone_74', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('facsimile_17', 'CI_Telephone_74', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Citation_72', 'citation_47', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_168', 'contactInfo_166', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Contact_197', 'contactInfo_195', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Contact_316', 'contactInfo_314', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'base_geo', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'carte_num', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_Date_76', 'date_86', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Format_112', 'distributionFormat_134', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Distributor_137', 'distributor_135', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'base_geo', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'base_geo', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'carte_num', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'carte_num', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('scope_436', 'DQ_DataQuality_106', 'table_num', 1); INSERT INTO est_contenu VALUES ('lineage_438', 'DQ_DataQuality_106', 'table_num', 2); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'base_geo', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'carte_num', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('level_442', 'DQ_Scope_439', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_RepresentativeFraction_123', 'equivalentScale_121', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_RepresentativeFraction_123', 'equivalentScale_121', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_RepresentativeFraction_123', 'equivalentScale_121', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_RepresentativeFraction_123', 'equivalentScale_121', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'base_geo', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'base_geo', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'carte_num', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'carte_num', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('geographicElement_141', 'EX_Extent_118', 'table_num', 1); INSERT INTO est_contenu VALUES ('temporalElement_142', 'EX_Extent_118', 'table_num', 3); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'base_geo', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'base_geo', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'base_geo', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'base_geo', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'carte_num', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'carte_num', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'carte_num', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'carte_num', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 'table_num', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 'table_num', 2); INSERT INTO est_contenu VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 'table_num', 3); INSERT INTO est_contenu VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 'table_num', 4); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'base_geo', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'carte_num', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 'table_num', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'base_geo', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'carte_num', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('extent_146', 'EX_TemporalExtent_145', 'table_num', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'base_geo', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'carte_num', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('TimePeriod_501', 'extent_146', 'table_num', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'base_geo', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'carte_num', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('EX_Extent_118', 'extent_66', 'table_num', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'base_geo', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'carte_num', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_GeometricObjects_463', 'geometricObjects_398', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_BrowseGraphic_509', 'graphicOverview_508', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_BrowseGraphic_509', 'graphicOverview_508', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_BrowseGraphic_509', 'graphicOverview_508', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_BrowseGraphic_509', 'graphicOverview_508', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'base_geo', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'carte_num', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('statement_448', 'LI_Lineage_441', 'table_num', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'base_geo', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'carte_num', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('LI_Lineage_441', 'lineage_438', 'table_num', 1); INSERT INTO est_contenu VALUES ('fileName_510', 'MD_BrowseGraphic_509', 'carte_num', 1); INSERT INTO est_contenu VALUES ('fileType_511', 'MD_BrowseGraphic_509', 'carte_num', 2); INSERT INTO est_contenu VALUES ('fileName_510', 'MD_BrowseGraphic_509', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('fileType_511', 'MD_BrowseGraphic_509', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('fileName_510', 'MD_BrowseGraphic_509', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('fileType_511', 'MD_BrowseGraphic_509', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('fileName_510', 'MD_BrowseGraphic_509', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('fileType_511', 'MD_BrowseGraphic_509', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'base_alpha', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'base_alpha', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'base_alpha', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'base_alpha', 8); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'base_alpha', 9); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'base_alpha', 10); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'base_alpha', 11); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'base_alpha', 12); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'base_geo', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'base_geo', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'base_geo', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'base_geo', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'base_geo', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'base_geo', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'base_geo', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'base_geo', 8); INSERT INTO est_contenu VALUES ('spatialRepresentationType_58', 'MD_DataIdentification_68', 'base_geo', 9); INSERT INTO est_contenu VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 'base_geo', 10); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'base_geo', 11); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'base_geo', 12); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'base_geo', 13); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'base_geo', 14); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'carte_num', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'carte_num', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'carte_num', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'carte_num', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'carte_num', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'carte_num', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'carte_num', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'carte_num', 8); INSERT INTO est_contenu VALUES ('spatialRepresentationType_58', 'MD_DataIdentification_68', 'carte_num', 9); INSERT INTO est_contenu VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 'carte_num', 10); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'carte_num', 11); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'carte_num', 12); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'carte_num', 13); INSERT INTO est_contenu VALUES ('graphicOverview_508', 'MD_DataIdentification_68', 'carte_num', 14); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'carte_num', 15); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'carte_papier', 6); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'carte_papier', 7); INSERT INTO est_contenu VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 'carte_papier', 8); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'carte_papier', 9); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'carte_papier', 10); INSERT INTO est_contenu VALUES ('graphicOverview_508', 'MD_DataIdentification_68', 'carte_papier', 11); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'carte_papier', 12); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'couche_raster', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'couche_raster', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'couche_raster', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'couche_raster', 8); INSERT INTO est_contenu VALUES ('spatialRepresentationType_58', 'MD_DataIdentification_68', 'couche_raster', 9); INSERT INTO est_contenu VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 'couche_raster', 10); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'couche_raster', 11); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'couche_raster', 12); INSERT INTO est_contenu VALUES ('graphicOverview_508', 'MD_DataIdentification_68', 'couche_raster', 13); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'couche_vecteur', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'couche_vecteur', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'couche_vecteur', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'couche_vecteur', 8); INSERT INTO est_contenu VALUES ('spatialRepresentationType_58', 'MD_DataIdentification_68', 'couche_vecteur', 9); INSERT INTO est_contenu VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 'couche_vecteur', 10); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'couche_vecteur', 11); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'couche_vecteur', 12); INSERT INTO est_contenu VALUES ('graphicOverview_508', 'MD_DataIdentification_68', 'couche_vecteur', 13); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'doc_texte_num', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'doc_texte_num', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'doc_texte_num', 8); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'doc_texte_num', 9); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'doc_texte_num', 10); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'doc_texte_num', 11); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'doc_texte_num', 12); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'refer_biblio', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'refer_biblio', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'refer_biblio', 8); INSERT INTO est_contenu VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 'refer_biblio', 9); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'refer_biblio', 10); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'refer_biblio', 11); INSERT INTO est_contenu VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 'refer_biblio', 12); INSERT INTO est_contenu VALUES ('abstract_70', 'MD_DataIdentification_68', 'table_num', 1); INSERT INTO est_contenu VALUES ('credit_49', 'MD_DataIdentification_68', 'table_num', 2); INSERT INTO est_contenu VALUES ('status_50', 'MD_DataIdentification_68', 'table_num', 3); INSERT INTO est_contenu VALUES ('language_60', 'MD_DataIdentification_68', 'table_num', 4); INSERT INTO est_contenu VALUES ('characterSet_61', 'MD_DataIdentification_68', 'table_num', 5); INSERT INTO est_contenu VALUES ('topicCategory_62', 'MD_DataIdentification_68', 'table_num', 6); INSERT INTO est_contenu VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 'table_num', 7); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'table_num', 8); INSERT INTO est_contenu VALUES ('extent_66', 'MD_DataIdentification_68', 'table_num', 9); INSERT INTO est_contenu VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 'table_num', 10); INSERT INTO est_contenu VALUES ('citation_47', 'MD_DataIdentification_68', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('pointOfContact_51', 'MD_DataIdentification_68', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'base_geo', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'base_geo', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'base_geo', 3); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'carte_num', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'carte_num', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'carte_num', 3); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 'table_num', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'table_num', 2); INSERT INTO est_contenu VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 'table_num', 3); INSERT INTO est_contenu VALUES ('dimensionName_368', 'MD_Dimension_367', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('dimensionSize_369', 'MD_Dimension_367', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('resolution_370', 'MD_Dimension_367', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'base_geo', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'base_geo', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'base_geo', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'carte_num', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'carte_num', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'carte_num', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('distributionFormat_134', 'MD_Distribution_105', 'table_num', 1); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'table_num', 2); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'table_num', 3); INSERT INTO est_contenu VALUES ('distributor_135', 'MD_Distribution_105', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'base_geo', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'carte_num', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'table_num', 1); INSERT INTO est_contenu VALUES ('distributorContact_276', 'MD_Distributor_137', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'base_geo', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'base_geo', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'carte_num', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'carte_num', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('name_119', 'MD_Format_112', 'table_num', 1); INSERT INTO est_contenu VALUES ('version_120', 'MD_Format_112', 'table_num', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'base_geo', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'base_geo', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'carte_num', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'carte_num', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('name_221', 'MD_Format_220', 'table_num', 1); INSERT INTO est_contenu VALUES ('version_222', 'MD_Format_220', 'table_num', 2); INSERT INTO est_contenu VALUES ('geometricObjectType_464', 'MD_GeometricObjects_463', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('geometricObjectCount_465', 'MD_GeometricObjects_463', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('numberOfDimensions_365', 'MD_GridSpatialRepresentation_98', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('axisDimensionsProperties_366', 'MD_GridSpatialRepresentation_98', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('cellGeometry_371', 'MD_GridSpatialRepresentation_98', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('transformationParameterAvailability_372', 'MD_GridSpatialRepresentation_98', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'base_geo', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'carte_num', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('code_133', 'MD_Identifier_155', 'table_num', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'base_geo', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'carte_num', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('keyword_269', 'MD_Keywords_113', 'table_num', 1); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'base_geo', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'base_geo', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'base_geo', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'base_geo', 4); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'carte_num', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'carte_num', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'carte_num', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'carte_num', 4); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'base_geo', 1); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'carte_num', 1); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'base_geo', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'base_geo', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'base_geo', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'base_geo', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'carte_num', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'carte_num', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'carte_num', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'carte_num', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('name_295', 'MD_Medium_294', 'table_num', 1); INSERT INTO est_contenu VALUES ('density_296', 'MD_Medium_294', 'table_num', 2); INSERT INTO est_contenu VALUES ('volumes_298', 'MD_Medium_294', 'table_num', 3); INSERT INTO est_contenu VALUES ('mediumFormat_299', 'MD_Medium_294', 'table_num', 4); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'base_alpha', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'base_alpha', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'base_alpha', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'base_alpha', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'base_alpha', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'base_alpha', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'base_alpha', 9); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'base_alpha', 10); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'base_alpha', 11); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'base_geo', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'base_geo', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'base_geo', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'base_geo', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'base_geo', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'base_geo', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'base_geo', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'base_geo', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'base_geo', 10); INSERT INTO est_contenu VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 'base_geo', 9); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'base_geo', 12); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'base_geo', 11); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'carte_num', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'carte_num', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'carte_num', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'carte_num', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'carte_num', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'carte_num', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'carte_num', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'carte_num', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'carte_num', 10); INSERT INTO est_contenu VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 'carte_num', 9); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'carte_num', 12); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'carte_num', 11); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'carte_papier', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'carte_papier', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'carte_papier', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'carte_papier', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'carte_papier', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'carte_papier', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'carte_papier', 10); INSERT INTO est_contenu VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 'carte_papier', 9); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'carte_papier', 12); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'carte_papier', 11); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('parentIdentifier_5', 'MD_Metadata_1', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'couche_raster', 3); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'couche_raster', 4); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'couche_raster', 5); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'couche_raster', 6); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'couche_raster', 7); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'couche_raster', 8); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'couche_raster', 9); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'couche_raster', 12); INSERT INTO est_contenu VALUES ('spatialRepresentationInfo_37', 'MD_Metadata_1', 'couche_raster', 10); INSERT INTO est_contenu VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 'couche_raster', 11); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'couche_raster', 14); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'couche_raster', 13); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('parentIdentifier_5', 'MD_Metadata_1', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'couche_vecteur', 3); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'couche_vecteur', 4); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'couche_vecteur', 5); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'couche_vecteur', 6); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'couche_vecteur', 7); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'couche_vecteur', 8); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'couche_vecteur', 9); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'couche_vecteur', 12); INSERT INTO est_contenu VALUES ('spatialRepresentationInfo_37', 'MD_Metadata_1', 'couche_vecteur', 10); INSERT INTO est_contenu VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 'couche_vecteur', 11); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'couche_vecteur', 14); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'couche_vecteur', 13); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'doc_texte_num', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'doc_texte_num', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'doc_texte_num', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'doc_texte_num', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'doc_texte_num', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'doc_texte_num', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'doc_texte_num', 9); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'doc_texte_num', 10); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'refer_biblio', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'refer_biblio', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'refer_biblio', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'refer_biblio', 6); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'refer_biblio', 7); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'refer_biblio', 8); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'refer_biblio', 9); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'refer_biblio', 10); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'table_num', 1); INSERT INTO est_contenu VALUES ('parentIdentifier_5', 'MD_Metadata_1', 'table_num', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'table_num', 3); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'table_num', 4); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'table_num', 5); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'table_num', 6); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'table_num', 7); INSERT INTO est_contenu VALUES ('dataSetURI_268', 'MD_Metadata_1', 'table_num', 8); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'table_num', 9); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'table_num', 10); INSERT INTO est_contenu VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 'table_num', 11); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'table_num', 12); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'refer_gab_iso19115', 2); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'refer_gab_iso19115', 3); INSERT INTO est_contenu VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 'base_geo', 1); INSERT INTO est_contenu VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 'carte_num', 1); INSERT INTO est_contenu VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('denominator_124', 'MD_RepresentativeFraction_123', 'base_geo', 1); INSERT INTO est_contenu VALUES ('denominator_124', 'MD_RepresentativeFraction_123', 'carte_num', 1); INSERT INTO est_contenu VALUES ('denominator_124', 'MD_RepresentativeFraction_123', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('denominator_124', 'MD_RepresentativeFraction_123', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('equivalentScale_121', 'MD_Resolution_115', 'base_geo', 1); INSERT INTO est_contenu VALUES ('equivalentScale_121', 'MD_Resolution_115', 'carte_num', 1); INSERT INTO est_contenu VALUES ('equivalentScale_121', 'MD_Resolution_115', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('distance_122', 'MD_Resolution_115', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('equivalentScale_121', 'MD_Resolution_115', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('topologyLevel_397', 'MD_VectorSpatialRepresentation_102', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('geometricObjects_398', 'MD_VectorSpatialRepresentation_102', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Medium_294', 'offLine_293', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_184', 'onlineResource_171', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_213', 'onlineResource_200', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'base_geo', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'carte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_455', 'onlineResource_319', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Telephone_74', 'phone_15', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Telephone_174', 'phone_169', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Telephone_203', 'phone_198', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_Telephone_323', 'phone_317', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_191', 'pointOfContact_51', 'refer_gab_iso19115', 1); INSERT INTO est_contenu VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 'base_geo', 1); INSERT INTO est_contenu VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 'carte_num', 1); INSERT INTO est_contenu VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_Format_220', 'resourceFormat_54', 'table_num', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('code_417', 'RS_Identifier_131', 'base_geo', 1); INSERT INTO est_contenu VALUES ('code_417', 'RS_Identifier_131', 'carte_num', 1); INSERT INTO est_contenu VALUES ('code_417', 'RS_Identifier_131', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('code_417', 'RS_Identifier_131', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('code_417', 'RS_Identifier_131', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'base_geo', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'carte_num', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('DQ_Scope_439', 'scope_436', 'table_num', 1); INSERT INTO est_contenu VALUES ('CI_Series_78', 'series_93', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('CI_Series_78', 'series_93', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('CI_Series_78', 'series_93', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_GridSpatialRepresentation_98', 'spatialRepresentationInfo_37', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_VectorSpatialRepresentation_102', 'spatialRepresentationInfo_37', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_Resolution_115', 'spatialResolution_59', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_Resolution_115', 'spatialResolution_59', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_Resolution_115', 'spatialResolution_59', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_Resolution_115', 'spatialResolution_59', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_Resolution_115', 'spatialResolution_59', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'base_geo', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'carte_num', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 'table_num', 1); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'base_geo', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'base_geo', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'carte_num', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'carte_num', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('beginPosition_502', 'TimePeriod_501', 'table_num', 1); INSERT INTO est_contenu VALUES ('endPosition_504', 'TimePeriod_501', 'table_num', 2); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'base_geo', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'carte_num', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'table_num', 1); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'base_alpha', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'base_geo', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'carte_num', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'carte_papier', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'couche_raster', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'couche_vecteur', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'doc_texte_num', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'refer_biblio', 2); INSERT INTO est_contenu VALUES ('geographicElement_506', 'EX_Extent_118', 'table_num', 2); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'base_alpha', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'base_geo', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'carte_num', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'carte_papier', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'couche_raster', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'couche_vecteur', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'doc_texte_num', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'refer_biblio', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 'table_num', 1); INSERT INTO est_contenu VALUES ('fileIdentifier_2', 'MD_Metadata_1', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('language_3', 'MD_Metadata_1', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('characterSet_4', 'MD_Metadata_1', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('metadataStandardName_34', 'MD_Metadata_1', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 'web_service_geo', 5); INSERT INTO est_contenu VALUES ('dateStamp_9', 'MD_Metadata_1', 'web_service_geo', 6); INSERT INTO est_contenu VALUES ('contact_8', 'MD_Metadata_1', 'web_service_geo', 7); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_71', 'contact_8', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('role_14', 'CI_ResponsibleParty_71', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('CI_Contact_73', 'contactInfo_13', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('address_18', 'CI_Contact_73', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('CI_Address_75', 'address_18', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('deliveryPoint_19', 'CI_Address_75', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('city_20', 'CI_Address_75', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('postalCode_22', 'CI_Address_75', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('country_23', 'CI_Address_75', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('electronicMailAddress_24', 'CI_Address_75', 'web_service_geo', 5); INSERT INTO est_contenu VALUES ('onlineResource_25', 'CI_Contact_73', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('CI_OnlineResource_77', 'onlineResource_25', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('linkage_26', 'CI_OnlineResource_77', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('identificationInfo_36', 'MD_Metadata_1', 'web_service_geo', 8); INSERT INTO est_contenu VALUES ('MD_ServiceIdentification_69', 'identificationInfo_36', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('citation_936', 'MD_ServiceIdentification_69', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('CI_Citation_949', 'citation_936', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('title_924', 'CI_Citation_949', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('datec_926', 'CI_Citation_949', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('CI_Date_927', 'datec_926', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('date_928', 'CI_Date_927', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('dateType_929', 'CI_Date_927', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('abstract_963', 'MD_ServiceIdentification_69', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('credit_938', 'MD_ServiceIdentification_69', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('status_940', 'MD_ServiceIdentification_69', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('pointOfContact_941', 'MD_ServiceIdentification_69', 'web_service_geo', 5); INSERT INTO est_contenu VALUES ('CI_ResponsibleParty_950', 'pointOfContact_941', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('organisationName_949', 'CI_ResponsibleParty_950', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('contactInfo_951', 'CI_ResponsibleParty_950', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('CI_Contact_952', 'contactInfo_951', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('address_957', 'CI_Contact_952', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('CI_Address_958', 'address_957', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('electronicMailAddress_964', 'CI_Address_958', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('role_975', 'CI_ResponsibleParty_950', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('descriptiveKeywords_942', 'MD_ServiceIdentification_69', 'web_service_geo', 6); INSERT INTO est_contenu VALUES ('MD_Keywords_951', 'descriptiveKeywords_942', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('keyword_952', 'MD_Keywords_951', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('serviceType_925', 'MD_ServiceIdentification_69', 'web_service_geo', 7); INSERT INTO est_contenu VALUES ('serviceTypeVersion_926', 'MD_ServiceIdentification_69', 'web_service_geo', 8); INSERT INTO est_contenu VALUES ('restrictions_932', 'MD_ServiceIdentification_69', 'web_service_geo', 9); INSERT INTO est_contenu VALUES ('MD_LegalConstraints_955', 'restrictions_932', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('useLimitation_969', 'MD_LegalConstraints_955', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('accessConstraints_970', 'MD_LegalConstraints_955', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('useConstraints_971', 'MD_LegalConstraints_955', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('accessProperties_930', 'MD_ServiceIdentification_69', 'web_service_geo', 10); INSERT INTO est_contenu VALUES ('MD_StandardOrderProcess_931', 'accessProperties_930', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('fees_964', 'MD_StandardOrderProcess_931', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('plannedAvailableDateTime_965', 'MD_StandardOrderProcess_931', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('orderingInstructions_966', 'MD_StandardOrderProcess_931', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('turnaround_967', 'MD_StandardOrderProcess_931', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('containsOperations_934', 'MD_ServiceIdentification_69', 'web_service_geo', 11); INSERT INTO est_contenu VALUES ('SV_OperationMetadata_935', 'containsOperations_934', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('operationName_943', 'SV_OperationMetadata_935', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('DCP_944', 'SV_OperationMetadata_935', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('operationDescription_945', 'SV_OperationMetadata_935', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('invocationName_946', 'SV_OperationMetadata_935', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('connectPoint_947', 'SV_OperationMetadata_935', 'web_service_geo', 5); INSERT INTO est_contenu VALUES ('CI_OnlineResource_948', 'connectPoint_947', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('linkage_958', 'CI_OnlineResource_948', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('name_961', 'CI_OnlineResource_948', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('extent_1011', 'MD_ServiceIdentification_69', 'web_service_geo', 12); INSERT INTO est_contenu VALUES ('EX_Extent_981', 'extent_1011', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('geographicElement_983', 'EX_Extent_981', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('EX_GeographicBoundingBox_984', 'geographicElement_983', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('westBoundLongitude_986', 'EX_GeographicBoundingBox_984', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('eastBoundLongitude_987', 'EX_GeographicBoundingBox_984', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('southBoundLatitude_988', 'EX_GeographicBoundingBox_984', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('northBoundLatitude_989', 'EX_GeographicBoundingBox_984', 'web_service_geo', 4); INSERT INTO est_contenu VALUES ('geographicElement_990', 'EX_Extent_981', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('EX_GeographicDescription_991', 'geographicElement_990', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('geographicIdentifier_993', 'EX_GeographicDescription_991', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('MD_Identifier_994', 'geographicIdentifier_993', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('code_1074', 'MD_Identifier_994', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('temporalElement_999', 'EX_Extent_981', 'web_service_geo', 3); INSERT INTO est_contenu VALUES ('EX_TemporalExtent_1000', 'temporalElement_999', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('extent_1001', 'EX_TemporalExtent_1000', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('TM_Period_1002', 'extent_1001', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('begin_1003', 'TM_Period_1002', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('end_1004', 'TM_Period_1002', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('couplingType_1012', 'MD_ServiceIdentification_69', 'web_service_geo', 13); INSERT INTO est_contenu VALUES ('coupledResource_1013', 'MD_ServiceIdentification_69', 'web_service_geo', 14); INSERT INTO est_contenu VALUES ('SV_CoupledResource_1014', 'coupledResource_1013', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('identifier_1015', 'SV_CoupledResource_1014', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('operationName_1016', 'SV_CoupledResource_1014', 'web_service_geo', 2); INSERT INTO est_contenu VALUES ('distributionInfo_41', 'MD_Metadata_1', 'web_service_geo', 9); INSERT INTO est_contenu VALUES ('MD_Distribution_105', 'distributionInfo_41', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('transferOptions_136', 'MD_Distribution_105', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('CI_OnlineResource_292', 'onLine_291', 'web_service_geo', 1); INSERT INTO est_contenu VALUES ('linkage_300', 'CI_OnlineResource_292', 'web_service_geo', 1); -- -- Data for Name: est_inclus; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO est_inclus VALUES ('fileIdentifier_2', 'MD_Metadata_1', 1); INSERT INTO est_inclus VALUES ('language_3', 'MD_Metadata_1', 2); INSERT INTO est_inclus VALUES ('characterSet_4', 'MD_Metadata_1', 3); INSERT INTO est_inclus VALUES ('parentIdentifier_5', 'MD_Metadata_1', 4); INSERT INTO est_inclus VALUES ('hierarchyLevel_6', 'MD_Metadata_1', 5); INSERT INTO est_inclus VALUES ('hierarchyLevelName_7', 'MD_Metadata_1', 6); INSERT INTO est_inclus VALUES ('contact_8', 'MD_Metadata_1', 7); INSERT INTO est_inclus VALUES ('dateStamp_9', 'MD_Metadata_1', 8); INSERT INTO est_inclus VALUES ('individualName_10', 'CI_ResponsibleParty_71', 1); INSERT INTO est_inclus VALUES ('organisationName_11', 'CI_ResponsibleParty_71', 2); INSERT INTO est_inclus VALUES ('positionName_12', 'CI_ResponsibleParty_71', 3); INSERT INTO est_inclus VALUES ('contactInfo_13', 'CI_ResponsibleParty_71', 4); INSERT INTO est_inclus VALUES ('role_14', 'CI_ResponsibleParty_71', 5); INSERT INTO est_inclus VALUES ('phone_15', 'CI_Contact_73', 1); INSERT INTO est_inclus VALUES ('voice_16', 'CI_Telephone_74', 1); INSERT INTO est_inclus VALUES ('facsimile_17', 'CI_Telephone_74', 2); INSERT INTO est_inclus VALUES ('address_18', 'CI_Contact_73', 2); INSERT INTO est_inclus VALUES ('deliveryPoint_19', 'CI_Address_75', 1); INSERT INTO est_inclus VALUES ('city_20', 'CI_Address_75', 2); INSERT INTO est_inclus VALUES ('administrativeArea_21', 'CI_Address_75', 3); INSERT INTO est_inclus VALUES ('postalCode_22', 'CI_Address_75', 4); INSERT INTO est_inclus VALUES ('country_23', 'CI_Address_75', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_24', 'CI_Address_75', 6); INSERT INTO est_inclus VALUES ('onlineResource_25', 'CI_Contact_73', 3); INSERT INTO est_inclus VALUES ('linkage_26', 'CI_OnlineResource_77', 1); INSERT INTO est_inclus VALUES ('protocol_27', 'CI_OnlineResource_77', 2); INSERT INTO est_inclus VALUES ('applicationProfile_28', 'CI_OnlineResource_77', 3); INSERT INTO est_inclus VALUES ('name_29', 'CI_OnlineResource_77', 4); INSERT INTO est_inclus VALUES ('description_30', 'CI_OnlineResource_77', 5); INSERT INTO est_inclus VALUES ('function_31', 'CI_OnlineResource_77', 6); INSERT INTO est_inclus VALUES ('hoursOfService_32', 'CI_Contact_73', 4); INSERT INTO est_inclus VALUES ('contactInstructions_33', 'CI_Contact_73', 5); INSERT INTO est_inclus VALUES ('metadataStandardName_34', 'MD_Metadata_1', 9); INSERT INTO est_inclus VALUES ('metadataStandardVersion_35', 'MD_Metadata_1', 10); INSERT INTO est_inclus VALUES ('identificationInfo_36', 'MD_Metadata_1', 16); INSERT INTO est_inclus VALUES ('spatialRepresentationInfo_37', 'MD_Metadata_1', 13); INSERT INTO est_inclus VALUES ('referenceSystemInfo_38', 'MD_Metadata_1', 14); INSERT INTO est_inclus VALUES ('metadataExtensionInfo_39', 'MD_Metadata_1', 15); INSERT INTO est_inclus VALUES ('contentInfo_40', 'MD_Metadata_1', 17); INSERT INTO est_inclus VALUES ('distributionInfo_41', 'MD_Metadata_1', 18); INSERT INTO est_inclus VALUES ('dataQualityInfo_42', 'MD_Metadata_1', 19); INSERT INTO est_inclus VALUES ('portrayalCatalogueInfo_43', 'MD_Metadata_1', 20); INSERT INTO est_inclus VALUES ('applicationSchemaInfo_44', 'MD_Metadata_1', 21); INSERT INTO est_inclus VALUES ('metadataMaintenance_45', 'MD_Metadata_1', 22); INSERT INTO est_inclus VALUES ('metadataConstraints_46', 'MD_Metadata_1', 23); INSERT INTO est_inclus VALUES ('citation_47', 'MD_DataIdentification_68', 1); INSERT INTO est_inclus VALUES ('purpose_48', 'MD_DataIdentification_68', 3); INSERT INTO est_inclus VALUES ('credit_49', 'MD_DataIdentification_68', 4); INSERT INTO est_inclus VALUES ('status_50', 'MD_DataIdentification_68', 5); INSERT INTO est_inclus VALUES ('pointOfContact_51', 'MD_DataIdentification_68', 6); INSERT INTO est_inclus VALUES ('resourceMaintenance_52', 'MD_DataIdentification_68', 7); INSERT INTO est_inclus VALUES ('resourceFormat_54', 'MD_DataIdentification_68', 9); INSERT INTO est_inclus VALUES ('descriptiveKeywords_55', 'MD_DataIdentification_68', 10); INSERT INTO est_inclus VALUES ('resourceSpecificUsage_56', 'MD_DataIdentification_68', 11); INSERT INTO est_inclus VALUES ('resourceConstraints_57', 'MD_DataIdentification_68', 12); INSERT INTO est_inclus VALUES ('spatialRepresentationType_58', 'MD_DataIdentification_68', 14); INSERT INTO est_inclus VALUES ('spatialResolution_59', 'MD_DataIdentification_68', 15); INSERT INTO est_inclus VALUES ('language_60', 'MD_DataIdentification_68', 16); INSERT INTO est_inclus VALUES ('characterSet_61', 'MD_DataIdentification_68', 17); INSERT INTO est_inclus VALUES ('topicCategory_62', 'MD_DataIdentification_68', 18); INSERT INTO est_inclus VALUES ('environnementDescription_65', 'MD_DataIdentification_68', 19); INSERT INTO est_inclus VALUES ('extent_66', 'MD_DataIdentification_68', 20); INSERT INTO est_inclus VALUES ('supplementalInformation_67', 'MD_DataIdentification_68', 21); INSERT INTO est_inclus VALUES ('MD_DataIdentification_68', 'identificationInfo_36', 0); INSERT INTO est_inclus VALUES ('MD_ServiceIdentification_69', 'identificationInfo_36', 0); INSERT INTO est_inclus VALUES ('abstract_70', 'MD_DataIdentification_68', 2); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_71', 'contact_8', 0); INSERT INTO est_inclus VALUES ('CI_Citation_72', 'citation_47', 0); INSERT INTO est_inclus VALUES ('CI_Contact_73', 'contactInfo_13', 0); INSERT INTO est_inclus VALUES ('CI_Telephone_74', 'phone_15', 0); INSERT INTO est_inclus VALUES ('CI_Address_75', 'address_18', 0); INSERT INTO est_inclus VALUES ('CI_Date_76', 'date_86', 0); INSERT INTO est_inclus VALUES ('CI_OnlineResource_77', 'onlineResource_25', 0); INSERT INTO est_inclus VALUES ('CI_Series_78', 'series_93', 0); INSERT INTO est_inclus VALUES ('date_79', 'CI_Date_76', 1); INSERT INTO est_inclus VALUES ('dateType_80', 'CI_Date_76', 2); INSERT INTO est_inclus VALUES ('name_81', 'CI_Series_78', 1); INSERT INTO est_inclus VALUES ('issueIdentification_82', 'CI_Series_78', 2); INSERT INTO est_inclus VALUES ('page_83', 'CI_Series_78', 3); INSERT INTO est_inclus VALUES ('title_84', 'CI_Citation_72', 1); INSERT INTO est_inclus VALUES ('alternateTitle_85', 'CI_Citation_72', 2); INSERT INTO est_inclus VALUES ('date_86', 'CI_Citation_72', 3); INSERT INTO est_inclus VALUES ('edition_87', 'CI_Citation_72', 4); INSERT INTO est_inclus VALUES ('editionDate_88', 'CI_Citation_72', 5); INSERT INTO est_inclus VALUES ('identifier_89', 'CI_Citation_72', 6); INSERT INTO est_inclus VALUES ('citedResponsibleParty_91', 'CI_Citation_72', 7); INSERT INTO est_inclus VALUES ('presentationForm_92', 'CI_Citation_72', 8); INSERT INTO est_inclus VALUES ('series_93', 'CI_Citation_72', 9); INSERT INTO est_inclus VALUES ('otherCitationDetails_94', 'CI_Citation_72', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_95', 'CI_Citation_72', 11); INSERT INTO est_inclus VALUES ('ISBN_96', 'CI_Citation_72', 12); INSERT INTO est_inclus VALUES ('ISSN_97', 'CI_Citation_72', 13); INSERT INTO est_inclus VALUES ('MD_GridSpatialRepresentation_98', 'spatialRepresentationInfo_37', 0); INSERT INTO est_inclus VALUES ('MD_ReferenceSystem_99', 'referenceSystemInfo_38', 0); INSERT INTO est_inclus VALUES ('MD_Georectified_100', 'spatialRepresentationInfo_37', 0); INSERT INTO est_inclus VALUES ('MD_Georeferenceable_101', 'spatialRepresentationInfo_37', 0); INSERT INTO est_inclus VALUES ('MD_VectorSpatialRepresentation_102', 'spatialRepresentationInfo_37', 0); INSERT INTO est_inclus VALUES ('MD_MetadataExtensionInformation_103', 'metadataExtensionInfo_39', 0); INSERT INTO est_inclus VALUES ('MD_Distribution_105', 'distributionInfo_41', 0); INSERT INTO est_inclus VALUES ('DQ_DataQuality_106', 'dataQualityInfo_42', 0); INSERT INTO est_inclus VALUES ('MD_PortrayalCatalogueReference_107', 'portrayalCatalogueInfo_43', 0); INSERT INTO est_inclus VALUES ('MD_Constraints_108', 'metadataConstraints_46', 0); INSERT INTO est_inclus VALUES ('MD_ApplicationSchemaInformation_109', 'applicationSchemaInfo_44', 0); INSERT INTO est_inclus VALUES ('MD_MaintenanceInformation_110', 'metadataMaintenance_45', 0); INSERT INTO est_inclus VALUES ('MD_Format_112', 'distributionFormat_134', 0); INSERT INTO est_inclus VALUES ('MD_Keywords_113', 'descriptiveKeywords_55', 0); INSERT INTO est_inclus VALUES ('MD_Usage_114', 'resourceSpecificUsage_56', 0); INSERT INTO est_inclus VALUES ('MD_Resolution_115', 'spatialResolution_59', 0); INSERT INTO est_inclus VALUES ('EX_GeographicBoundingBox_116', 'geographicElement_141', 0); INSERT INTO est_inclus VALUES ('EX_GeographicDescription_117', 'geographicElement_506', 0); INSERT INTO est_inclus VALUES ('EX_Extent_118', 'extent_66', 0); INSERT INTO est_inclus VALUES ('name_119', 'MD_Format_112', 1); INSERT INTO est_inclus VALUES ('version_120', 'MD_Format_112', 2); INSERT INTO est_inclus VALUES ('equivalentScale_121', 'MD_Resolution_115', 1); INSERT INTO est_inclus VALUES ('distance_122', 'MD_Resolution_115', 2); INSERT INTO est_inclus VALUES ('MD_RepresentativeFraction_123', 'equivalentScale_121', 0); INSERT INTO est_inclus VALUES ('denominator_124', 'MD_RepresentativeFraction_123', 1); INSERT INTO est_inclus VALUES ('westBoundLongitude_126', 'EX_GeographicBoundingBox_116', 2); INSERT INTO est_inclus VALUES ('eastBoundLongitude_127', 'EX_GeographicBoundingBox_116', 3); INSERT INTO est_inclus VALUES ('southBoundLatitude_128', 'EX_GeographicBoundingBox_116', 4); INSERT INTO est_inclus VALUES ('northBoundLatitude_129', 'EX_GeographicBoundingBox_116', 5); INSERT INTO est_inclus VALUES ('geographicIdentifier_130', 'EX_GeographicDescription_117', 2); INSERT INTO est_inclus VALUES ('RS_Identifier_131', 'referenceSystemIdentifier_401', 0); INSERT INTO est_inclus VALUES ('authority_132', 'MD_Identifier_155', 1); INSERT INTO est_inclus VALUES ('code_133', 'MD_Identifier_155', 2); INSERT INTO est_inclus VALUES ('distributionFormat_134', 'MD_Distribution_105', 1); INSERT INTO est_inclus VALUES ('distributor_135', 'MD_Distribution_105', 2); INSERT INTO est_inclus VALUES ('transferOptions_136', 'MD_Distribution_105', 3); INSERT INTO est_inclus VALUES ('MD_Distributor_137', 'distributor_135', 0); INSERT INTO est_inclus VALUES ('MD_DigitalTransferOptions_138', 'transferOptions_136', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_139', 'EX_BoundingPolygon_144', 1); INSERT INTO est_inclus VALUES ('description_140', 'EX_Extent_118', 1); INSERT INTO est_inclus VALUES ('geographicElement_141', 'EX_Extent_118', 2); INSERT INTO est_inclus VALUES ('temporalElement_142', 'EX_Extent_118', 5); INSERT INTO est_inclus VALUES ('verticalElement_143', 'EX_Extent_118', 6); INSERT INTO est_inclus VALUES ('EX_BoundingPolygon_144', 'geographicElement_507', 0); INSERT INTO est_inclus VALUES ('EX_TemporalExtent_145', 'temporalElement_142', 0); INSERT INTO est_inclus VALUES ('extent_146', 'EX_TemporalExtent_145', 1); INSERT INTO est_inclus VALUES ('Ex_VerticalExtent_147', 'verticalElement_143', 0); INSERT INTO est_inclus VALUES ('minimumValue_148', 'Ex_VerticalExtent_147', 1); INSERT INTO est_inclus VALUES ('maximumValue_149', 'Ex_VerticalExtent_147', 2); INSERT INTO est_inclus VALUES ('unitOfMeasure_150', 'Ex_VerticalExtent_147', 3); INSERT INTO est_inclus VALUES ('polygon_151', 'EX_BoundingPolygon_144', 2); INSERT INTO est_inclus VALUES ('verticalDatum_152', 'Ex_VerticalExtent_147', 4); INSERT INTO est_inclus VALUES ('aggregateInfo_154', 'MD_DataIdentification_68', 13); INSERT INTO est_inclus VALUES ('MD_Identifier_155', 'geographicIdentifier_130', 0); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_157', 'citedResponsibleParty_91', 0); INSERT INTO est_inclus VALUES ('individualName_163', 'CI_ResponsibleParty_157', 1); INSERT INTO est_inclus VALUES ('organisationName_164', 'CI_ResponsibleParty_157', 2); INSERT INTO est_inclus VALUES ('positionName_165', 'CI_ResponsibleParty_157', 3); INSERT INTO est_inclus VALUES ('contactInfo_166', 'CI_ResponsibleParty_157', 4); INSERT INTO est_inclus VALUES ('role_167', 'CI_ResponsibleParty_157', 5); INSERT INTO est_inclus VALUES ('CI_Contact_168', 'contactInfo_166', 0); INSERT INTO est_inclus VALUES ('phone_169', 'CI_Contact_168', 1); INSERT INTO est_inclus VALUES ('address_170', 'CI_Contact_168', 2); INSERT INTO est_inclus VALUES ('onlineResource_171', 'CI_Contact_168', 3); INSERT INTO est_inclus VALUES ('hoursOfService_172', 'CI_Contact_168', 4); INSERT INTO est_inclus VALUES ('contactInstructions_173', 'CI_Contact_168', 5); INSERT INTO est_inclus VALUES ('CI_Telephone_174', 'phone_169', 0); INSERT INTO est_inclus VALUES ('voice_175', 'CI_Telephone_174', 1); INSERT INTO est_inclus VALUES ('facsimile_176', 'CI_Telephone_174', 2); INSERT INTO est_inclus VALUES ('CI_Address_177', 'address_170', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_178', 'CI_Address_177', 1); INSERT INTO est_inclus VALUES ('city_179', 'CI_Address_177', 2); INSERT INTO est_inclus VALUES ('administrativeArea_180', 'CI_Address_177', 3); INSERT INTO est_inclus VALUES ('postalCode_181', 'CI_Address_177', 4); INSERT INTO est_inclus VALUES ('country_182', 'CI_Address_177', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_183', 'CI_Address_177', 6); INSERT INTO est_inclus VALUES ('CI_OnlineResource_184', 'onlineResource_171', 0); INSERT INTO est_inclus VALUES ('linkage_185', 'CI_OnlineResource_184', 1); INSERT INTO est_inclus VALUES ('protocol_186', 'CI_OnlineResource_184', 2); INSERT INTO est_inclus VALUES ('applicationProfile_187', 'CI_OnlineResource_184', 3); INSERT INTO est_inclus VALUES ('name_188', 'CI_OnlineResource_184', 4); INSERT INTO est_inclus VALUES ('description_189', 'CI_OnlineResource_184', 5); INSERT INTO est_inclus VALUES ('function_190', 'CI_OnlineResource_184', 6); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_191', 'pointOfContact_51', 0); INSERT INTO est_inclus VALUES ('individualName_192', 'CI_ResponsibleParty_191', 1); INSERT INTO est_inclus VALUES ('organisationName_193', 'CI_ResponsibleParty_191', 2); INSERT INTO est_inclus VALUES ('positionName_194', 'CI_ResponsibleParty_191', 3); INSERT INTO est_inclus VALUES ('contactInfo_195', 'CI_ResponsibleParty_191', 4); INSERT INTO est_inclus VALUES ('role_196', 'CI_ResponsibleParty_191', 5); INSERT INTO est_inclus VALUES ('CI_Contact_197', 'contactInfo_195', 0); INSERT INTO est_inclus VALUES ('phone_198', 'CI_Contact_197', 1); INSERT INTO est_inclus VALUES ('address_199', 'CI_Contact_197', 2); INSERT INTO est_inclus VALUES ('onlineResource_200', 'CI_Contact_197', 3); INSERT INTO est_inclus VALUES ('hoursOfService_201', 'CI_Contact_197', 4); INSERT INTO est_inclus VALUES ('contactInstructions_202', 'CI_Contact_197', 5); INSERT INTO est_inclus VALUES ('CI_Telephone_203', 'phone_198', 0); INSERT INTO est_inclus VALUES ('voice_204', 'CI_Telephone_203', 1); INSERT INTO est_inclus VALUES ('facsimile_205', 'CI_Telephone_203', 2); INSERT INTO est_inclus VALUES ('CI_Address_206', 'address_199', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_207', 'CI_Address_206', 1); INSERT INTO est_inclus VALUES ('city_208', 'CI_Address_206', 2); INSERT INTO est_inclus VALUES ('administrativeArea_209', 'CI_Address_206', 3); INSERT INTO est_inclus VALUES ('postalCode_210', 'CI_Address_206', 4); INSERT INTO est_inclus VALUES ('country_211', 'CI_Address_206', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_212', 'CI_Address_206', 6); INSERT INTO est_inclus VALUES ('CI_OnlineResource_213', 'onlineResource_200', 0); INSERT INTO est_inclus VALUES ('linkage_214', 'CI_OnlineResource_213', 1); INSERT INTO est_inclus VALUES ('protocol_215', 'CI_OnlineResource_213', 2); INSERT INTO est_inclus VALUES ('applicationProfile_216', 'CI_OnlineResource_213', 3); INSERT INTO est_inclus VALUES ('name_217', 'CI_OnlineResource_213', 4); INSERT INTO est_inclus VALUES ('description_218', 'CI_OnlineResource_213', 5); INSERT INTO est_inclus VALUES ('function_219', 'CI_OnlineResource_213', 6); INSERT INTO est_inclus VALUES ('MD_Format_220', 'resourceFormat_54', 0); INSERT INTO est_inclus VALUES ('name_221', 'MD_Format_220', 1); INSERT INTO est_inclus VALUES ('version_222', 'MD_Format_220', 2); INSERT INTO est_inclus VALUES ('amendmentNumber_223', 'MD_Format_220', 3); INSERT INTO est_inclus VALUES ('specification_224', 'MD_Format_220', 4); INSERT INTO est_inclus VALUES ('fileDecompressionTechnique_225', 'MD_Format_220', 5); INSERT INTO est_inclus VALUES ('MD_MaintenanceInformation_226', 'resourceMaintenance_52', 0); INSERT INTO est_inclus VALUES ('maintenanceAndUpdateFrequency_227', 'MD_MaintenanceInformation_110', 1); INSERT INTO est_inclus VALUES ('dateOfNextUpdate_228', 'MD_MaintenanceInformation_110', 2); INSERT INTO est_inclus VALUES ('userDefinedMaintenanceFrequency_229', 'MD_MaintenanceInformation_110', 3); INSERT INTO est_inclus VALUES ('updateScope_230', 'MD_MaintenanceInformation_110', 4); INSERT INTO est_inclus VALUES ('updateScopeDescription_231', 'MD_MaintenanceInformation_110', 5); INSERT INTO est_inclus VALUES ('maintenanceNote_232', 'MD_MaintenanceInformation_110', 6); INSERT INTO est_inclus VALUES ('contact_233', 'MD_MaintenanceInformation_110', 7); INSERT INTO est_inclus VALUES ('MD_ScopeDescription_234', 'updateScopeDescription_231', 0); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_235', 'contact_233', 0); INSERT INTO est_inclus VALUES ('individualName_924', 'CI_ResponsibleParty_235', 1); INSERT INTO est_inclus VALUES ('organisationName_925', 'CI_ResponsibleParty_235', 2); INSERT INTO est_inclus VALUES ('positionName_926', 'CI_ResponsibleParty_235', 3); INSERT INTO est_inclus VALUES ('contactInfo_927', 'CI_ResponsibleParty_235', 4); INSERT INTO est_inclus VALUES ('CI_Contact_928', 'contactInfo_927', 0); INSERT INTO est_inclus VALUES ('phone_929', 'CI_Contact_928', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_930', 'phone_929', 0); INSERT INTO est_inclus VALUES ('voice_931', 'CI_Telephone_930', 1); INSERT INTO est_inclus VALUES ('facsimile_932', 'CI_Telephone_930', 2); INSERT INTO est_inclus VALUES ('address_933', 'CI_Contact_928', 2); INSERT INTO est_inclus VALUES ('CI_Address_934', 'address_933', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_935', 'CI_Address_934', 1); INSERT INTO est_inclus VALUES ('city_936', 'CI_Address_934', 2); INSERT INTO est_inclus VALUES ('administrativeArea_937', 'CI_Address_934', 3); INSERT INTO est_inclus VALUES ('postalCode_938', 'CI_Address_934', 4); INSERT INTO est_inclus VALUES ('country_939', 'CI_Address_934', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_940', 'CI_Address_934', 6); INSERT INTO est_inclus VALUES ('onlineRessource_941', 'CI_Contact_928', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_942', 'onlineRessource_941', 0); INSERT INTO est_inclus VALUES ('linkage_943', 'CI_OnlineResource_942', 1); INSERT INTO est_inclus VALUES ('protocol_944', 'CI_OnlineResource_942', 2); INSERT INTO est_inclus VALUES ('applicationProfile_945', 'CI_OnlineResource_942', 3); INSERT INTO est_inclus VALUES ('name_946', 'CI_OnlineResource_942', 4); INSERT INTO est_inclus VALUES ('description_947', 'CI_OnlineResource_942', 5); INSERT INTO est_inclus VALUES ('function_948', 'CI_OnlineResource_942', 6); INSERT INTO est_inclus VALUES ('hoursOfService_949', 'CI_Contact_928', 4); INSERT INTO est_inclus VALUES ('contactInstructions_950', 'CI_Contact_928', 5); INSERT INTO est_inclus VALUES ('role_951', 'CI_ResponsibleParty_235', 5); INSERT INTO est_inclus VALUES ('maintenanceAndUpdateFrequency_238', 'MD_MaintenanceInformation_226', 1); INSERT INTO est_inclus VALUES ('dateOfNextUpdate_239', 'MD_MaintenanceInformation_226', 2); INSERT INTO est_inclus VALUES ('userDefinedMaintenanceFrequency_240', 'MD_MaintenanceInformation_226', 3); INSERT INTO est_inclus VALUES ('updateScopeDescription_241', 'MD_MaintenanceInformation_226', 5); INSERT INTO est_inclus VALUES ('updateScope_242', 'MD_MaintenanceInformation_226', 4); INSERT INTO est_inclus VALUES ('maintenanceNote_243', 'MD_MaintenanceInformation_226', 6); INSERT INTO est_inclus VALUES ('contact_244', 'MD_MaintenanceInformation_226', 7); INSERT INTO est_inclus VALUES ('MD_ScopeDescription_245', 'updateScopeDescription_241', 0); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_246', 'contact_244', 0); INSERT INTO est_inclus VALUES ('individualName_952', 'CI_ResponsibleParty_246', 1); INSERT INTO est_inclus VALUES ('organisationName_953', 'CI_ResponsibleParty_246', 2); INSERT INTO est_inclus VALUES ('positionName_954', 'CI_ResponsibleParty_246', 3); INSERT INTO est_inclus VALUES ('contactInfo_955', 'CI_ResponsibleParty_246', 4); INSERT INTO est_inclus VALUES ('CI_Contact_956', 'contactInfo_955', 0); INSERT INTO est_inclus VALUES ('phone_957', 'CI_Contact_956', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_958', 'phone_957', 0); INSERT INTO est_inclus VALUES ('voice_959', 'CI_Telephone_958', 1); INSERT INTO est_inclus VALUES ('facsimile_960', 'CI_Telephone_958', 2); INSERT INTO est_inclus VALUES ('address_961', 'CI_Contact_956', 2); INSERT INTO est_inclus VALUES ('CI_Address_962', 'address_961', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_963', 'CI_Address_962', 1); INSERT INTO est_inclus VALUES ('city_964', 'CI_Address_962', 2); INSERT INTO est_inclus VALUES ('administrativeArea_965', 'CI_Address_962', 3); INSERT INTO est_inclus VALUES ('postalCode_966', 'CI_Address_962', 4); INSERT INTO est_inclus VALUES ('country_967', 'CI_Address_962', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_968', 'CI_Address_962', 6); INSERT INTO est_inclus VALUES ('onlineRessource_969', 'CI_Contact_956', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_970', 'onlineRessource_969', 0); INSERT INTO est_inclus VALUES ('linkage_971', 'CI_OnlineResource_970', 1); INSERT INTO est_inclus VALUES ('protocol_972', 'CI_OnlineResource_970', 2); INSERT INTO est_inclus VALUES ('applicationProfile_973', 'CI_OnlineResource_970', 3); INSERT INTO est_inclus VALUES ('name_974', 'CI_OnlineResource_970', 4); INSERT INTO est_inclus VALUES ('description_975', 'CI_OnlineResource_970', 5); INSERT INTO est_inclus VALUES ('function_976', 'CI_OnlineResource_970', 6); INSERT INTO est_inclus VALUES ('hoursOfService_977', 'CI_Contact_956', 4); INSERT INTO est_inclus VALUES ('contactInstructions_978', 'CI_Contact_956', 5); INSERT INTO est_inclus VALUES ('role_979', 'CI_ResponsibleParty_246', 5); INSERT INTO est_inclus VALUES ('MD_Constraints_247', 'resourceConstraints_57', 0); INSERT INTO est_inclus VALUES ('useLimitation_248', 'MD_Constraints_108', 1); INSERT INTO est_inclus VALUES ('MD_LegalConstraints_249', 'metadataConstraints_46', 0); INSERT INTO est_inclus VALUES ('useLimitation_249', 'MD_LegalConstraints_249', 1); INSERT INTO est_inclus VALUES ('accessConstraints_250', 'MD_LegalConstraints_249', 2); INSERT INTO est_inclus VALUES ('useLimitation_250', 'MD_SecurityConstraints_253', 1); INSERT INTO est_inclus VALUES ('useConstraints_251', 'MD_LegalConstraints_249', 3); INSERT INTO est_inclus VALUES ('otherConstraints_252', 'MD_LegalConstraints_249', 4); INSERT INTO est_inclus VALUES ('MD_SecurityConstraints_253', 'metadataConstraints_46', 0); INSERT INTO est_inclus VALUES ('classification_254', 'MD_SecurityConstraints_253', 2); INSERT INTO est_inclus VALUES ('userNote_255', 'MD_SecurityConstraints_253', 3); INSERT INTO est_inclus VALUES ('classificationSystem_256', 'MD_SecurityConstraints_253', 4); INSERT INTO est_inclus VALUES ('handlingDescription_257', 'MD_SecurityConstraints_253', 5); INSERT INTO est_inclus VALUES ('useLimitation_258', 'MD_Constraints_247', 1); INSERT INTO est_inclus VALUES ('MD_LegalConstraints_259', 'resourceConstraints_57', 0); INSERT INTO est_inclus VALUES ('useLimitation_259', 'MD_LegalConstraints_259', 1); INSERT INTO est_inclus VALUES ('accessConstraints_260', 'MD_LegalConstraints_259', 2); INSERT INTO est_inclus VALUES ('useLimitation_260', 'MD_SecurityConstraints_263', 1); INSERT INTO est_inclus VALUES ('useConstraints_261', 'MD_LegalConstraints_259', 3); INSERT INTO est_inclus VALUES ('otherConstraints_262', 'MD_LegalConstraints_259', 4); INSERT INTO est_inclus VALUES ('MD_SecurityConstraints_263', 'resourceConstraints_57', 0); INSERT INTO est_inclus VALUES ('classification_264', 'MD_SecurityConstraints_263', 2); INSERT INTO est_inclus VALUES ('userNote_265', 'MD_SecurityConstraints_263', 3); INSERT INTO est_inclus VALUES ('classificationSystem_266', 'MD_SecurityConstraints_263', 4); INSERT INTO est_inclus VALUES ('handlingDescription_267', 'MD_SecurityConstraints_263', 5); INSERT INTO est_inclus VALUES ('dataSetURI_268', 'MD_Metadata_1', 11); INSERT INTO est_inclus VALUES ('keyword_269', 'MD_Keywords_113', 1); INSERT INTO est_inclus VALUES ('Type_270', 'MD_Keywords_113', 3); INSERT INTO est_inclus VALUES ('ThesaurusName_271', 'MD_Keywords_113', 4); INSERT INTO est_inclus VALUES ('CI_Citation_272', 'ThesaurusName_271', 0); INSERT INTO est_inclus VALUES ('title_980', 'CI_Citation_272', 1); INSERT INTO est_inclus VALUES ('alternateTitle_981', 'CI_Citation_272', 2); INSERT INTO est_inclus VALUES ('datec_982', 'CI_Citation_272', 3); INSERT INTO est_inclus VALUES ('CI_Date_983', 'datec_982', 0); INSERT INTO est_inclus VALUES ('date_984', 'CI_Date_983', 1); INSERT INTO est_inclus VALUES ('dateType_985', 'CI_Date_983', 2); INSERT INTO est_inclus VALUES ('edition_986', 'CI_Citation_272', 4); INSERT INTO est_inclus VALUES ('editionDate_987', 'CI_Citation_272', 5); INSERT INTO est_inclus VALUES ('identifier_988', 'CI_Citation_272', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_989', 'identifier_988', 0); INSERT INTO est_inclus VALUES ('authority_990', 'MD_Identifier_989', 1); INSERT INTO est_inclus VALUES ('code_991', 'MD_Identifier_989', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_992', 'CI_Citation_272', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_993', 'citedResponsibleParty_992', 0); INSERT INTO est_inclus VALUES ('presentationForm_994', 'CI_Citation_272', 8); INSERT INTO est_inclus VALUES ('series_995', 'CI_Citation_272', 9); INSERT INTO est_inclus VALUES ('CI_Series_996', 'series_995', 0); INSERT INTO est_inclus VALUES ('name_997', 'CI_Series_996', 1); INSERT INTO est_inclus VALUES ('issueIdentification_998', 'CI_Series_996', 2); INSERT INTO est_inclus VALUES ('page_999', 'CI_Series_996', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1000', 'CI_Citation_272', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1001', 'CI_Citation_272', 11); INSERT INTO est_inclus VALUES ('ISBN_1002', 'CI_Citation_272', 12); INSERT INTO est_inclus VALUES ('ISSN_1003', 'CI_Citation_272', 13); INSERT INTO est_inclus VALUES ('amendmentNumber_273', 'MD_Format_112', 3); INSERT INTO est_inclus VALUES ('specification_274', 'MD_Format_112', 4); INSERT INTO est_inclus VALUES ('fileDecompressionTechnique_275', 'MD_Format_112', 5); INSERT INTO est_inclus VALUES ('distributorContact_276', 'MD_Distributor_137', 1); INSERT INTO est_inclus VALUES ('distributorOrderProcess_277', 'MD_Distributor_137', 2); INSERT INTO est_inclus VALUES ('distributorFormat_278', 'MD_Distributor_137', 3); INSERT INTO est_inclus VALUES ('distributorTransferOptions_279', 'MD_Distributor_137', 4); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_280', 'distributorContact_276', 0); INSERT INTO est_inclus VALUES ('MD_StandardOrderProcess_281', 'distributorOrderProcess_277', 0); INSERT INTO est_inclus VALUES ('fees_282', 'MD_StandardOrderProcess_281', 1); INSERT INTO est_inclus VALUES ('plannedAvailableDateTime_283', 'MD_StandardOrderProcess_281', 2); INSERT INTO est_inclus VALUES ('orderingInstructions_284', 'MD_StandardOrderProcess_281', 3); INSERT INTO est_inclus VALUES ('turnaround_285', 'MD_StandardOrderProcess_281', 4); INSERT INTO est_inclus VALUES ('MD_Format_286', 'distributorFormat_278', 0); INSERT INTO est_inclus VALUES ('MD_DigitalTransferOptions_288', 'distributorTransferOptions_279', 0); INSERT INTO est_inclus VALUES ('unitsOfDistribution_289', 'MD_DigitalTransferOptions_138', 1); INSERT INTO est_inclus VALUES ('transferSize_290', 'MD_DigitalTransferOptions_138', 2); INSERT INTO est_inclus VALUES ('onLine_291', 'MD_DigitalTransferOptions_138', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_292', 'onLine_291', 0); INSERT INTO est_inclus VALUES ('offLine_293', 'MD_DigitalTransferOptions_138', 4); INSERT INTO est_inclus VALUES ('MD_Medium_294', 'offLine_293', 0); INSERT INTO est_inclus VALUES ('name_295', 'MD_Medium_294', 1); INSERT INTO est_inclus VALUES ('density_296', 'MD_Medium_294', 2); INSERT INTO est_inclus VALUES ('densityUnits_297', 'MD_Medium_294', 3); INSERT INTO est_inclus VALUES ('volumes_298', 'MD_Medium_294', 4); INSERT INTO est_inclus VALUES ('mediumFormat_299', 'MD_Medium_294', 5); INSERT INTO est_inclus VALUES ('linkage_300', 'CI_OnlineResource_292', 1); INSERT INTO est_inclus VALUES ('protocol_301', 'CI_OnlineResource_292', 2); INSERT INTO est_inclus VALUES ('applicationProfile_302', 'CI_OnlineResource_292', 3); INSERT INTO est_inclus VALUES ('name_303', 'CI_OnlineResource_292', 4); INSERT INTO est_inclus VALUES ('description_304', 'CI_OnlineResource_292', 5); INSERT INTO est_inclus VALUES ('function_305', 'CI_OnlineResource_292', 6); INSERT INTO est_inclus VALUES ('name_306', 'MD_Format_286', 1); INSERT INTO est_inclus VALUES ('version_307', 'MD_Format_286', 2); INSERT INTO est_inclus VALUES ('amendmentNumber_308', 'MD_Format_286', 3); INSERT INTO est_inclus VALUES ('specification_309', 'MD_Format_286', 3); INSERT INTO est_inclus VALUES ('fileDecompressionTechnique_310', 'MD_Format_286', 5); INSERT INTO est_inclus VALUES ('individualName_311', 'CI_ResponsibleParty_280', 1); INSERT INTO est_inclus VALUES ('organisationName_312', 'CI_ResponsibleParty_280', 2); INSERT INTO est_inclus VALUES ('positionName_313', 'CI_ResponsibleParty_280', 3); INSERT INTO est_inclus VALUES ('contactInfo_314', 'CI_ResponsibleParty_280', 4); INSERT INTO est_inclus VALUES ('role_315', 'CI_ResponsibleParty_280', 5); INSERT INTO est_inclus VALUES ('CI_Contact_316', 'contactInfo_314', 0); INSERT INTO est_inclus VALUES ('phone_317', 'CI_Contact_316', 1); INSERT INTO est_inclus VALUES ('address_318', 'CI_Contact_316', 2); INSERT INTO est_inclus VALUES ('onlineResource_319', 'CI_Contact_316', 3); INSERT INTO est_inclus VALUES ('hoursOfService_320', 'CI_Contact_316', 4); INSERT INTO est_inclus VALUES ('contactInstructions_321', 'CI_Contact_316', 5); INSERT INTO est_inclus VALUES ('CI_Address_322', 'address_318', 0); INSERT INTO est_inclus VALUES ('CI_Telephone_323', 'phone_317', 0); INSERT INTO est_inclus VALUES ('voice_325', 'CI_Telephone_323', 1); INSERT INTO est_inclus VALUES ('facsimile_326', 'CI_Telephone_323', 2); INSERT INTO est_inclus VALUES ('deliveryPoint_327', 'CI_Address_322', 1); INSERT INTO est_inclus VALUES ('city_328', 'CI_Address_322', 2); INSERT INTO est_inclus VALUES ('administrativeArea_329', 'CI_Address_322', 3); INSERT INTO est_inclus VALUES ('postalCode_330', 'CI_Address_322', 4); INSERT INTO est_inclus VALUES ('country_331', 'CI_Address_322', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_332', 'CI_Address_322', 6); INSERT INTO est_inclus VALUES ('linkage_333', 'CI_OnlineResource_324', 1); INSERT INTO est_inclus VALUES ('protocol_334', 'CI_OnlineResource_324', 2); INSERT INTO est_inclus VALUES ('applicationProfile_335', 'CI_OnlineResource_324', 3); INSERT INTO est_inclus VALUES ('name_336', 'CI_OnlineResource_324', 4); INSERT INTO est_inclus VALUES ('description_337', 'CI_OnlineResource_324', 5); INSERT INTO est_inclus VALUES ('function_338', 'CI_OnlineResource_324', 6); INSERT INTO est_inclus VALUES ('unitsOfDistribution_339', 'MD_DigitalTransferOptions_288', 1); INSERT INTO est_inclus VALUES ('transferOptions_340', 'MD_DigitalTransferOptions_288', 2); INSERT INTO est_inclus VALUES ('onLine_341', 'MD_DigitalTransferOptions_288', 3); INSERT INTO est_inclus VALUES ('offLine_342', 'MD_DigitalTransferOptions_288', 4); INSERT INTO est_inclus VALUES ('CI_OnlineResource_343', 'onLine_341', 0); INSERT INTO est_inclus VALUES ('MD_Medium_344', 'offLine_342', 0); INSERT INTO est_inclus VALUES ('linkage_345', 'CI_OnlineResource_343', 1); INSERT INTO est_inclus VALUES ('protocol_346', 'CI_OnlineResource_343', 2); INSERT INTO est_inclus VALUES ('applicationProfile_347', 'CI_OnlineResource_343', 3); INSERT INTO est_inclus VALUES ('name_348', 'CI_OnlineResource_343', 4); INSERT INTO est_inclus VALUES ('description_349', 'CI_OnlineResource_343', 5); INSERT INTO est_inclus VALUES ('function_350', 'CI_OnlineResource_343', 6); INSERT INTO est_inclus VALUES ('name_354', 'MD_Medium_344', 1); INSERT INTO est_inclus VALUES ('density_355', 'MD_Medium_344', 2); INSERT INTO est_inclus VALUES ('densityUnits_356', 'MD_Medium_344', 3); INSERT INTO est_inclus VALUES ('volumes_357', 'MD_Medium_344', 4); INSERT INTO est_inclus VALUES ('mediumFormat_358', 'MD_Medium_344', 5); INSERT INTO est_inclus VALUES ('specificUsage_359', 'MD_Usage_114', 1); INSERT INTO est_inclus VALUES ('UsageDateTime_360', 'MD_Usage_114', 2); INSERT INTO est_inclus VALUES ('userDeterminedLimitations_361', 'MD_Usage_114', 3); INSERT INTO est_inclus VALUES ('userContactInfo_362', 'MD_Usage_114', 4); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_363', 'userContactInfo_362', 0); INSERT INTO est_inclus VALUES ('individualName_1004', 'CI_ResponsibleParty_363', 1); INSERT INTO est_inclus VALUES ('organisationName_1005', 'CI_ResponsibleParty_363', 2); INSERT INTO est_inclus VALUES ('positionName_1006', 'CI_ResponsibleParty_363', 3); INSERT INTO est_inclus VALUES ('contactInfo_1007', 'CI_ResponsibleParty_363', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1008', 'contactInfo_1007', 0); INSERT INTO est_inclus VALUES ('phone_1009', 'CI_Contact_1008', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1010', 'phone_1009', 0); INSERT INTO est_inclus VALUES ('voice_1011', 'CI_Telephone_1010', 1); INSERT INTO est_inclus VALUES ('facsimile_1012', 'CI_Telephone_1010', 2); INSERT INTO est_inclus VALUES ('address_1013', 'CI_Contact_1008', 2); INSERT INTO est_inclus VALUES ('CI_Address_1014', 'address_1013', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1015', 'CI_Address_1014', 1); INSERT INTO est_inclus VALUES ('city_1016', 'CI_Address_1014', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1017', 'CI_Address_1014', 3); INSERT INTO est_inclus VALUES ('postalCode_1018', 'CI_Address_1014', 4); INSERT INTO est_inclus VALUES ('country_1019', 'CI_Address_1014', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1020', 'CI_Address_1014', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1021', 'CI_Contact_1008', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1022', 'onlineRessource_1021', 0); INSERT INTO est_inclus VALUES ('linkage_1023', 'CI_OnlineResource_1022', 1); INSERT INTO est_inclus VALUES ('protocol_1024', 'CI_OnlineResource_1022', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1025', 'CI_OnlineResource_1022', 3); INSERT INTO est_inclus VALUES ('name_1026', 'CI_OnlineResource_1022', 4); INSERT INTO est_inclus VALUES ('description_1027', 'CI_OnlineResource_1022', 5); INSERT INTO est_inclus VALUES ('function_1028', 'CI_OnlineResource_1022', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1029', 'CI_Contact_1008', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1030', 'CI_Contact_1008', 5); INSERT INTO est_inclus VALUES ('role_1031', 'CI_ResponsibleParty_363', 5); INSERT INTO est_inclus VALUES ('MD_AggregateInformation_364', 'aggregateInfo_154', 0); INSERT INTO est_inclus VALUES ('numberOfDimensions_365', 'MD_GridSpatialRepresentation_98', 1); INSERT INTO est_inclus VALUES ('axisDimensionsProperties_366', 'MD_GridSpatialRepresentation_98', 2); INSERT INTO est_inclus VALUES ('MD_Dimension_367', 'axisDimensionsProperties_366', 0); INSERT INTO est_inclus VALUES ('dimensionName_368', 'MD_Dimension_367', 1); INSERT INTO est_inclus VALUES ('dimensionSize_369', 'MD_Dimension_367', 2); INSERT INTO est_inclus VALUES ('resolution_370', 'MD_Dimension_367', 3); INSERT INTO est_inclus VALUES ('cellGeometry_371', 'MD_GridSpatialRepresentation_98', 3); INSERT INTO est_inclus VALUES ('transformationParameterAvailability_372', 'MD_GridSpatialRepresentation_98', 4); INSERT INTO est_inclus VALUES ('checkPointAvailibility_381', 'MD_Georectified_100', 1); INSERT INTO est_inclus VALUES ('checkPointDescription_382', 'MD_Georectified_100', 2); INSERT INTO est_inclus VALUES ('cornerPoints_383', 'MD_Georectified_100', 3); INSERT INTO est_inclus VALUES ('centerPoint_384', 'MD_Georectified_100', 4); INSERT INTO est_inclus VALUES ('pointInPixel_385', 'MD_Georectified_100', 5); INSERT INTO est_inclus VALUES ('transformationDimensionDescription_386', 'MD_Georectified_100', 6); INSERT INTO est_inclus VALUES ('transformationDimensionMapping_387', 'MD_Georectified_100', 7); INSERT INTO est_inclus VALUES ('georeferencedParameters_393', 'MD_Georeferenceable_101', 4); INSERT INTO est_inclus VALUES ('orientationParameterDescription_391', 'MD_Georeferenceable_101', 3); INSERT INTO est_inclus VALUES ('orientationParameterAvailability_389', 'MD_Georeferenceable_101', 2); INSERT INTO est_inclus VALUES ('controlPointAvailability_388', 'MD_Georeferenceable_101', 1); INSERT INTO est_inclus VALUES ('parameterCitation_395', 'MD_Georeferenceable_101', 5); INSERT INTO est_inclus VALUES ('CI_Citation_519', 'parameterCitation_395', 0); INSERT INTO est_inclus VALUES ('title_1032', 'CI_Citation_519', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1033', 'CI_Citation_519', 2); INSERT INTO est_inclus VALUES ('datec_1034', 'CI_Citation_519', 3); INSERT INTO est_inclus VALUES ('CI_Date_1035', 'datec_1034', 0); INSERT INTO est_inclus VALUES ('date_1036', 'CI_Date_1035', 1); INSERT INTO est_inclus VALUES ('dateType_1037', 'CI_Date_1035', 2); INSERT INTO est_inclus VALUES ('edition_1038', 'CI_Citation_519', 4); INSERT INTO est_inclus VALUES ('editionDate_1039', 'CI_Citation_519', 5); INSERT INTO est_inclus VALUES ('identifier_1040', 'CI_Citation_519', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1041', 'identifier_1040', 0); INSERT INTO est_inclus VALUES ('authority_1042', 'MD_Identifier_1041', 1); INSERT INTO est_inclus VALUES ('code_1043', 'MD_Identifier_1041', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1044', 'CI_Citation_519', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1045', 'citedResponsibleParty_1044', 0); INSERT INTO est_inclus VALUES ('presentationForm_1046', 'CI_Citation_519', 8); INSERT INTO est_inclus VALUES ('series_1047', 'CI_Citation_519', 9); INSERT INTO est_inclus VALUES ('CI_Series_1048', 'series_1047', 0); INSERT INTO est_inclus VALUES ('name_1049', 'CI_Series_1048', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1050', 'CI_Series_1048', 2); INSERT INTO est_inclus VALUES ('page_1051', 'CI_Series_1048', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1052', 'CI_Citation_519', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1053', 'CI_Citation_519', 11); INSERT INTO est_inclus VALUES ('ISBN_1054', 'CI_Citation_519', 12); INSERT INTO est_inclus VALUES ('ISSN_1055', 'CI_Citation_519', 13); INSERT INTO est_inclus VALUES ('topologyLevel_397', 'MD_VectorSpatialRepresentation_102', 1); INSERT INTO est_inclus VALUES ('geometricObjects_398', 'MD_VectorSpatialRepresentation_102', 2); INSERT INTO est_inclus VALUES ('extentTypeCode_399', 'EX_GeographicBoundingBox_116', 1); INSERT INTO est_inclus VALUES ('extentTypeCode_400', 'EX_GeographicDescription_117', 1); INSERT INTO est_inclus VALUES ('referenceSystemIdentifier_401', 'MD_ReferenceSystem_99', 0); INSERT INTO est_inclus VALUES ('MD_CRS_402', 'referenceSystemInfo_38', 0); INSERT INTO est_inclus VALUES ('referenceSystemIdentifier_403', 'MD_CRS_402', 1); INSERT INTO est_inclus VALUES ('RS_Identifier_404', 'referenceSystemIdentifier_403', 0); INSERT INTO est_inclus VALUES ('code_877', 'RS_Identifier_404', 1); INSERT INTO est_inclus VALUES ('authority_878', 'RS_Identifier_404', 2); INSERT INTO est_inclus VALUES ('CI_Citation_879', 'authority_878', 0); INSERT INTO est_inclus VALUES ('title_1056', 'CI_Citation_879', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1057', 'CI_Citation_879', 2); INSERT INTO est_inclus VALUES ('datec_1058', 'CI_Citation_879', 3); INSERT INTO est_inclus VALUES ('CI_Date_1059', 'datec_1058', 0); INSERT INTO est_inclus VALUES ('date_1060', 'CI_Date_1059', 1); INSERT INTO est_inclus VALUES ('dateType_1061', 'CI_Date_1059', 2); INSERT INTO est_inclus VALUES ('edition_1062', 'CI_Citation_879', 4); INSERT INTO est_inclus VALUES ('editionDate_1063', 'CI_Citation_879', 5); INSERT INTO est_inclus VALUES ('identifier_1064', 'CI_Citation_879', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1065', 'identifier_1064', 0); INSERT INTO est_inclus VALUES ('authority_1066', 'MD_Identifier_1065', 1); INSERT INTO est_inclus VALUES ('code_1067', 'MD_Identifier_1065', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1068', 'CI_Citation_879', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1069', 'citedResponsibleParty_1068', 0); INSERT INTO est_inclus VALUES ('presentationForm_1070', 'CI_Citation_879', 8); INSERT INTO est_inclus VALUES ('series_1071', 'CI_Citation_879', 9); INSERT INTO est_inclus VALUES ('CI_Series_1072', 'series_1071', 0); INSERT INTO est_inclus VALUES ('name_1073', 'CI_Series_1072', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1074', 'CI_Series_1072', 2); INSERT INTO est_inclus VALUES ('page_1075', 'CI_Series_1072', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1076', 'CI_Citation_879', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1077', 'CI_Citation_879', 11); INSERT INTO est_inclus VALUES ('ISBN_1078', 'CI_Citation_879', 12); INSERT INTO est_inclus VALUES ('ISSN_1079', 'CI_Citation_879', 13); INSERT INTO est_inclus VALUES ('codeSpace_880', 'RS_Identifier_404', 3); INSERT INTO est_inclus VALUES ('version_881', 'RS_Identifier_404', 4); INSERT INTO est_inclus VALUES ('projection_403', 'MD_CRS_402', 2); INSERT INTO est_inclus VALUES ('ellipsoid_404', 'MD_CRS_402', 3); INSERT INTO est_inclus VALUES ('datum_405', 'MD_CRS_402', 4); INSERT INTO est_inclus VALUES ('ellipsoidParameters_407', 'MD_CRS_402', 5); INSERT INTO est_inclus VALUES ('projectionParameters_408', 'MD_CRS_402', 6); INSERT INTO est_inclus VALUES ('codeSpace_409', 'RS_Identifier_131', 3); INSERT INTO est_inclus VALUES ('RS_Identifier_410', 'projection_403', 0); INSERT INTO est_inclus VALUES ('RS_Identifier_411', 'ellipsoid_404', 0); INSERT INTO est_inclus VALUES ('RS_Identifier_412', 'datum_405', 0); INSERT INTO est_inclus VALUES ('version_413', 'RS_Identifier_131', 4); INSERT INTO est_inclus VALUES ('MD_EllipsoidParameters_414', 'ellipsoidParameters_407', 0); INSERT INTO est_inclus VALUES ('MD_ProjectionParameters_415', 'projectionParameters_408', 0); INSERT INTO est_inclus VALUES ('authority_416', 'RS_Identifier_131', 1); INSERT INTO est_inclus VALUES ('code_417', 'RS_Identifier_131', 2); INSERT INTO est_inclus VALUES ('code_418', 'RS_Identifier_410', 2); INSERT INTO est_inclus VALUES ('authority_419', 'RS_Identifier_410', 1); INSERT INTO est_inclus VALUES ('codeSpace_420', 'RS_Identifier_410', 3); INSERT INTO est_inclus VALUES ('version_421', 'RS_Identifier_410', 4); INSERT INTO est_inclus VALUES ('authority_422', 'RS_Identifier_411', 1); INSERT INTO est_inclus VALUES ('code_423', 'RS_Identifier_411', 2); INSERT INTO est_inclus VALUES ('codeSpace_424', 'RS_Identifier_411', 3); INSERT INTO est_inclus VALUES ('version_425', 'RS_Identifier_411', 4); INSERT INTO est_inclus VALUES ('authority_426', 'RS_Identifier_412', 1); INSERT INTO est_inclus VALUES ('code_427', 'RS_Identifier_412', 2); INSERT INTO est_inclus VALUES ('codeSpace_428', 'RS_Identifier_412', 3); INSERT INTO est_inclus VALUES ('version_429', 'RS_Identifier_412', 4); INSERT INTO est_inclus VALUES ('CI_Citation_430', 'authority_132', 0); INSERT INTO est_inclus VALUES ('title_1080', 'CI_Citation_430', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1081', 'CI_Citation_430', 2); INSERT INTO est_inclus VALUES ('datec_1082', 'CI_Citation_430', 3); INSERT INTO est_inclus VALUES ('CI_Date_1083', 'datec_1082', 0); INSERT INTO est_inclus VALUES ('date_1084', 'CI_Date_1083', 1); INSERT INTO est_inclus VALUES ('dateType_1085', 'CI_Date_1083', 2); INSERT INTO est_inclus VALUES ('edition_1086', 'CI_Citation_430', 4); INSERT INTO est_inclus VALUES ('editionDate_1087', 'CI_Citation_430', 5); INSERT INTO est_inclus VALUES ('identifier_1088', 'CI_Citation_430', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1089', 'identifier_1088', 0); INSERT INTO est_inclus VALUES ('authority_1090', 'MD_Identifier_1089', 1); INSERT INTO est_inclus VALUES ('code_1091', 'MD_Identifier_1089', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1092', 'CI_Citation_430', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1093', 'citedResponsibleParty_1092', 0); INSERT INTO est_inclus VALUES ('presentationForm_1094', 'CI_Citation_430', 8); INSERT INTO est_inclus VALUES ('series_1095', 'CI_Citation_430', 9); INSERT INTO est_inclus VALUES ('CI_Series_1096', 'series_1095', 0); INSERT INTO est_inclus VALUES ('name_1097', 'CI_Series_1096', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1098', 'CI_Series_1096', 2); INSERT INTO est_inclus VALUES ('page_1099', 'CI_Series_1096', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1100', 'CI_Citation_430', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1101', 'CI_Citation_430', 11); INSERT INTO est_inclus VALUES ('ISBN_1102', 'CI_Citation_430', 12); INSERT INTO est_inclus VALUES ('ISSN_1103', 'CI_Citation_430', 13); INSERT INTO est_inclus VALUES ('CI_Citation_431', 'authority_416', 0); INSERT INTO est_inclus VALUES ('title_1104', 'CI_Citation_431', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1105', 'CI_Citation_431', 2); INSERT INTO est_inclus VALUES ('datec_1106', 'CI_Citation_431', 3); INSERT INTO est_inclus VALUES ('CI_Date_1107', 'datec_1106', 0); INSERT INTO est_inclus VALUES ('date_1108', 'CI_Date_1107', 1); INSERT INTO est_inclus VALUES ('dateType_1109', 'CI_Date_1107', 2); INSERT INTO est_inclus VALUES ('edition_1110', 'CI_Citation_431', 4); INSERT INTO est_inclus VALUES ('editionDate_1111', 'CI_Citation_431', 5); INSERT INTO est_inclus VALUES ('identifier_1112', 'CI_Citation_431', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1113', 'identifier_1112', 0); INSERT INTO est_inclus VALUES ('authority_1114', 'MD_Identifier_1113', 1); INSERT INTO est_inclus VALUES ('code_1115', 'MD_Identifier_1113', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1116', 'CI_Citation_431', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1117', 'citedResponsibleParty_1116', 0); INSERT INTO est_inclus VALUES ('presentationForm_1118', 'CI_Citation_431', 8); INSERT INTO est_inclus VALUES ('series_1119', 'CI_Citation_431', 9); INSERT INTO est_inclus VALUES ('CI_Series_1120', 'series_1119', 0); INSERT INTO est_inclus VALUES ('name_1121', 'CI_Series_1120', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1122', 'CI_Series_1120', 2); INSERT INTO est_inclus VALUES ('page_1123', 'CI_Series_1120', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1124', 'CI_Citation_431', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1125', 'CI_Citation_431', 11); INSERT INTO est_inclus VALUES ('ISBN_1126', 'CI_Citation_431', 12); INSERT INTO est_inclus VALUES ('ISSN_1127', 'CI_Citation_431', 13); INSERT INTO est_inclus VALUES ('CI_Citation_432', 'authority_419', 0); INSERT INTO est_inclus VALUES ('title_1128', 'CI_Citation_432', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1129', 'CI_Citation_432', 2); INSERT INTO est_inclus VALUES ('datec_1130', 'CI_Citation_432', 3); INSERT INTO est_inclus VALUES ('CI_Date_1131', 'datec_1130', 0); INSERT INTO est_inclus VALUES ('date_1132', 'CI_Date_1131', 1); INSERT INTO est_inclus VALUES ('dateType_1133', 'CI_Date_1131', 2); INSERT INTO est_inclus VALUES ('edition_1134', 'CI_Citation_432', 4); INSERT INTO est_inclus VALUES ('editionDate_1135', 'CI_Citation_432', 5); INSERT INTO est_inclus VALUES ('identifier_1136', 'CI_Citation_432', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1137', 'identifier_1136', 0); INSERT INTO est_inclus VALUES ('authority_1138', 'MD_Identifier_1137', 1); INSERT INTO est_inclus VALUES ('code_1139', 'MD_Identifier_1137', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1140', 'CI_Citation_432', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1141', 'citedResponsibleParty_1140', 0); INSERT INTO est_inclus VALUES ('presentationForm_1142', 'CI_Citation_432', 8); INSERT INTO est_inclus VALUES ('series_1143', 'CI_Citation_432', 9); INSERT INTO est_inclus VALUES ('CI_Series_1144', 'series_1143', 0); INSERT INTO est_inclus VALUES ('name_1145', 'CI_Series_1144', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1146', 'CI_Series_1144', 2); INSERT INTO est_inclus VALUES ('page_1147', 'CI_Series_1144', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1148', 'CI_Citation_432', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1149', 'CI_Citation_432', 11); INSERT INTO est_inclus VALUES ('ISBN_1150', 'CI_Citation_432', 12); INSERT INTO est_inclus VALUES ('ISSN_1151', 'CI_Citation_432', 13); INSERT INTO est_inclus VALUES ('CI_Citation_434', 'authority_426', 0); INSERT INTO est_inclus VALUES ('title_1152', 'CI_Citation_434', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1153', 'CI_Citation_434', 2); INSERT INTO est_inclus VALUES ('datec_1154', 'CI_Citation_434', 3); INSERT INTO est_inclus VALUES ('CI_Date_1155', 'datec_1154', 0); INSERT INTO est_inclus VALUES ('date_1156', 'CI_Date_1155', 1); INSERT INTO est_inclus VALUES ('dateType_1157', 'CI_Date_1155', 2); INSERT INTO est_inclus VALUES ('edition_1158', 'CI_Citation_434', 4); INSERT INTO est_inclus VALUES ('editionDate_1159', 'CI_Citation_434', 5); INSERT INTO est_inclus VALUES ('identifier_1160', 'CI_Citation_434', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1161', 'identifier_1160', 0); INSERT INTO est_inclus VALUES ('authority_1162', 'MD_Identifier_1161', 1); INSERT INTO est_inclus VALUES ('code_1163', 'MD_Identifier_1161', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1164', 'CI_Citation_434', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1165', 'citedResponsibleParty_1164', 0); INSERT INTO est_inclus VALUES ('presentationForm_1166', 'CI_Citation_434', 8); INSERT INTO est_inclus VALUES ('series_1167', 'CI_Citation_434', 9); INSERT INTO est_inclus VALUES ('CI_Series_1168', 'series_1167', 0); INSERT INTO est_inclus VALUES ('name_1169', 'CI_Series_1168', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1170', 'CI_Series_1168', 2); INSERT INTO est_inclus VALUES ('page_1171', 'CI_Series_1168', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1172', 'CI_Citation_434', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1173', 'CI_Citation_434', 11); INSERT INTO est_inclus VALUES ('ISBN_1174', 'CI_Citation_434', 12); INSERT INTO est_inclus VALUES ('ISSN_1175', 'CI_Citation_434', 13); INSERT INTO est_inclus VALUES ('CI_Citation_435', 'authority_422', 0); INSERT INTO est_inclus VALUES ('title_1176', 'CI_Citation_435', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1177', 'CI_Citation_435', 2); INSERT INTO est_inclus VALUES ('datec_1178', 'CI_Citation_435', 3); INSERT INTO est_inclus VALUES ('CI_Date_1179', 'datec_1178', 0); INSERT INTO est_inclus VALUES ('date_1180', 'CI_Date_1179', 1); INSERT INTO est_inclus VALUES ('dateType_1181', 'CI_Date_1179', 2); INSERT INTO est_inclus VALUES ('edition_1182', 'CI_Citation_435', 4); INSERT INTO est_inclus VALUES ('editionDate_1183', 'CI_Citation_435', 5); INSERT INTO est_inclus VALUES ('identifier_1184', 'CI_Citation_435', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1185', 'identifier_1184', 0); INSERT INTO est_inclus VALUES ('authority_1186', 'MD_Identifier_1185', 1); INSERT INTO est_inclus VALUES ('code_1187', 'MD_Identifier_1185', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1188', 'CI_Citation_435', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1189', 'citedResponsibleParty_1188', 0); INSERT INTO est_inclus VALUES ('presentationForm_1190', 'CI_Citation_435', 8); INSERT INTO est_inclus VALUES ('series_1191', 'CI_Citation_435', 9); INSERT INTO est_inclus VALUES ('CI_Series_1192', 'series_1191', 0); INSERT INTO est_inclus VALUES ('name_1193', 'CI_Series_1192', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1194', 'CI_Series_1192', 2); INSERT INTO est_inclus VALUES ('page_1195', 'CI_Series_1192', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1196', 'CI_Citation_435', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1197', 'CI_Citation_435', 11); INSERT INTO est_inclus VALUES ('ISBN_1198', 'CI_Citation_435', 12); INSERT INTO est_inclus VALUES ('ISSN_1199', 'CI_Citation_435', 13); INSERT INTO est_inclus VALUES ('scope_436', 'DQ_DataQuality_106', 1); INSERT INTO est_inclus VALUES ('report_437', 'DQ_DataQuality_106', 2); INSERT INTO est_inclus VALUES ('lineage_438', 'DQ_DataQuality_106', 3); INSERT INTO est_inclus VALUES ('DQ_Scope_439', 'scope_436', 0); INSERT INTO est_inclus VALUES ('LI_Lineage_441', 'lineage_438', 0); INSERT INTO est_inclus VALUES ('level_442', 'DQ_Scope_439', 1); INSERT INTO est_inclus VALUES ('extent_443', 'DQ_Scope_439', 2); INSERT INTO est_inclus VALUES ('levelDescription_444', 'DQ_Scope_439', 3); INSERT INTO est_inclus VALUES ('EX_Extent_445', 'extent_443', 0); INSERT INTO est_inclus VALUES ('MD_ScopeDescription_447', 'levelDescription_444', 0); INSERT INTO est_inclus VALUES ('statement_448', 'LI_Lineage_441', 1); INSERT INTO est_inclus VALUES ('processStep_449', 'LI_Lineage_441', 2); INSERT INTO est_inclus VALUES ('source_450', 'LI_Lineage_441', 3); INSERT INTO est_inclus VALUES ('LI_ProcessStep_451', 'processStep_449', 0); INSERT INTO est_inclus VALUES ('LI_Source_452', 'source_450', 0); INSERT INTO est_inclus VALUES ('CI_OnlineResource_455', 'onlineResource_319', 0); INSERT INTO est_inclus VALUES ('linkage_456', 'CI_OnlineResource_455', 1); INSERT INTO est_inclus VALUES ('protocol_457', 'CI_OnlineResource_455', 2); INSERT INTO est_inclus VALUES ('applicationProfile_458', 'CI_OnlineResource_455', 3); INSERT INTO est_inclus VALUES ('name_459', 'CI_OnlineResource_455', 4); INSERT INTO est_inclus VALUES ('description_460', 'CI_OnlineResource_455', 5); INSERT INTO est_inclus VALUES ('function_461', 'CI_OnlineResource_455', 6); INSERT INTO est_inclus VALUES ('geometricObjectType_464', 'MD_GeometricObjects_463', 1); INSERT INTO est_inclus VALUES ('geometricObjectCount_465', 'MD_GeometricObjects_463', 2); INSERT INTO est_inclus VALUES ('MD_GeometricObjects_463', 'geometricObjects_398', 0); INSERT INTO est_inclus VALUES ('TimePeriod_501', 'extent_146', 0); INSERT INTO est_inclus VALUES ('beginPosition_502', 'TimePeriod_501', 1); INSERT INTO est_inclus VALUES ('endPosition_504', 'TimePeriod_501', 2); INSERT INTO est_inclus VALUES ('geographicElement_506', 'EX_Extent_118', 3); INSERT INTO est_inclus VALUES ('geographicElement_507', 'EX_Extent_118', 4); INSERT INTO est_inclus VALUES ('graphicOverview_508', 'MD_DataIdentification_68', 8); INSERT INTO est_inclus VALUES ('MD_BrowseGraphic_509', 'graphicOverview_508', 0); INSERT INTO est_inclus VALUES ('fileName_510', 'MD_BrowseGraphic_509', 1); INSERT INTO est_inclus VALUES ('fileType_511', 'MD_BrowseGraphic_509', 2); INSERT INTO est_inclus VALUES ('semiMajorAxis_519', 'MD_EllipsoidParameters_414', 1); INSERT INTO est_inclus VALUES ('axisUnits_520', 'MD_EllipsoidParameters_414', 2); INSERT INTO est_inclus VALUES ('denominatorOfFlatetteningRatio_521', 'MD_EllipsoidParameters_414', 3); INSERT INTO est_inclus VALUES ('zone_522', 'MD_ProjectionParameters_415', 1); INSERT INTO est_inclus VALUES ('standardParallel_523', 'MD_ProjectionParameters_415', 2); INSERT INTO est_inclus VALUES ('longitudeOfCentralMeridian_523', 'MD_ProjectionParameters_415', 3); INSERT INTO est_inclus VALUES ('latitudeOfProjectionOrigin_524', 'MD_ProjectionParameters_415', 4); INSERT INTO est_inclus VALUES ('falseEasting_526', 'MD_ProjectionParameters_415', 5); INSERT INTO est_inclus VALUES ('falseNorthing_527', 'MD_ProjectionParameters_415', 6); INSERT INTO est_inclus VALUES ('falseEastingNorthingUnits_528', 'MD_ProjectionParameters_415', 7); INSERT INTO est_inclus VALUES ('scaleFactorAtEquator_529', 'MD_ProjectionParameters_415', 8); INSERT INTO est_inclus VALUES ('heightOfProspectivePointAboveSurface_530', 'MD_ProjectionParameters_415', 9); INSERT INTO est_inclus VALUES ('longitudeOfProjectionCenter_531', 'MD_ProjectionParameters_415', 10); INSERT INTO est_inclus VALUES ('latitudeOfProjectionCenter_532', 'MD_ProjectionParameters_415', 11); INSERT INTO est_inclus VALUES ('scaleFactorAtCenterLine_533', 'MD_ProjectionParameters_415', 12); INSERT INTO est_inclus VALUES ('straightVerticalLongitudeFromPole_534', 'MD_ProjectionParameters_415', 13); INSERT INTO est_inclus VALUES ('scaleFactorAtProjectionOrigin_535', 'MD_ProjectionParameters_415', 14); INSERT INTO est_inclus VALUES ('obliqueLineAzimuthParameter_536', 'MD_ProjectionParameters_415', 15); INSERT INTO est_inclus VALUES ('MD_ObliqueLineAzimuth_537', 'obliqueLineAzimuthParameter_536', 0); INSERT INTO est_inclus VALUES ('azimuthAngle_538', 'MD_ObliqueLineAzimuth_537', 1); INSERT INTO est_inclus VALUES ('azimuthMeasurePointLongitude_539', 'MD_ObliqueLineAzimuth_537', 2); INSERT INTO est_inclus VALUES ('obliqueLinePointParameter_537', 'MD_ProjectionParameters_415', 16); INSERT INTO est_inclus VALUES ('MD_ObliqueLinePoint_540', 'obliqueLinePointParameter_537', 0); INSERT INTO est_inclus VALUES ('obliqueLineLatitude_541', 'MD_ObliqueLinePoint_540', 1); INSERT INTO est_inclus VALUES ('obliqueLineLongitude_542', 'MD_ObliqueLinePoint_540', 2); INSERT INTO est_inclus VALUES ('extensionOnLineResource_544', 'MD_MetadataExtensionInformation_103', 1); INSERT INTO est_inclus VALUES ('CI_OnlineResource_559', 'extensionOnLineResource_544', 0); INSERT INTO est_inclus VALUES ('extendedElementInformation_545', 'MD_MetadataExtensionInformation_103', 2); INSERT INTO est_inclus VALUES ('MD_ExtendedElementInformation_546', 'extendedElementInformation_545', 0); INSERT INTO est_inclus VALUES ('name_547', 'MD_ExtendedElementInformation_546', 1); INSERT INTO est_inclus VALUES ('shortName_548', 'MD_ExtendedElementInformation_546', 2); INSERT INTO est_inclus VALUES ('domainCode_549', 'MD_ExtendedElementInformation_546', 3); INSERT INTO est_inclus VALUES ('definition_550', 'MD_ExtendedElementInformation_546', 4); INSERT INTO est_inclus VALUES ('obligation_551', 'MD_ExtendedElementInformation_546', 5); INSERT INTO est_inclus VALUES ('condition_552', 'MD_ExtendedElementInformation_546', 6); INSERT INTO est_inclus VALUES ('dataType_552', 'MD_ExtendedElementInformation_546', 7); INSERT INTO est_inclus VALUES ('maximumOccurrence_553', 'MD_ExtendedElementInformation_546', 8); INSERT INTO est_inclus VALUES ('domainValue_554', 'MD_ExtendedElementInformation_546', 9); INSERT INTO est_inclus VALUES ('parentEntity_555', 'MD_ExtendedElementInformation_546', 10); INSERT INTO est_inclus VALUES ('rule_556', 'MD_ExtendedElementInformation_546', 11); INSERT INTO est_inclus VALUES ('rationale_557', 'MD_ExtendedElementInformation_546', 12); INSERT INTO est_inclus VALUES ('source_558', 'MD_ExtendedElementInformation_546', 13); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_560', 'source_558', 0); INSERT INTO est_inclus VALUES ('individualName_1200', 'CI_ResponsibleParty_560', 1); INSERT INTO est_inclus VALUES ('organisationName_1201', 'CI_ResponsibleParty_560', 2); INSERT INTO est_inclus VALUES ('positionName_1202', 'CI_ResponsibleParty_560', 3); INSERT INTO est_inclus VALUES ('contactInfo_1203', 'CI_ResponsibleParty_560', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1204', 'contactInfo_1203', 0); INSERT INTO est_inclus VALUES ('phone_1205', 'CI_Contact_1204', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1206', 'phone_1205', 0); INSERT INTO est_inclus VALUES ('voice_1207', 'CI_Telephone_1206', 1); INSERT INTO est_inclus VALUES ('facsimile_1208', 'CI_Telephone_1206', 2); INSERT INTO est_inclus VALUES ('address_1209', 'CI_Contact_1204', 2); INSERT INTO est_inclus VALUES ('CI_Address_1210', 'address_1209', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1211', 'CI_Address_1210', 1); INSERT INTO est_inclus VALUES ('city_1212', 'CI_Address_1210', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1213', 'CI_Address_1210', 3); INSERT INTO est_inclus VALUES ('postalCode_1214', 'CI_Address_1210', 4); INSERT INTO est_inclus VALUES ('country_1215', 'CI_Address_1210', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1216', 'CI_Address_1210', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1217', 'CI_Contact_1204', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1218', 'onlineRessource_1217', 0); INSERT INTO est_inclus VALUES ('linkage_1219', 'CI_OnlineResource_1218', 1); INSERT INTO est_inclus VALUES ('protocol_1220', 'CI_OnlineResource_1218', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1221', 'CI_OnlineResource_1218', 3); INSERT INTO est_inclus VALUES ('name_1222', 'CI_OnlineResource_1218', 4); INSERT INTO est_inclus VALUES ('description_1223', 'CI_OnlineResource_1218', 5); INSERT INTO est_inclus VALUES ('function_1224', 'CI_OnlineResource_1218', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1225', 'CI_Contact_1204', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1226', 'CI_Contact_1204', 5); INSERT INTO est_inclus VALUES ('role_1227', 'CI_ResponsibleParty_560', 5); INSERT INTO est_inclus VALUES ('AggregateDataSetName_562', 'MD_AggregateInformation_364', 1); INSERT INTO est_inclus VALUES ('CI_Citation_566', 'AggregateDataSetName_562', 0); INSERT INTO est_inclus VALUES ('title_1228', 'CI_Citation_566', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1229', 'CI_Citation_566', 2); INSERT INTO est_inclus VALUES ('datec_1230', 'CI_Citation_566', 3); INSERT INTO est_inclus VALUES ('CI_Date_1231', 'datec_1230', 0); INSERT INTO est_inclus VALUES ('date_1232', 'CI_Date_1231', 1); INSERT INTO est_inclus VALUES ('dateType_1233', 'CI_Date_1231', 2); INSERT INTO est_inclus VALUES ('edition_1234', 'CI_Citation_566', 4); INSERT INTO est_inclus VALUES ('editionDate_1235', 'CI_Citation_566', 5); INSERT INTO est_inclus VALUES ('identifier_1236', 'CI_Citation_566', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1237', 'identifier_1236', 0); INSERT INTO est_inclus VALUES ('authority_1238', 'MD_Identifier_1237', 1); INSERT INTO est_inclus VALUES ('code_1239', 'MD_Identifier_1237', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1240', 'CI_Citation_566', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1241', 'citedResponsibleParty_1240', 0); INSERT INTO est_inclus VALUES ('presentationForm_1242', 'CI_Citation_566', 8); INSERT INTO est_inclus VALUES ('series_1243', 'CI_Citation_566', 9); INSERT INTO est_inclus VALUES ('CI_Series_1244', 'series_1243', 0); INSERT INTO est_inclus VALUES ('name_1245', 'CI_Series_1244', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1246', 'CI_Series_1244', 2); INSERT INTO est_inclus VALUES ('page_1247', 'CI_Series_1244', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1248', 'CI_Citation_566', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1249', 'CI_Citation_566', 11); INSERT INTO est_inclus VALUES ('ISBN_1250', 'CI_Citation_566', 12); INSERT INTO est_inclus VALUES ('ISSN_1251', 'CI_Citation_566', 13); INSERT INTO est_inclus VALUES ('AggregateDataSetIdentitier_563', 'MD_AggregateInformation_364', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_567', 'AggregateDataSetIdentitier_563', 0); INSERT INTO est_inclus VALUES ('authority_1252', 'MD_Identifier_567', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1253', 'authority_1252', 0); INSERT INTO est_inclus VALUES ('code_1254', 'MD_Identifier_567', 2); INSERT INTO est_inclus VALUES ('associationType_564', 'MD_AggregateInformation_364', 3); INSERT INTO est_inclus VALUES ('initiativeType_565', 'MD_AggregateInformation_364', 4); INSERT INTO est_inclus VALUES ('MD_FeatureCatalogueDescription_568', 'contentInfo_40', 0); INSERT INTO est_inclus VALUES ('complianceCode_569', 'MD_FeatureCatalogueDescription_568', 1); INSERT INTO est_inclus VALUES ('language_570', 'MD_FeatureCatalogueDescription_568', 2); INSERT INTO est_inclus VALUES ('includedWithDataset_571', 'MD_FeatureCatalogueDescription_568', 3); INSERT INTO est_inclus VALUES ('featureTypes_572', 'MD_FeatureCatalogueDescription_568', 4); INSERT INTO est_inclus VALUES ('featureCatalogueCitation_573', 'MD_FeatureCatalogueDescription_568', 5); INSERT INTO est_inclus VALUES ('CI_Citation_605', 'featureCatalogueCitation_573', 0); INSERT INTO est_inclus VALUES ('title_1255', 'CI_Citation_605', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1256', 'CI_Citation_605', 2); INSERT INTO est_inclus VALUES ('datec_1257', 'CI_Citation_605', 3); INSERT INTO est_inclus VALUES ('CI_Date_1258', 'datec_1257', 0); INSERT INTO est_inclus VALUES ('date_1259', 'CI_Date_1258', 1); INSERT INTO est_inclus VALUES ('dateType_1260', 'CI_Date_1258', 2); INSERT INTO est_inclus VALUES ('edition_1261', 'CI_Citation_605', 4); INSERT INTO est_inclus VALUES ('editionDate_1262', 'CI_Citation_605', 5); INSERT INTO est_inclus VALUES ('identifier_1263', 'CI_Citation_605', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1264', 'identifier_1263', 0); INSERT INTO est_inclus VALUES ('authority_1265', 'MD_Identifier_1264', 1); INSERT INTO est_inclus VALUES ('code_1266', 'MD_Identifier_1264', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1267', 'CI_Citation_605', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1268', 'citedResponsibleParty_1267', 0); INSERT INTO est_inclus VALUES ('presentationForm_1269', 'CI_Citation_605', 8); INSERT INTO est_inclus VALUES ('series_1270', 'CI_Citation_605', 9); INSERT INTO est_inclus VALUES ('CI_Series_1271', 'series_1270', 0); INSERT INTO est_inclus VALUES ('name_1272', 'CI_Series_1271', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1273', 'CI_Series_1271', 2); INSERT INTO est_inclus VALUES ('page_1274', 'CI_Series_1271', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1275', 'CI_Citation_605', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1276', 'CI_Citation_605', 11); INSERT INTO est_inclus VALUES ('ISBN_1277', 'CI_Citation_605', 12); INSERT INTO est_inclus VALUES ('ISSN_1278', 'CI_Citation_605', 13); INSERT INTO est_inclus VALUES ('MD_CoverageDescription_574', 'contentInfo_40', 0); INSERT INTO est_inclus VALUES ('attributeDescription_576', 'MD_CoverageDescription_574', 1); INSERT INTO est_inclus VALUES ('contentType_577', 'MD_CoverageDescription_574', 2); INSERT INTO est_inclus VALUES ('dimension_578', 'MD_CoverageDescription_574', 3); INSERT INTO est_inclus VALUES ('MD_RangeDimension_593', 'dimension_578', 0); INSERT INTO est_inclus VALUES ('MD_ImageDescription_580', 'contentInfo_40', 0); INSERT INTO est_inclus VALUES ('illuminationElevationAngle_581', 'MD_ImageDescription_580', 1); INSERT INTO est_inclus VALUES ('illuminationAzimuthAngle_582', 'MD_ImageDescription_580', 2); INSERT INTO est_inclus VALUES ('imagingCondition_583', 'MD_ImageDescription_580', 3); INSERT INTO est_inclus VALUES ('imageQualityCode_584', 'MD_ImageDescription_580', 4); INSERT INTO est_inclus VALUES ('MD_Identifier_606', 'imageQualityCode_584', 0); INSERT INTO est_inclus VALUES ('authority_1279', 'MD_Identifier_606', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1280', 'authority_1279', 0); INSERT INTO est_inclus VALUES ('code_1281', 'MD_Identifier_606', 2); INSERT INTO est_inclus VALUES ('cloudCoverPercentage_585', 'MD_ImageDescription_580', 5); INSERT INTO est_inclus VALUES ('processingLevelCode_586', 'MD_ImageDescription_580', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_607', 'processingLevelCode_586', 0); INSERT INTO est_inclus VALUES ('authority_1282', 'MD_Identifier_607', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1283', 'authority_1282', 0); INSERT INTO est_inclus VALUES ('code_1284', 'MD_Identifier_607', 2); INSERT INTO est_inclus VALUES ('compressionGenerationQuantity_587', 'MD_ImageDescription_580', 7); INSERT INTO est_inclus VALUES ('triangulationIndicator_588', 'MD_ImageDescription_580', 8); INSERT INTO est_inclus VALUES ('radiometricCalibrationDataAvailability_589', 'MD_ImageDescription_580', 9); INSERT INTO est_inclus VALUES ('cameraCalibrationInformationAvailability_590', 'MD_ImageDescription_580', 10); INSERT INTO est_inclus VALUES ('filmDistortionInformationAvailability_591', 'MD_ImageDescription_580', 11); INSERT INTO est_inclus VALUES ('lensDistortionInformationAvailability_592', 'MD_ImageDescription_580', 12); INSERT INTO est_inclus VALUES ('sequenceIdentifier_594', 'MD_RangeDimension_593', 1); INSERT INTO est_inclus VALUES ('descriptor_595', 'MD_RangeDimension_593', 2); INSERT INTO est_inclus VALUES ('MD_Band_596', 'dimension_578', 0); INSERT INTO est_inclus VALUES ('maxValue_597', 'MD_Band_596', 1); INSERT INTO est_inclus VALUES ('minValue_598', 'MD_Band_596', 2); INSERT INTO est_inclus VALUES ('units_599', 'MD_Band_596', 3); INSERT INTO est_inclus VALUES ('peakResponse_600', 'MD_Band_596', 4); INSERT INTO est_inclus VALUES ('bitsPerValue_601', 'MD_Band_596', 5); INSERT INTO est_inclus VALUES ('toneGradation_602', 'MD_Band_596', 6); INSERT INTO est_inclus VALUES ('scaleFactor_603', 'MD_Band_596', 7); INSERT INTO est_inclus VALUES ('offset_604', 'MD_Band_596', 8); INSERT INTO est_inclus VALUES ('portrayalCatalogueCitation_608', 'MD_PortrayalCatalogueReference_107', 1); INSERT INTO est_inclus VALUES ('CI_Citation_609', 'portrayalCatalogueCitation_608', 0); INSERT INTO est_inclus VALUES ('title_1285', 'CI_Citation_609', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1286', 'CI_Citation_609', 2); INSERT INTO est_inclus VALUES ('datec_1287', 'CI_Citation_609', 3); INSERT INTO est_inclus VALUES ('CI_Date_1288', 'datec_1287', 0); INSERT INTO est_inclus VALUES ('date_1289', 'CI_Date_1288', 1); INSERT INTO est_inclus VALUES ('dateType_1290', 'CI_Date_1288', 2); INSERT INTO est_inclus VALUES ('edition_1291', 'CI_Citation_609', 4); INSERT INTO est_inclus VALUES ('editionDate_1292', 'CI_Citation_609', 5); INSERT INTO est_inclus VALUES ('identifier_1293', 'CI_Citation_609', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1294', 'identifier_1293', 0); INSERT INTO est_inclus VALUES ('authority_1295', 'MD_Identifier_1294', 1); INSERT INTO est_inclus VALUES ('code_1296', 'MD_Identifier_1294', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1297', 'CI_Citation_609', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1298', 'citedResponsibleParty_1297', 0); INSERT INTO est_inclus VALUES ('presentationForm_1299', 'CI_Citation_609', 8); INSERT INTO est_inclus VALUES ('series_1300', 'CI_Citation_609', 9); INSERT INTO est_inclus VALUES ('CI_Series_1301', 'series_1300', 0); INSERT INTO est_inclus VALUES ('name_1302', 'CI_Series_1301', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1303', 'CI_Series_1301', 2); INSERT INTO est_inclus VALUES ('page_1304', 'CI_Series_1301', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1305', 'CI_Citation_609', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1306', 'CI_Citation_609', 11); INSERT INTO est_inclus VALUES ('ISBN_1307', 'CI_Citation_609', 12); INSERT INTO est_inclus VALUES ('ISSN_1308', 'CI_Citation_609', 13); INSERT INTO est_inclus VALUES ('name_611', 'MD_ApplicationSchemaInformation_109', 1); INSERT INTO est_inclus VALUES ('CI_Citation_618', 'name_611', 0); INSERT INTO est_inclus VALUES ('title_1309', 'CI_Citation_618', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1310', 'CI_Citation_618', 2); INSERT INTO est_inclus VALUES ('datec_1311', 'CI_Citation_618', 3); INSERT INTO est_inclus VALUES ('CI_Date_1312', 'datec_1311', 0); INSERT INTO est_inclus VALUES ('date_1313', 'CI_Date_1312', 1); INSERT INTO est_inclus VALUES ('dateType_1314', 'CI_Date_1312', 2); INSERT INTO est_inclus VALUES ('edition_1315', 'CI_Citation_618', 4); INSERT INTO est_inclus VALUES ('editionDate_1316', 'CI_Citation_618', 5); INSERT INTO est_inclus VALUES ('identifier_1317', 'CI_Citation_618', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1318', 'identifier_1317', 0); INSERT INTO est_inclus VALUES ('authority_1319', 'MD_Identifier_1318', 1); INSERT INTO est_inclus VALUES ('code_1320', 'MD_Identifier_1318', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1321', 'CI_Citation_618', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1322', 'citedResponsibleParty_1321', 0); INSERT INTO est_inclus VALUES ('presentationForm_1323', 'CI_Citation_618', 8); INSERT INTO est_inclus VALUES ('series_1324', 'CI_Citation_618', 9); INSERT INTO est_inclus VALUES ('CI_Series_1325', 'series_1324', 0); INSERT INTO est_inclus VALUES ('name_1326', 'CI_Series_1325', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1327', 'CI_Series_1325', 2); INSERT INTO est_inclus VALUES ('page_1328', 'CI_Series_1325', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1329', 'CI_Citation_618', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1330', 'CI_Citation_618', 11); INSERT INTO est_inclus VALUES ('ISBN_1331', 'CI_Citation_618', 12); INSERT INTO est_inclus VALUES ('ISSN_1332', 'CI_Citation_618', 13); INSERT INTO est_inclus VALUES ('schemaLanguage_612', 'MD_ApplicationSchemaInformation_109', 2); INSERT INTO est_inclus VALUES ('constraintLanguage_613', 'MD_ApplicationSchemaInformation_109', 3); INSERT INTO est_inclus VALUES ('schemaAscii_614', 'MD_ApplicationSchemaInformation_109', 4); INSERT INTO est_inclus VALUES ('graphicsFile_615', 'MD_ApplicationSchemaInformation_109', 5); INSERT INTO est_inclus VALUES ('softwareDevelopmentFile_616', 'MD_ApplicationSchemaInformation_109', 6); INSERT INTO est_inclus VALUES ('softwareDevelopmentFileFormat_617', 'MD_ApplicationSchemaInformation_109', 7); INSERT INTO est_inclus VALUES ('description_618', 'LI_ProcessStep_451', 1); INSERT INTO est_inclus VALUES ('rationale_619', 'LI_ProcessStep_451', 2); INSERT INTO est_inclus VALUES ('dateTime_620', 'LI_ProcessStep_451', 3); INSERT INTO est_inclus VALUES ('processor_621', 'LI_ProcessStep_451', 4); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_623', 'processor_621', 0); INSERT INTO est_inclus VALUES ('individualName_1333', 'CI_ResponsibleParty_623', 1); INSERT INTO est_inclus VALUES ('organisationName_1334', 'CI_ResponsibleParty_623', 2); INSERT INTO est_inclus VALUES ('positionName_1335', 'CI_ResponsibleParty_623', 3); INSERT INTO est_inclus VALUES ('contactInfo_1336', 'CI_ResponsibleParty_623', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1337', 'contactInfo_1336', 0); INSERT INTO est_inclus VALUES ('phone_1338', 'CI_Contact_1337', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1339', 'phone_1338', 0); INSERT INTO est_inclus VALUES ('voice_1340', 'CI_Telephone_1339', 1); INSERT INTO est_inclus VALUES ('facsimile_1341', 'CI_Telephone_1339', 2); INSERT INTO est_inclus VALUES ('address_1342', 'CI_Contact_1337', 2); INSERT INTO est_inclus VALUES ('CI_Address_1343', 'address_1342', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1344', 'CI_Address_1343', 1); INSERT INTO est_inclus VALUES ('city_1345', 'CI_Address_1343', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1346', 'CI_Address_1343', 3); INSERT INTO est_inclus VALUES ('postalCode_1347', 'CI_Address_1343', 4); INSERT INTO est_inclus VALUES ('country_1348', 'CI_Address_1343', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1349', 'CI_Address_1343', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1350', 'CI_Contact_1337', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1351', 'onlineRessource_1350', 0); INSERT INTO est_inclus VALUES ('linkage_1352', 'CI_OnlineResource_1351', 1); INSERT INTO est_inclus VALUES ('protocol_1353', 'CI_OnlineResource_1351', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1354', 'CI_OnlineResource_1351', 3); INSERT INTO est_inclus VALUES ('name_1355', 'CI_OnlineResource_1351', 4); INSERT INTO est_inclus VALUES ('description_1356', 'CI_OnlineResource_1351', 5); INSERT INTO est_inclus VALUES ('function_1357', 'CI_OnlineResource_1351', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1358', 'CI_Contact_1337', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1359', 'CI_Contact_1337', 5); INSERT INTO est_inclus VALUES ('role_1360', 'CI_ResponsibleParty_623', 5); INSERT INTO est_inclus VALUES ('source_622', 'LI_ProcessStep_451', 5); INSERT INTO est_inclus VALUES ('LI_Source_624', 'source_622', 0); INSERT INTO est_inclus VALUES ('description_623', 'LI_Source_452', 1); INSERT INTO est_inclus VALUES ('scaleDenominator_624', 'LI_Source_452', 2); INSERT INTO est_inclus VALUES ('MD_RepresentativeFraction_629', 'scaleDenominator_624', 0); INSERT INTO est_inclus VALUES ('denominator_630', 'MD_RepresentativeFraction_629', 1); INSERT INTO est_inclus VALUES ('sourceReferenceSystem_625', 'LI_Source_452', 3); INSERT INTO est_inclus VALUES ('MD_ReferenceSystem_637', 'sourceReferenceSystem_625', 0); INSERT INTO est_inclus VALUES ('referenceSystemIdentifier_638', 'MD_ReferenceSystem_637', 1); INSERT INTO est_inclus VALUES ('RS_Identifier_639', 'referenceSystemIdentifier_638', 0); INSERT INTO est_inclus VALUES ('authority_1361', 'RS_Identifier_639', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1362', 'authority_1361', 0); INSERT INTO est_inclus VALUES ('code_1363', 'RS_Identifier_639', 2); INSERT INTO est_inclus VALUES ('codeSpace_1364', 'RS_Identifier_639', 3); INSERT INTO est_inclus VALUES ('version_1365', 'RS_Identifier_639', 4); INSERT INTO est_inclus VALUES ('sourceCitation_626', 'LI_Source_452', 4); INSERT INTO est_inclus VALUES ('CI_Citation_638', 'sourceCitation_626', 0); INSERT INTO est_inclus VALUES ('title_1366', 'CI_Citation_638', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1367', 'CI_Citation_638', 2); INSERT INTO est_inclus VALUES ('datec_1368', 'CI_Citation_638', 3); INSERT INTO est_inclus VALUES ('CI_Date_1369', 'datec_1368', 0); INSERT INTO est_inclus VALUES ('date_1370', 'CI_Date_1369', 1); INSERT INTO est_inclus VALUES ('dateType_1371', 'CI_Date_1369', 2); INSERT INTO est_inclus VALUES ('edition_1372', 'CI_Citation_638', 4); INSERT INTO est_inclus VALUES ('editionDate_1373', 'CI_Citation_638', 5); INSERT INTO est_inclus VALUES ('identifier_1374', 'CI_Citation_638', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1375', 'identifier_1374', 0); INSERT INTO est_inclus VALUES ('authority_1376', 'MD_Identifier_1375', 1); INSERT INTO est_inclus VALUES ('code_1377', 'MD_Identifier_1375', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1378', 'CI_Citation_638', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1379', 'citedResponsibleParty_1378', 0); INSERT INTO est_inclus VALUES ('presentationForm_1380', 'CI_Citation_638', 8); INSERT INTO est_inclus VALUES ('series_1381', 'CI_Citation_638', 9); INSERT INTO est_inclus VALUES ('CI_Series_1382', 'series_1381', 0); INSERT INTO est_inclus VALUES ('name_1383', 'CI_Series_1382', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1384', 'CI_Series_1382', 2); INSERT INTO est_inclus VALUES ('page_1385', 'CI_Series_1382', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1386', 'CI_Citation_638', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1387', 'CI_Citation_638', 11); INSERT INTO est_inclus VALUES ('ISBN_1388', 'CI_Citation_638', 12); INSERT INTO est_inclus VALUES ('ISSN_1389', 'CI_Citation_638', 13); INSERT INTO est_inclus VALUES ('sourceExtent_627', 'LI_Source_452', 5); INSERT INTO est_inclus VALUES ('EX_Extent_628', 'sourceExtent_627', 0); INSERT INTO est_inclus VALUES ('description_629', 'EX_Extent_628', 1); INSERT INTO est_inclus VALUES ('geographicElement_630', 'EX_Extent_628', 2); INSERT INTO est_inclus VALUES ('EX_GeographicBoundingBox_631', 'geographicElement_630', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_632', 'EX_GeographicBoundingBox_631', 1); INSERT INTO est_inclus VALUES ('westBoundLongitude_633', 'EX_GeographicBoundingBox_631', 2); INSERT INTO est_inclus VALUES ('eastBoundLongitude_634', 'EX_GeographicBoundingBox_631', 3); INSERT INTO est_inclus VALUES ('southBoundLatitude_635', 'EX_GeographicBoundingBox_631', 4); INSERT INTO est_inclus VALUES ('northBoundLatitude_636', 'EX_GeographicBoundingBox_631', 5); INSERT INTO est_inclus VALUES ('geographicElement_637', 'EX_Extent_628', 2); INSERT INTO est_inclus VALUES ('EX_GeographicDescription_638', 'geographicElement_637', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_639', 'EX_GeographicDescription_638', 1); INSERT INTO est_inclus VALUES ('geographicIdentifier_640', 'EX_GeographicDescription_638', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_641', 'geographicIdentifier_640', 0); INSERT INTO est_inclus VALUES ('authority_1390', 'MD_Identifier_641', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1391', 'authority_1390', 0); INSERT INTO est_inclus VALUES ('code_1392', 'MD_Identifier_641', 2); INSERT INTO est_inclus VALUES ('geographicElement_642', 'EX_Extent_628', 2); INSERT INTO est_inclus VALUES ('EX_BoundingPolygon_643', 'geographicElement_642', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_644', 'EX_BoundingPolygon_643', 1); INSERT INTO est_inclus VALUES ('polygon_645', 'EX_BoundingPolygon_643', 2); INSERT INTO est_inclus VALUES ('temporalElement_646', 'EX_Extent_628', 3); INSERT INTO est_inclus VALUES ('EX_TemporalExtent_647', 'temporalElement_646', 0); INSERT INTO est_inclus VALUES ('extent_648', 'EX_TemporalExtent_647', 1); INSERT INTO est_inclus VALUES ('TimePeriod_649', 'extent_648', 0); INSERT INTO est_inclus VALUES ('beginPosition_650', 'TimePeriod_649', 1); INSERT INTO est_inclus VALUES ('endPosition_660', 'TimePeriod_649', 2); INSERT INTO est_inclus VALUES ('verticalElement_661', 'EX_Extent_628', 4); INSERT INTO est_inclus VALUES ('Ex_VerticalExtent_662', 'verticalElement_661', 0); INSERT INTO est_inclus VALUES ('minimumValue_663', 'Ex_VerticalExtent_662', 1); INSERT INTO est_inclus VALUES ('maximumValue_664', 'Ex_VerticalExtent_662', 2); INSERT INTO est_inclus VALUES ('unitOfMeasure_665', 'Ex_VerticalExtent_662', 3); INSERT INTO est_inclus VALUES ('verticalDatum_666', 'Ex_VerticalExtent_662', 4); INSERT INTO est_inclus VALUES ('LI_ProcessStep_631', 'sourceStep_628', 0); INSERT INTO est_inclus VALUES ('description_632', 'LI_ProcessStep_631', 1); INSERT INTO est_inclus VALUES ('rationale_633', 'LI_ProcessStep_631', 2); INSERT INTO est_inclus VALUES ('dateTime_634', 'LI_ProcessStep_631', 3); INSERT INTO est_inclus VALUES ('processor_635', 'LI_ProcessStep_631', 4); INSERT INTO est_inclus VALUES ('source_636', 'LI_ProcessStep_631', 5); INSERT INTO est_inclus VALUES ('description_668', 'EX_Extent_445', 1); INSERT INTO est_inclus VALUES ('geographicElement_669', 'EX_Extent_445', 2); INSERT INTO est_inclus VALUES ('EX_GeographicBoundingBox_670', 'geographicElement_669', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_671', 'EX_GeographicBoundingBox_670', 1); INSERT INTO est_inclus VALUES ('westBoundLongitude_672', 'EX_GeographicBoundingBox_670', 2); INSERT INTO est_inclus VALUES ('eastBoundLongitude_673', 'EX_GeographicBoundingBox_670', 3); INSERT INTO est_inclus VALUES ('southBoundLatitude_674', 'EX_GeographicBoundingBox_670', 4); INSERT INTO est_inclus VALUES ('northBoundLatitude_675', 'EX_GeographicBoundingBox_670', 5); INSERT INTO est_inclus VALUES ('geographicElement_676', 'EX_Extent_445', 2); INSERT INTO est_inclus VALUES ('EX_GeographicDescription_677', 'geographicElement_676', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_678', 'EX_GeographicDescription_677', 1); INSERT INTO est_inclus VALUES ('geographicIdentifier_679', 'EX_GeographicDescription_677', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_680', 'geographicIdentifier_679', 0); INSERT INTO est_inclus VALUES ('authority_1393', 'MD_Identifier_680', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1394', 'authority_1393', 0); INSERT INTO est_inclus VALUES ('code_1395', 'MD_Identifier_680', 2); INSERT INTO est_inclus VALUES ('geographicElement_681', 'EX_Extent_445', 2); INSERT INTO est_inclus VALUES ('EX_BoundingPolygon_682', 'geographicElement_681', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_683', 'EX_BoundingPolygon_682', 1); INSERT INTO est_inclus VALUES ('polygon_684', 'EX_BoundingPolygon_682', 2); INSERT INTO est_inclus VALUES ('temporalElement_685', 'EX_Extent_445', 3); INSERT INTO est_inclus VALUES ('EX_TemporalExtent_686', 'temporalElement_685', 0); INSERT INTO est_inclus VALUES ('extent_687', 'EX_TemporalExtent_647', 1); INSERT INTO est_inclus VALUES ('TimePeriod_688', 'extent_687', 0); INSERT INTO est_inclus VALUES ('beginPosition_689', 'TimePeriod_688', 1); INSERT INTO est_inclus VALUES ('endPosition_690', 'TimePeriod_688', 2); INSERT INTO est_inclus VALUES ('verticalElement_691', 'EX_Extent_445', 4); INSERT INTO est_inclus VALUES ('Ex_VerticalExtent_692', 'verticalElement_691', 0); INSERT INTO est_inclus VALUES ('minimumValue_693', 'Ex_VerticalExtent_692', 1); INSERT INTO est_inclus VALUES ('maximumValue_694', 'Ex_VerticalExtent_692', 2); INSERT INTO est_inclus VALUES ('unitOfMeasure_695', 'Ex_VerticalExtent_692', 3); INSERT INTO est_inclus VALUES ('verticalDatum_696', 'Ex_VerticalExtent_692', 4); INSERT INTO est_inclus VALUES ('attributes_448', 'MD_ScopeDescription_447', 1); INSERT INTO est_inclus VALUES ('features_449', 'MD_ScopeDescription_447', 2); INSERT INTO est_inclus VALUES ('featureInstances_450', 'MD_ScopeDescription_447', 3); INSERT INTO est_inclus VALUES ('attributeInstances_541', 'MD_ScopeDescription_447', 4); INSERT INTO est_inclus VALUES ('dataset_542', 'MD_ScopeDescription_447', 5); INSERT INTO est_inclus VALUES ('other_543', 'MD_ScopeDescription_447', 6); INSERT INTO est_inclus VALUES ('attributes_235', 'MD_ScopeDescription_234', 1); INSERT INTO est_inclus VALUES ('features_236', 'MD_ScopeDescription_234', 2); INSERT INTO est_inclus VALUES ('featureInstances_237', 'MD_ScopeDescription_234', 3); INSERT INTO est_inclus VALUES ('attributeInstances_238', 'MD_ScopeDescription_234', 4); INSERT INTO est_inclus VALUES ('dataset_239', 'MD_ScopeDescription_234', 5); INSERT INTO est_inclus VALUES ('other_240', 'MD_ScopeDescription_234', 6); INSERT INTO est_inclus VALUES ('DQ_CompletenessCommission_697', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 713', 'DQ_CompletenessCommission_697', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 714', 'DQ_CompletenessCommission_697', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_715', 'measureIdentification_ 714', 0); INSERT INTO est_inclus VALUES ('authority_1396', 'MD_Identifier_715', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1397', 'authority_1396', 0); INSERT INTO est_inclus VALUES ('code_1398', 'MD_Identifier_715', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 716', 'DQ_CompletenessCommission_697', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 717', 'DQ_CompletenessCommission_697', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 718', 'DQ_CompletenessCommission_697', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 719', 'DQ_CompletenessCommission_697', 6); INSERT INTO est_inclus VALUES ('CI_Citation_720', 'evaluationProcedure_ 719', 0); INSERT INTO est_inclus VALUES ('title_1399', 'CI_Citation_720', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1400', 'CI_Citation_720', 2); INSERT INTO est_inclus VALUES ('datec_1401', 'CI_Citation_720', 3); INSERT INTO est_inclus VALUES ('CI_Date_1402', 'datec_1401', 0); INSERT INTO est_inclus VALUES ('date_1403', 'CI_Date_1402', 1); INSERT INTO est_inclus VALUES ('dateType_1404', 'CI_Date_1402', 2); INSERT INTO est_inclus VALUES ('edition_1405', 'CI_Citation_720', 4); INSERT INTO est_inclus VALUES ('editionDate_1406', 'CI_Citation_720', 5); INSERT INTO est_inclus VALUES ('identifier_1407', 'CI_Citation_720', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1408', 'identifier_1407', 0); INSERT INTO est_inclus VALUES ('authority_1409', 'MD_Identifier_1408', 1); INSERT INTO est_inclus VALUES ('code_1410', 'MD_Identifier_1408', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1411', 'CI_Citation_720', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1412', 'citedResponsibleParty_1411', 0); INSERT INTO est_inclus VALUES ('presentationForm_1413', 'CI_Citation_720', 8); INSERT INTO est_inclus VALUES ('series_1414', 'CI_Citation_720', 9); INSERT INTO est_inclus VALUES ('CI_Series_1415', 'series_1414', 0); INSERT INTO est_inclus VALUES ('name_1416', 'CI_Series_1415', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1417', 'CI_Series_1415', 2); INSERT INTO est_inclus VALUES ('page_1418', 'CI_Series_1415', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1419', 'CI_Citation_720', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1420', 'CI_Citation_720', 11); INSERT INTO est_inclus VALUES ('ISBN_1421', 'CI_Citation_720', 12); INSERT INTO est_inclus VALUES ('ISSN_1422', 'CI_Citation_720', 13); INSERT INTO est_inclus VALUES ('dateTime_ 721', 'DQ_CompletenessCommission_697', 7); INSERT INTO est_inclus VALUES ('result_ 722', 'DQ_CompletenessCommission_697', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1423', 'result_ 722', 0); INSERT INTO est_inclus VALUES ('specification_1424', 'DQ_ConformanceResult_1423', 1); INSERT INTO est_inclus VALUES ('explanation_1425', 'DQ_ConformanceResult_1423', 2); INSERT INTO est_inclus VALUES ('pass_1426', 'DQ_ConformanceResult_1423', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1427', 'specification_1424', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1428', 'result_ 722', 0); INSERT INTO est_inclus VALUES ('valueType_1429', 'DQ_QuantitativeResult_1428', 1); INSERT INTO est_inclus VALUES ('valueUnit_1430', 'DQ_QuantitativeResult_1428', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1431', 'DQ_QuantitativeResult_1428', 3); INSERT INTO est_inclus VALUES ('value_1432', 'DQ_QuantitativeResult_1428', 4); INSERT INTO est_inclus VALUES ('DQ_CompletenessOmission_698', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 724', 'DQ_CompletenessOmission_698', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 725', 'DQ_CompletenessOmission_698', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_726', 'measureIdentification_ 725', 0); INSERT INTO est_inclus VALUES ('authority_1433', 'MD_Identifier_726', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1434', 'authority_1433', 0); INSERT INTO est_inclus VALUES ('code_1435', 'MD_Identifier_726', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 727', 'DQ_CompletenessOmission_698', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 728', 'DQ_CompletenessOmission_698', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 729', 'DQ_CompletenessOmission_698', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 730', 'DQ_CompletenessOmission_698', 6); INSERT INTO est_inclus VALUES ('CI_Citation_731', 'evaluationProcedure_ 730', 0); INSERT INTO est_inclus VALUES ('title_1436', 'CI_Citation_731', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1437', 'CI_Citation_731', 2); INSERT INTO est_inclus VALUES ('datec_1438', 'CI_Citation_731', 3); INSERT INTO est_inclus VALUES ('CI_Date_1439', 'datec_1438', 0); INSERT INTO est_inclus VALUES ('date_1440', 'CI_Date_1439', 1); INSERT INTO est_inclus VALUES ('dateType_1441', 'CI_Date_1439', 2); INSERT INTO est_inclus VALUES ('edition_1442', 'CI_Citation_731', 4); INSERT INTO est_inclus VALUES ('editionDate_1443', 'CI_Citation_731', 5); INSERT INTO est_inclus VALUES ('identifier_1444', 'CI_Citation_731', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1445', 'identifier_1444', 0); INSERT INTO est_inclus VALUES ('authority_1446', 'MD_Identifier_1445', 1); INSERT INTO est_inclus VALUES ('code_1447', 'MD_Identifier_1445', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1448', 'CI_Citation_731', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1449', 'citedResponsibleParty_1448', 0); INSERT INTO est_inclus VALUES ('presentationForm_1450', 'CI_Citation_731', 8); INSERT INTO est_inclus VALUES ('series_1451', 'CI_Citation_731', 9); INSERT INTO est_inclus VALUES ('CI_Series_1452', 'series_1451', 0); INSERT INTO est_inclus VALUES ('name_1453', 'CI_Series_1452', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1454', 'CI_Series_1452', 2); INSERT INTO est_inclus VALUES ('page_1455', 'CI_Series_1452', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1456', 'CI_Citation_731', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1457', 'CI_Citation_731', 11); INSERT INTO est_inclus VALUES ('ISBN_1458', 'CI_Citation_731', 12); INSERT INTO est_inclus VALUES ('ISSN_1459', 'CI_Citation_731', 13); INSERT INTO est_inclus VALUES ('dateTime_ 732', 'DQ_CompletenessOmission_698', 7); INSERT INTO est_inclus VALUES ('result_ 733', 'DQ_CompletenessOmission_698', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1460', 'result_ 733', 0); INSERT INTO est_inclus VALUES ('specification_1461', 'DQ_ConformanceResult_1460', 1); INSERT INTO est_inclus VALUES ('explanation_1462', 'DQ_ConformanceResult_1460', 2); INSERT INTO est_inclus VALUES ('pass_1463', 'DQ_ConformanceResult_1460', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1464', 'specification_1461', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1465', 'result_ 733', 0); INSERT INTO est_inclus VALUES ('valueType_1466', 'DQ_QuantitativeResult_1465', 1); INSERT INTO est_inclus VALUES ('valueUnit_1467', 'DQ_QuantitativeResult_1465', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1468', 'DQ_QuantitativeResult_1465', 3); INSERT INTO est_inclus VALUES ('value_1469', 'DQ_QuantitativeResult_1465', 4); INSERT INTO est_inclus VALUES ('DQ_ConceptualConsistency_699', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 735', 'DQ_ConceptualConsistency_699', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 736', 'DQ_ConceptualConsistency_699', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_737', 'measureIdentification_ 736', 0); INSERT INTO est_inclus VALUES ('authority_1470', 'MD_Identifier_737', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1471', 'authority_1470', 0); INSERT INTO est_inclus VALUES ('code_1472', 'MD_Identifier_737', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 738', 'DQ_ConceptualConsistency_699', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 739', 'DQ_ConceptualConsistency_699', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 740', 'DQ_ConceptualConsistency_699', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 741', 'DQ_ConceptualConsistency_699', 6); INSERT INTO est_inclus VALUES ('CI_Citation_742', 'evaluationProcedure_ 741', 0); INSERT INTO est_inclus VALUES ('title_1473', 'CI_Citation_742', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1474', 'CI_Citation_742', 2); INSERT INTO est_inclus VALUES ('datec_1475', 'CI_Citation_742', 3); INSERT INTO est_inclus VALUES ('CI_Date_1476', 'datec_1475', 0); INSERT INTO est_inclus VALUES ('date_1477', 'CI_Date_1476', 1); INSERT INTO est_inclus VALUES ('dateType_1478', 'CI_Date_1476', 2); INSERT INTO est_inclus VALUES ('edition_1479', 'CI_Citation_742', 4); INSERT INTO est_inclus VALUES ('editionDate_1480', 'CI_Citation_742', 5); INSERT INTO est_inclus VALUES ('identifier_1481', 'CI_Citation_742', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1482', 'identifier_1481', 0); INSERT INTO est_inclus VALUES ('authority_1483', 'MD_Identifier_1482', 1); INSERT INTO est_inclus VALUES ('code_1484', 'MD_Identifier_1482', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1485', 'CI_Citation_742', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1486', 'citedResponsibleParty_1485', 0); INSERT INTO est_inclus VALUES ('presentationForm_1487', 'CI_Citation_742', 8); INSERT INTO est_inclus VALUES ('series_1488', 'CI_Citation_742', 9); INSERT INTO est_inclus VALUES ('CI_Series_1489', 'series_1488', 0); INSERT INTO est_inclus VALUES ('name_1490', 'CI_Series_1489', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1491', 'CI_Series_1489', 2); INSERT INTO est_inclus VALUES ('page_1492', 'CI_Series_1489', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1493', 'CI_Citation_742', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1494', 'CI_Citation_742', 11); INSERT INTO est_inclus VALUES ('ISBN_1495', 'CI_Citation_742', 12); INSERT INTO est_inclus VALUES ('ISSN_1496', 'CI_Citation_742', 13); INSERT INTO est_inclus VALUES ('dateTime_ 743', 'DQ_ConceptualConsistency_699', 7); INSERT INTO est_inclus VALUES ('result_ 744', 'DQ_ConceptualConsistency_699', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1497', 'result_ 744', 0); INSERT INTO est_inclus VALUES ('specification_1498', 'DQ_ConformanceResult_1497', 1); INSERT INTO est_inclus VALUES ('explanation_1499', 'DQ_ConformanceResult_1497', 2); INSERT INTO est_inclus VALUES ('pass_1500', 'DQ_ConformanceResult_1497', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1501', 'specification_1498', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1502', 'result_ 744', 0); INSERT INTO est_inclus VALUES ('valueType_1503', 'DQ_QuantitativeResult_1502', 1); INSERT INTO est_inclus VALUES ('valueUnit_1504', 'DQ_QuantitativeResult_1502', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1505', 'DQ_QuantitativeResult_1502', 3); INSERT INTO est_inclus VALUES ('value_1506', 'DQ_QuantitativeResult_1502', 4); INSERT INTO est_inclus VALUES ('DQ_DomainConsistency_700', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 746', 'DQ_DomainConsistency_700', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 747', 'DQ_DomainConsistency_700', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_748', 'measureIdentification_ 747', 0); INSERT INTO est_inclus VALUES ('authority_1507', 'MD_Identifier_748', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1508', 'authority_1507', 0); INSERT INTO est_inclus VALUES ('code_1509', 'MD_Identifier_748', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 749', 'DQ_DomainConsistency_700', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 750', 'DQ_DomainConsistency_700', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 751', 'DQ_DomainConsistency_700', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 752', 'DQ_DomainConsistency_700', 6); INSERT INTO est_inclus VALUES ('CI_Citation_753', 'evaluationProcedure_ 752', 0); INSERT INTO est_inclus VALUES ('title_1510', 'CI_Citation_753', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1511', 'CI_Citation_753', 2); INSERT INTO est_inclus VALUES ('datec_1512', 'CI_Citation_753', 3); INSERT INTO est_inclus VALUES ('CI_Date_1513', 'datec_1512', 0); INSERT INTO est_inclus VALUES ('date_1514', 'CI_Date_1513', 1); INSERT INTO est_inclus VALUES ('dateType_1515', 'CI_Date_1513', 2); INSERT INTO est_inclus VALUES ('edition_1516', 'CI_Citation_753', 4); INSERT INTO est_inclus VALUES ('editionDate_1517', 'CI_Citation_753', 5); INSERT INTO est_inclus VALUES ('identifier_1518', 'CI_Citation_753', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1519', 'identifier_1518', 0); INSERT INTO est_inclus VALUES ('authority_1520', 'MD_Identifier_1519', 1); INSERT INTO est_inclus VALUES ('code_1521', 'MD_Identifier_1519', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1522', 'CI_Citation_753', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1523', 'citedResponsibleParty_1522', 0); INSERT INTO est_inclus VALUES ('presentationForm_1524', 'CI_Citation_753', 8); INSERT INTO est_inclus VALUES ('series_1525', 'CI_Citation_753', 9); INSERT INTO est_inclus VALUES ('CI_Series_1526', 'series_1525', 0); INSERT INTO est_inclus VALUES ('name_1527', 'CI_Series_1526', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1528', 'CI_Series_1526', 2); INSERT INTO est_inclus VALUES ('page_1529', 'CI_Series_1526', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1530', 'CI_Citation_753', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1531', 'CI_Citation_753', 11); INSERT INTO est_inclus VALUES ('ISBN_1532', 'CI_Citation_753', 12); INSERT INTO est_inclus VALUES ('ISSN_1533', 'CI_Citation_753', 13); INSERT INTO est_inclus VALUES ('dateTime_ 754', 'DQ_DomainConsistency_700', 7); INSERT INTO est_inclus VALUES ('result_ 755', 'DQ_DomainConsistency_700', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1534', 'result_ 755', 0); INSERT INTO est_inclus VALUES ('specification_1535', 'DQ_ConformanceResult_1534', 1); INSERT INTO est_inclus VALUES ('explanation_1536', 'DQ_ConformanceResult_1534', 2); INSERT INTO est_inclus VALUES ('pass_1537', 'DQ_ConformanceResult_1534', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1538', 'specification_1535', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1539', 'result_ 755', 0); INSERT INTO est_inclus VALUES ('valueType_1540', 'DQ_QuantitativeResult_1539', 1); INSERT INTO est_inclus VALUES ('valueUnit_1541', 'DQ_QuantitativeResult_1539', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1542', 'DQ_QuantitativeResult_1539', 3); INSERT INTO est_inclus VALUES ('value_1543', 'DQ_QuantitativeResult_1539', 4); INSERT INTO est_inclus VALUES ('DQ_FormatConsistency_701', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 757', 'DQ_FormatConsistency_701', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 758', 'DQ_FormatConsistency_701', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_759', 'measureIdentification_ 758', 0); INSERT INTO est_inclus VALUES ('authority_1544', 'MD_Identifier_759', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1545', 'authority_1544', 0); INSERT INTO est_inclus VALUES ('code_1546', 'MD_Identifier_759', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 760', 'DQ_FormatConsistency_701', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 761', 'DQ_FormatConsistency_701', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 762', 'DQ_FormatConsistency_701', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 763', 'DQ_FormatConsistency_701', 6); INSERT INTO est_inclus VALUES ('CI_Citation_764', 'evaluationProcedure_ 763', 0); INSERT INTO est_inclus VALUES ('title_1547', 'CI_Citation_764', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1548', 'CI_Citation_764', 2); INSERT INTO est_inclus VALUES ('datec_1549', 'CI_Citation_764', 3); INSERT INTO est_inclus VALUES ('CI_Date_1550', 'datec_1549', 0); INSERT INTO est_inclus VALUES ('date_1551', 'CI_Date_1550', 1); INSERT INTO est_inclus VALUES ('dateType_1552', 'CI_Date_1550', 2); INSERT INTO est_inclus VALUES ('edition_1553', 'CI_Citation_764', 4); INSERT INTO est_inclus VALUES ('editionDate_1554', 'CI_Citation_764', 5); INSERT INTO est_inclus VALUES ('identifier_1555', 'CI_Citation_764', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1556', 'identifier_1555', 0); INSERT INTO est_inclus VALUES ('authority_1557', 'MD_Identifier_1556', 1); INSERT INTO est_inclus VALUES ('code_1558', 'MD_Identifier_1556', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1559', 'CI_Citation_764', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1560', 'citedResponsibleParty_1559', 0); INSERT INTO est_inclus VALUES ('presentationForm_1561', 'CI_Citation_764', 8); INSERT INTO est_inclus VALUES ('series_1562', 'CI_Citation_764', 9); INSERT INTO est_inclus VALUES ('CI_Series_1563', 'series_1562', 0); INSERT INTO est_inclus VALUES ('name_1564', 'CI_Series_1563', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1565', 'CI_Series_1563', 2); INSERT INTO est_inclus VALUES ('page_1566', 'CI_Series_1563', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1567', 'CI_Citation_764', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1568', 'CI_Citation_764', 11); INSERT INTO est_inclus VALUES ('ISBN_1569', 'CI_Citation_764', 12); INSERT INTO est_inclus VALUES ('ISSN_1570', 'CI_Citation_764', 13); INSERT INTO est_inclus VALUES ('dateTime_ 765', 'DQ_FormatConsistency_701', 7); INSERT INTO est_inclus VALUES ('result_ 766', 'DQ_FormatConsistency_701', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1571', 'result_ 766', 0); INSERT INTO est_inclus VALUES ('specification_1572', 'DQ_ConformanceResult_1571', 1); INSERT INTO est_inclus VALUES ('explanation_1573', 'DQ_ConformanceResult_1571', 2); INSERT INTO est_inclus VALUES ('pass_1574', 'DQ_ConformanceResult_1571', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1575', 'specification_1572', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1576', 'result_ 766', 0); INSERT INTO est_inclus VALUES ('valueType_1577', 'DQ_QuantitativeResult_1576', 1); INSERT INTO est_inclus VALUES ('valueUnit_1578', 'DQ_QuantitativeResult_1576', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1579', 'DQ_QuantitativeResult_1576', 3); INSERT INTO est_inclus VALUES ('value_1580', 'DQ_QuantitativeResult_1576', 4); INSERT INTO est_inclus VALUES ('DQ_TopologicalConsistency_702', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 768', 'DQ_TopologicalConsistency_702', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 769', 'DQ_TopologicalConsistency_702', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_770', 'measureIdentification_ 769', 0); INSERT INTO est_inclus VALUES ('authority_1581', 'MD_Identifier_770', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1582', 'authority_1581', 0); INSERT INTO est_inclus VALUES ('code_1583', 'MD_Identifier_770', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 771', 'DQ_TopologicalConsistency_702', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 772', 'DQ_TopologicalConsistency_702', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 773', 'DQ_TopologicalConsistency_702', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 774', 'DQ_TopologicalConsistency_702', 6); INSERT INTO est_inclus VALUES ('CI_Citation_775', 'evaluationProcedure_ 774', 0); INSERT INTO est_inclus VALUES ('title_1584', 'CI_Citation_775', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1585', 'CI_Citation_775', 2); INSERT INTO est_inclus VALUES ('datec_1586', 'CI_Citation_775', 3); INSERT INTO est_inclus VALUES ('CI_Date_1587', 'datec_1586', 0); INSERT INTO est_inclus VALUES ('date_1588', 'CI_Date_1587', 1); INSERT INTO est_inclus VALUES ('dateType_1589', 'CI_Date_1587', 2); INSERT INTO est_inclus VALUES ('edition_1590', 'CI_Citation_775', 4); INSERT INTO est_inclus VALUES ('editionDate_1591', 'CI_Citation_775', 5); INSERT INTO est_inclus VALUES ('identifier_1592', 'CI_Citation_775', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1593', 'identifier_1592', 0); INSERT INTO est_inclus VALUES ('authority_1594', 'MD_Identifier_1593', 1); INSERT INTO est_inclus VALUES ('code_1595', 'MD_Identifier_1593', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1596', 'CI_Citation_775', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1597', 'citedResponsibleParty_1596', 0); INSERT INTO est_inclus VALUES ('presentationForm_1598', 'CI_Citation_775', 8); INSERT INTO est_inclus VALUES ('series_1599', 'CI_Citation_775', 9); INSERT INTO est_inclus VALUES ('CI_Series_1600', 'series_1599', 0); INSERT INTO est_inclus VALUES ('name_1601', 'CI_Series_1600', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1602', 'CI_Series_1600', 2); INSERT INTO est_inclus VALUES ('page_1603', 'CI_Series_1600', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1604', 'CI_Citation_775', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1605', 'CI_Citation_775', 11); INSERT INTO est_inclus VALUES ('ISBN_1606', 'CI_Citation_775', 12); INSERT INTO est_inclus VALUES ('ISSN_1607', 'CI_Citation_775', 13); INSERT INTO est_inclus VALUES ('dateTime_ 776', 'DQ_TopologicalConsistency_702', 7); INSERT INTO est_inclus VALUES ('result_ 777', 'DQ_TopologicalConsistency_702', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1608', 'result_ 777', 0); INSERT INTO est_inclus VALUES ('specification_1609', 'DQ_ConformanceResult_1608', 1); INSERT INTO est_inclus VALUES ('explanation_1610', 'DQ_ConformanceResult_1608', 2); INSERT INTO est_inclus VALUES ('pass_1611', 'DQ_ConformanceResult_1608', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1612', 'specification_1609', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1613', 'result_ 777', 0); INSERT INTO est_inclus VALUES ('valueType_1614', 'DQ_QuantitativeResult_1613', 1); INSERT INTO est_inclus VALUES ('valueUnit_1615', 'DQ_QuantitativeResult_1613', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1616', 'DQ_QuantitativeResult_1613', 3); INSERT INTO est_inclus VALUES ('value_1617', 'DQ_QuantitativeResult_1613', 4); INSERT INTO est_inclus VALUES ('DQ_AbsoluteExternalPositionalAccuracy_703', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 779', 'DQ_AbsoluteExternalPositionalAccuracy_703', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 780', 'DQ_AbsoluteExternalPositionalAccuracy_703', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_781', 'measureIdentification_ 780', 0); INSERT INTO est_inclus VALUES ('authority_1618', 'MD_Identifier_781', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1619', 'authority_1618', 0); INSERT INTO est_inclus VALUES ('code_1620', 'MD_Identifier_781', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 782', 'DQ_AbsoluteExternalPositionalAccuracy_703', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 783', 'DQ_AbsoluteExternalPositionalAccuracy_703', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 784', 'DQ_AbsoluteExternalPositionalAccuracy_703', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 785', 'DQ_AbsoluteExternalPositionalAccuracy_703', 6); INSERT INTO est_inclus VALUES ('CI_Citation_786', 'evaluationProcedure_ 785', 0); INSERT INTO est_inclus VALUES ('title_1621', 'CI_Citation_786', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1622', 'CI_Citation_786', 2); INSERT INTO est_inclus VALUES ('datec_1623', 'CI_Citation_786', 3); INSERT INTO est_inclus VALUES ('CI_Date_1624', 'datec_1623', 0); INSERT INTO est_inclus VALUES ('date_1625', 'CI_Date_1624', 1); INSERT INTO est_inclus VALUES ('dateType_1626', 'CI_Date_1624', 2); INSERT INTO est_inclus VALUES ('edition_1627', 'CI_Citation_786', 4); INSERT INTO est_inclus VALUES ('editionDate_1628', 'CI_Citation_786', 5); INSERT INTO est_inclus VALUES ('identifier_1629', 'CI_Citation_786', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1630', 'identifier_1629', 0); INSERT INTO est_inclus VALUES ('authority_1631', 'MD_Identifier_1630', 1); INSERT INTO est_inclus VALUES ('code_1632', 'MD_Identifier_1630', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1633', 'CI_Citation_786', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1634', 'citedResponsibleParty_1633', 0); INSERT INTO est_inclus VALUES ('presentationForm_1635', 'CI_Citation_786', 8); INSERT INTO est_inclus VALUES ('series_1636', 'CI_Citation_786', 9); INSERT INTO est_inclus VALUES ('CI_Series_1637', 'series_1636', 0); INSERT INTO est_inclus VALUES ('name_1638', 'CI_Series_1637', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1639', 'CI_Series_1637', 2); INSERT INTO est_inclus VALUES ('page_1640', 'CI_Series_1637', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1641', 'CI_Citation_786', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1642', 'CI_Citation_786', 11); INSERT INTO est_inclus VALUES ('ISBN_1643', 'CI_Citation_786', 12); INSERT INTO est_inclus VALUES ('ISSN_1644', 'CI_Citation_786', 13); INSERT INTO est_inclus VALUES ('dateTime_ 787', 'DQ_AbsoluteExternalPositionalAccuracy_703', 7); INSERT INTO est_inclus VALUES ('result_ 788', 'DQ_AbsoluteExternalPositionalAccuracy_703', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1645', 'result_ 788', 0); INSERT INTO est_inclus VALUES ('specification_1646', 'DQ_ConformanceResult_1645', 1); INSERT INTO est_inclus VALUES ('explanation_1647', 'DQ_ConformanceResult_1645', 2); INSERT INTO est_inclus VALUES ('pass_1648', 'DQ_ConformanceResult_1645', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1649', 'specification_1646', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1650', 'result_ 788', 0); INSERT INTO est_inclus VALUES ('valueType_1651', 'DQ_QuantitativeResult_1650', 1); INSERT INTO est_inclus VALUES ('valueUnit_1652', 'DQ_QuantitativeResult_1650', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1653', 'DQ_QuantitativeResult_1650', 3); INSERT INTO est_inclus VALUES ('value_1654', 'DQ_QuantitativeResult_1650', 4); INSERT INTO est_inclus VALUES ('DQ_GriddedDataPositionalAccuracy_704', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 790', 'DQ_GriddedDataPositionalAccuracy_704', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 791', 'DQ_GriddedDataPositionalAccuracy_704', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_792', 'measureIdentification_ 791', 0); INSERT INTO est_inclus VALUES ('authority_1655', 'MD_Identifier_792', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1656', 'authority_1655', 0); INSERT INTO est_inclus VALUES ('code_1657', 'MD_Identifier_792', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 793', 'DQ_GriddedDataPositionalAccuracy_704', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 794', 'DQ_GriddedDataPositionalAccuracy_704', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 795', 'DQ_GriddedDataPositionalAccuracy_704', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 796', 'DQ_GriddedDataPositionalAccuracy_704', 6); INSERT INTO est_inclus VALUES ('CI_Citation_797', 'evaluationProcedure_ 796', 0); INSERT INTO est_inclus VALUES ('title_1658', 'CI_Citation_797', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1659', 'CI_Citation_797', 2); INSERT INTO est_inclus VALUES ('datec_1660', 'CI_Citation_797', 3); INSERT INTO est_inclus VALUES ('CI_Date_1661', 'datec_1660', 0); INSERT INTO est_inclus VALUES ('date_1662', 'CI_Date_1661', 1); INSERT INTO est_inclus VALUES ('dateType_1663', 'CI_Date_1661', 2); INSERT INTO est_inclus VALUES ('edition_1664', 'CI_Citation_797', 4); INSERT INTO est_inclus VALUES ('editionDate_1665', 'CI_Citation_797', 5); INSERT INTO est_inclus VALUES ('identifier_1666', 'CI_Citation_797', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1667', 'identifier_1666', 0); INSERT INTO est_inclus VALUES ('authority_1668', 'MD_Identifier_1667', 1); INSERT INTO est_inclus VALUES ('code_1669', 'MD_Identifier_1667', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1670', 'CI_Citation_797', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1671', 'citedResponsibleParty_1670', 0); INSERT INTO est_inclus VALUES ('presentationForm_1672', 'CI_Citation_797', 8); INSERT INTO est_inclus VALUES ('series_1673', 'CI_Citation_797', 9); INSERT INTO est_inclus VALUES ('CI_Series_1674', 'series_1673', 0); INSERT INTO est_inclus VALUES ('name_1675', 'CI_Series_1674', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1676', 'CI_Series_1674', 2); INSERT INTO est_inclus VALUES ('page_1677', 'CI_Series_1674', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1678', 'CI_Citation_797', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1679', 'CI_Citation_797', 11); INSERT INTO est_inclus VALUES ('ISBN_1680', 'CI_Citation_797', 12); INSERT INTO est_inclus VALUES ('ISSN_1681', 'CI_Citation_797', 13); INSERT INTO est_inclus VALUES ('dateTime_ 798', 'DQ_GriddedDataPositionalAccuracy_704', 7); INSERT INTO est_inclus VALUES ('result_ 799', 'DQ_GriddedDataPositionalAccuracy_704', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1682', 'result_ 799', 0); INSERT INTO est_inclus VALUES ('specification_1683', 'DQ_ConformanceResult_1682', 1); INSERT INTO est_inclus VALUES ('explanation_1684', 'DQ_ConformanceResult_1682', 2); INSERT INTO est_inclus VALUES ('pass_1685', 'DQ_ConformanceResult_1682', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1686', 'specification_1683', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1687', 'result_ 799', 0); INSERT INTO est_inclus VALUES ('valueType_1688', 'DQ_QuantitativeResult_1687', 1); INSERT INTO est_inclus VALUES ('valueUnit_1689', 'DQ_QuantitativeResult_1687', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1690', 'DQ_QuantitativeResult_1687', 3); INSERT INTO est_inclus VALUES ('value_1691', 'DQ_QuantitativeResult_1687', 4); INSERT INTO est_inclus VALUES ('DQ_RelativeInternalPositionalAccuracy_705', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 801', 'DQ_RelativeInternalPositionalAccuracy_705', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 802', 'DQ_RelativeInternalPositionalAccuracy_705', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_803', 'measureIdentification_ 802', 0); INSERT INTO est_inclus VALUES ('authority_1692', 'MD_Identifier_803', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1693', 'authority_1692', 0); INSERT INTO est_inclus VALUES ('code_1694', 'MD_Identifier_803', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 804', 'DQ_RelativeInternalPositionalAccuracy_705', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 805', 'DQ_RelativeInternalPositionalAccuracy_705', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 806', 'DQ_RelativeInternalPositionalAccuracy_705', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 807', 'DQ_RelativeInternalPositionalAccuracy_705', 6); INSERT INTO est_inclus VALUES ('CI_Citation_808', 'evaluationProcedure_ 807', 0); INSERT INTO est_inclus VALUES ('title_1695', 'CI_Citation_808', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1696', 'CI_Citation_808', 2); INSERT INTO est_inclus VALUES ('datec_1697', 'CI_Citation_808', 3); INSERT INTO est_inclus VALUES ('CI_Date_1698', 'datec_1697', 0); INSERT INTO est_inclus VALUES ('date_1699', 'CI_Date_1698', 1); INSERT INTO est_inclus VALUES ('dateType_1700', 'CI_Date_1698', 2); INSERT INTO est_inclus VALUES ('edition_1701', 'CI_Citation_808', 4); INSERT INTO est_inclus VALUES ('editionDate_1702', 'CI_Citation_808', 5); INSERT INTO est_inclus VALUES ('identifier_1703', 'CI_Citation_808', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1704', 'identifier_1703', 0); INSERT INTO est_inclus VALUES ('authority_1705', 'MD_Identifier_1704', 1); INSERT INTO est_inclus VALUES ('code_1706', 'MD_Identifier_1704', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1707', 'CI_Citation_808', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1708', 'citedResponsibleParty_1707', 0); INSERT INTO est_inclus VALUES ('presentationForm_1709', 'CI_Citation_808', 8); INSERT INTO est_inclus VALUES ('series_1710', 'CI_Citation_808', 9); INSERT INTO est_inclus VALUES ('CI_Series_1711', 'series_1710', 0); INSERT INTO est_inclus VALUES ('name_1712', 'CI_Series_1711', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1713', 'CI_Series_1711', 2); INSERT INTO est_inclus VALUES ('page_1714', 'CI_Series_1711', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1715', 'CI_Citation_808', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1716', 'CI_Citation_808', 11); INSERT INTO est_inclus VALUES ('ISBN_1717', 'CI_Citation_808', 12); INSERT INTO est_inclus VALUES ('ISSN_1718', 'CI_Citation_808', 13); INSERT INTO est_inclus VALUES ('dateTime_ 809', 'DQ_RelativeInternalPositionalAccuracy_705', 7); INSERT INTO est_inclus VALUES ('result_ 810', 'DQ_RelativeInternalPositionalAccuracy_705', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1719', 'result_ 810', 0); INSERT INTO est_inclus VALUES ('specification_1720', 'DQ_ConformanceResult_1719', 1); INSERT INTO est_inclus VALUES ('explanation_1721', 'DQ_ConformanceResult_1719', 2); INSERT INTO est_inclus VALUES ('pass_1722', 'DQ_ConformanceResult_1719', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1723', 'specification_1720', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1724', 'result_ 810', 0); INSERT INTO est_inclus VALUES ('valueType_1725', 'DQ_QuantitativeResult_1724', 1); INSERT INTO est_inclus VALUES ('valueUnit_1726', 'DQ_QuantitativeResult_1724', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1727', 'DQ_QuantitativeResult_1724', 3); INSERT INTO est_inclus VALUES ('value_1728', 'DQ_QuantitativeResult_1724', 4); INSERT INTO est_inclus VALUES ('DQ_AccuracyOfATimeMeasurement_706', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 812', 'DQ_AccuracyOfATimeMeasurement_706', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 813', 'DQ_AccuracyOfATimeMeasurement_706', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_814', 'measureIdentification_ 813', 0); INSERT INTO est_inclus VALUES ('authority_1729', 'MD_Identifier_814', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1730', 'authority_1729', 0); INSERT INTO est_inclus VALUES ('code_1731', 'MD_Identifier_814', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 815', 'DQ_AccuracyOfATimeMeasurement_706', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 816', 'DQ_AccuracyOfATimeMeasurement_706', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 817', 'DQ_AccuracyOfATimeMeasurement_706', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 818', 'DQ_AccuracyOfATimeMeasurement_706', 6); INSERT INTO est_inclus VALUES ('CI_Citation_819', 'evaluationProcedure_ 818', 0); INSERT INTO est_inclus VALUES ('title_1732', 'CI_Citation_819', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1733', 'CI_Citation_819', 2); INSERT INTO est_inclus VALUES ('datec_1734', 'CI_Citation_819', 3); INSERT INTO est_inclus VALUES ('CI_Date_1735', 'datec_1734', 0); INSERT INTO est_inclus VALUES ('date_1736', 'CI_Date_1735', 1); INSERT INTO est_inclus VALUES ('dateType_1737', 'CI_Date_1735', 2); INSERT INTO est_inclus VALUES ('edition_1738', 'CI_Citation_819', 4); INSERT INTO est_inclus VALUES ('editionDate_1739', 'CI_Citation_819', 5); INSERT INTO est_inclus VALUES ('identifier_1740', 'CI_Citation_819', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1741', 'identifier_1740', 0); INSERT INTO est_inclus VALUES ('authority_1742', 'MD_Identifier_1741', 1); INSERT INTO est_inclus VALUES ('code_1743', 'MD_Identifier_1741', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1744', 'CI_Citation_819', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1745', 'citedResponsibleParty_1744', 0); INSERT INTO est_inclus VALUES ('presentationForm_1746', 'CI_Citation_819', 8); INSERT INTO est_inclus VALUES ('series_1747', 'CI_Citation_819', 9); INSERT INTO est_inclus VALUES ('CI_Series_1748', 'series_1747', 0); INSERT INTO est_inclus VALUES ('name_1749', 'CI_Series_1748', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1750', 'CI_Series_1748', 2); INSERT INTO est_inclus VALUES ('page_1751', 'CI_Series_1748', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1752', 'CI_Citation_819', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1753', 'CI_Citation_819', 11); INSERT INTO est_inclus VALUES ('ISBN_1754', 'CI_Citation_819', 12); INSERT INTO est_inclus VALUES ('ISSN_1755', 'CI_Citation_819', 13); INSERT INTO est_inclus VALUES ('dateTime_ 820', 'DQ_AccuracyOfATimeMeasurement_706', 7); INSERT INTO est_inclus VALUES ('result_ 821', 'DQ_AccuracyOfATimeMeasurement_706', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1756', 'result_ 821', 0); INSERT INTO est_inclus VALUES ('specification_1757', 'DQ_ConformanceResult_1756', 1); INSERT INTO est_inclus VALUES ('explanation_1758', 'DQ_ConformanceResult_1756', 2); INSERT INTO est_inclus VALUES ('pass_1759', 'DQ_ConformanceResult_1756', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1760', 'specification_1757', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1761', 'result_ 821', 0); INSERT INTO est_inclus VALUES ('valueType_1762', 'DQ_QuantitativeResult_1761', 1); INSERT INTO est_inclus VALUES ('valueUnit_1763', 'DQ_QuantitativeResult_1761', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1764', 'DQ_QuantitativeResult_1761', 3); INSERT INTO est_inclus VALUES ('value_1765', 'DQ_QuantitativeResult_1761', 4); INSERT INTO est_inclus VALUES ('DQ_TemporalConsistency_707', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 823', 'DQ_TemporalConsistency_707', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 824', 'DQ_TemporalConsistency_707', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_825', 'measureIdentification_ 824', 0); INSERT INTO est_inclus VALUES ('authority_1766', 'MD_Identifier_825', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1767', 'authority_1766', 0); INSERT INTO est_inclus VALUES ('code_1768', 'MD_Identifier_825', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 826', 'DQ_TemporalConsistency_707', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 827', 'DQ_TemporalConsistency_707', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 828', 'DQ_TemporalConsistency_707', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 829', 'DQ_TemporalConsistency_707', 6); INSERT INTO est_inclus VALUES ('CI_Citation_830', 'evaluationProcedure_ 829', 0); INSERT INTO est_inclus VALUES ('title_1769', 'CI_Citation_830', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1770', 'CI_Citation_830', 2); INSERT INTO est_inclus VALUES ('datec_1771', 'CI_Citation_830', 3); INSERT INTO est_inclus VALUES ('CI_Date_1772', 'datec_1771', 0); INSERT INTO est_inclus VALUES ('date_1773', 'CI_Date_1772', 1); INSERT INTO est_inclus VALUES ('dateType_1774', 'CI_Date_1772', 2); INSERT INTO est_inclus VALUES ('edition_1775', 'CI_Citation_830', 4); INSERT INTO est_inclus VALUES ('editionDate_1776', 'CI_Citation_830', 5); INSERT INTO est_inclus VALUES ('identifier_1777', 'CI_Citation_830', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1778', 'identifier_1777', 0); INSERT INTO est_inclus VALUES ('authority_1779', 'MD_Identifier_1778', 1); INSERT INTO est_inclus VALUES ('code_1780', 'MD_Identifier_1778', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1781', 'CI_Citation_830', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1782', 'citedResponsibleParty_1781', 0); INSERT INTO est_inclus VALUES ('presentationForm_1783', 'CI_Citation_830', 8); INSERT INTO est_inclus VALUES ('series_1784', 'CI_Citation_830', 9); INSERT INTO est_inclus VALUES ('CI_Series_1785', 'series_1784', 0); INSERT INTO est_inclus VALUES ('name_1786', 'CI_Series_1785', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1787', 'CI_Series_1785', 2); INSERT INTO est_inclus VALUES ('page_1788', 'CI_Series_1785', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1789', 'CI_Citation_830', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1790', 'CI_Citation_830', 11); INSERT INTO est_inclus VALUES ('ISBN_1791', 'CI_Citation_830', 12); INSERT INTO est_inclus VALUES ('ISSN_1792', 'CI_Citation_830', 13); INSERT INTO est_inclus VALUES ('dateTime_ 831', 'DQ_TemporalConsistency_707', 7); INSERT INTO est_inclus VALUES ('result_ 832', 'DQ_TemporalConsistency_707', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1793', 'result_ 832', 0); INSERT INTO est_inclus VALUES ('specification_1794', 'DQ_ConformanceResult_1793', 1); INSERT INTO est_inclus VALUES ('explanation_1795', 'DQ_ConformanceResult_1793', 2); INSERT INTO est_inclus VALUES ('pass_1796', 'DQ_ConformanceResult_1793', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1797', 'specification_1794', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1798', 'result_ 832', 0); INSERT INTO est_inclus VALUES ('valueType_1799', 'DQ_QuantitativeResult_1798', 1); INSERT INTO est_inclus VALUES ('valueUnit_1800', 'DQ_QuantitativeResult_1798', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1801', 'DQ_QuantitativeResult_1798', 3); INSERT INTO est_inclus VALUES ('value_1802', 'DQ_QuantitativeResult_1798', 4); INSERT INTO est_inclus VALUES ('DQ_TemporalValidity_708', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 834', 'DQ_TemporalValidity_708', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 835', 'DQ_TemporalValidity_708', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_836', 'measureIdentification_ 835', 0); INSERT INTO est_inclus VALUES ('authority_1803', 'MD_Identifier_836', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1804', 'authority_1803', 0); INSERT INTO est_inclus VALUES ('code_1805', 'MD_Identifier_836', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 837', 'DQ_TemporalValidity_708', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 838', 'DQ_TemporalValidity_708', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 839', 'DQ_TemporalValidity_708', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 840', 'DQ_TemporalValidity_708', 6); INSERT INTO est_inclus VALUES ('CI_Citation_841', 'evaluationProcedure_ 840', 0); INSERT INTO est_inclus VALUES ('title_1806', 'CI_Citation_841', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1807', 'CI_Citation_841', 2); INSERT INTO est_inclus VALUES ('datec_1808', 'CI_Citation_841', 3); INSERT INTO est_inclus VALUES ('CI_Date_1809', 'datec_1808', 0); INSERT INTO est_inclus VALUES ('date_1810', 'CI_Date_1809', 1); INSERT INTO est_inclus VALUES ('dateType_1811', 'CI_Date_1809', 2); INSERT INTO est_inclus VALUES ('edition_1812', 'CI_Citation_841', 4); INSERT INTO est_inclus VALUES ('editionDate_1813', 'CI_Citation_841', 5); INSERT INTO est_inclus VALUES ('identifier_1814', 'CI_Citation_841', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1815', 'identifier_1814', 0); INSERT INTO est_inclus VALUES ('authority_1816', 'MD_Identifier_1815', 1); INSERT INTO est_inclus VALUES ('code_1817', 'MD_Identifier_1815', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1818', 'CI_Citation_841', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1819', 'citedResponsibleParty_1818', 0); INSERT INTO est_inclus VALUES ('presentationForm_1820', 'CI_Citation_841', 8); INSERT INTO est_inclus VALUES ('series_1821', 'CI_Citation_841', 9); INSERT INTO est_inclus VALUES ('CI_Series_1822', 'series_1821', 0); INSERT INTO est_inclus VALUES ('name_1823', 'CI_Series_1822', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1824', 'CI_Series_1822', 2); INSERT INTO est_inclus VALUES ('page_1825', 'CI_Series_1822', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1826', 'CI_Citation_841', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1827', 'CI_Citation_841', 11); INSERT INTO est_inclus VALUES ('ISBN_1828', 'CI_Citation_841', 12); INSERT INTO est_inclus VALUES ('ISSN_1829', 'CI_Citation_841', 13); INSERT INTO est_inclus VALUES ('dateTime_ 842', 'DQ_TemporalValidity_708', 7); INSERT INTO est_inclus VALUES ('result_ 843', 'DQ_TemporalValidity_708', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1830', 'result_ 843', 0); INSERT INTO est_inclus VALUES ('specification_1831', 'DQ_ConformanceResult_1830', 1); INSERT INTO est_inclus VALUES ('explanation_1832', 'DQ_ConformanceResult_1830', 2); INSERT INTO est_inclus VALUES ('pass_1833', 'DQ_ConformanceResult_1830', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1834', 'specification_1831', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1835', 'result_ 843', 0); INSERT INTO est_inclus VALUES ('valueType_1836', 'DQ_QuantitativeResult_1835', 1); INSERT INTO est_inclus VALUES ('valueUnit_1837', 'DQ_QuantitativeResult_1835', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1838', 'DQ_QuantitativeResult_1835', 3); INSERT INTO est_inclus VALUES ('value_1839', 'DQ_QuantitativeResult_1835', 4); INSERT INTO est_inclus VALUES ('DQ_ThematicClassificationCorrectness_709', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 845', 'DQ_ThematicClassificationCorrectness_709', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 846', 'DQ_ThematicClassificationCorrectness_709', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_847', 'measureIdentification_ 846', 0); INSERT INTO est_inclus VALUES ('authority_1840', 'MD_Identifier_847', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1841', 'authority_1840', 0); INSERT INTO est_inclus VALUES ('code_1842', 'MD_Identifier_847', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 848', 'DQ_ThematicClassificationCorrectness_709', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 849', 'DQ_ThematicClassificationCorrectness_709', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 850', 'DQ_ThematicClassificationCorrectness_709', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 851', 'DQ_ThematicClassificationCorrectness_709', 6); INSERT INTO est_inclus VALUES ('CI_Citation_852', 'evaluationProcedure_ 851', 0); INSERT INTO est_inclus VALUES ('title_1843', 'CI_Citation_852', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1844', 'CI_Citation_852', 2); INSERT INTO est_inclus VALUES ('datec_1845', 'CI_Citation_852', 3); INSERT INTO est_inclus VALUES ('CI_Date_1846', 'datec_1845', 0); INSERT INTO est_inclus VALUES ('date_1847', 'CI_Date_1846', 1); INSERT INTO est_inclus VALUES ('dateType_1848', 'CI_Date_1846', 2); INSERT INTO est_inclus VALUES ('edition_1849', 'CI_Citation_852', 4); INSERT INTO est_inclus VALUES ('editionDate_1850', 'CI_Citation_852', 5); INSERT INTO est_inclus VALUES ('identifier_1851', 'CI_Citation_852', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1852', 'identifier_1851', 0); INSERT INTO est_inclus VALUES ('authority_1853', 'MD_Identifier_1852', 1); INSERT INTO est_inclus VALUES ('code_1854', 'MD_Identifier_1852', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1855', 'CI_Citation_852', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1856', 'citedResponsibleParty_1855', 0); INSERT INTO est_inclus VALUES ('presentationForm_1857', 'CI_Citation_852', 8); INSERT INTO est_inclus VALUES ('series_1858', 'CI_Citation_852', 9); INSERT INTO est_inclus VALUES ('CI_Series_1859', 'series_1858', 0); INSERT INTO est_inclus VALUES ('name_1860', 'CI_Series_1859', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1861', 'CI_Series_1859', 2); INSERT INTO est_inclus VALUES ('page_1862', 'CI_Series_1859', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1863', 'CI_Citation_852', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1864', 'CI_Citation_852', 11); INSERT INTO est_inclus VALUES ('ISBN_1865', 'CI_Citation_852', 12); INSERT INTO est_inclus VALUES ('ISSN_1866', 'CI_Citation_852', 13); INSERT INTO est_inclus VALUES ('dateTime_ 853', 'DQ_ThematicClassificationCorrectness_709', 7); INSERT INTO est_inclus VALUES ('result_ 854', 'DQ_ThematicClassificationCorrectness_709', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1867', 'result_ 854', 0); INSERT INTO est_inclus VALUES ('specification_1868', 'DQ_ConformanceResult_1867', 1); INSERT INTO est_inclus VALUES ('explanation_1869', 'DQ_ConformanceResult_1867', 2); INSERT INTO est_inclus VALUES ('pass_1870', 'DQ_ConformanceResult_1867', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1871', 'specification_1868', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1872', 'result_ 854', 0); INSERT INTO est_inclus VALUES ('valueType_1873', 'DQ_QuantitativeResult_1872', 1); INSERT INTO est_inclus VALUES ('valueUnit_1874', 'DQ_QuantitativeResult_1872', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1875', 'DQ_QuantitativeResult_1872', 3); INSERT INTO est_inclus VALUES ('value_1876', 'DQ_QuantitativeResult_1872', 4); INSERT INTO est_inclus VALUES ('DQ_NonQuantitativeAttributeAccuracy_710', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 856', 'DQ_NonQuantitativeAttributeAccuracy_710', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 857', 'DQ_NonQuantitativeAttributeAccuracy_710', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_858', 'measureIdentification_ 857', 0); INSERT INTO est_inclus VALUES ('authority_1877', 'MD_Identifier_858', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1878', 'authority_1877', 0); INSERT INTO est_inclus VALUES ('code_1879', 'MD_Identifier_858', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 859', 'DQ_NonQuantitativeAttributeAccuracy_710', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 860', 'DQ_NonQuantitativeAttributeAccuracy_710', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 861', 'DQ_NonQuantitativeAttributeAccuracy_710', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 862', 'DQ_NonQuantitativeAttributeAccuracy_710', 6); INSERT INTO est_inclus VALUES ('CI_Citation_863', 'evaluationProcedure_ 862', 0); INSERT INTO est_inclus VALUES ('title_1880', 'CI_Citation_863', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1881', 'CI_Citation_863', 2); INSERT INTO est_inclus VALUES ('datec_1882', 'CI_Citation_863', 3); INSERT INTO est_inclus VALUES ('CI_Date_1883', 'datec_1882', 0); INSERT INTO est_inclus VALUES ('date_1884', 'CI_Date_1883', 1); INSERT INTO est_inclus VALUES ('dateType_1885', 'CI_Date_1883', 2); INSERT INTO est_inclus VALUES ('edition_1886', 'CI_Citation_863', 4); INSERT INTO est_inclus VALUES ('editionDate_1887', 'CI_Citation_863', 5); INSERT INTO est_inclus VALUES ('identifier_1888', 'CI_Citation_863', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1889', 'identifier_1888', 0); INSERT INTO est_inclus VALUES ('authority_1890', 'MD_Identifier_1889', 1); INSERT INTO est_inclus VALUES ('code_1891', 'MD_Identifier_1889', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1892', 'CI_Citation_863', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1893', 'citedResponsibleParty_1892', 0); INSERT INTO est_inclus VALUES ('presentationForm_1894', 'CI_Citation_863', 8); INSERT INTO est_inclus VALUES ('series_1895', 'CI_Citation_863', 9); INSERT INTO est_inclus VALUES ('CI_Series_1896', 'series_1895', 0); INSERT INTO est_inclus VALUES ('name_1897', 'CI_Series_1896', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1898', 'CI_Series_1896', 2); INSERT INTO est_inclus VALUES ('page_1899', 'CI_Series_1896', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1900', 'CI_Citation_863', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1901', 'CI_Citation_863', 11); INSERT INTO est_inclus VALUES ('ISBN_1902', 'CI_Citation_863', 12); INSERT INTO est_inclus VALUES ('ISSN_1903', 'CI_Citation_863', 13); INSERT INTO est_inclus VALUES ('dateTime_ 864', 'DQ_NonQuantitativeAttributeAccuracy_710', 7); INSERT INTO est_inclus VALUES ('result_ 865', 'DQ_NonQuantitativeAttributeAccuracy_710', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1904', 'result_ 865', 0); INSERT INTO est_inclus VALUES ('specification_1905', 'DQ_ConformanceResult_1904', 1); INSERT INTO est_inclus VALUES ('explanation_1906', 'DQ_ConformanceResult_1904', 2); INSERT INTO est_inclus VALUES ('pass_1907', 'DQ_ConformanceResult_1904', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1908', 'specification_1905', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1909', 'result_ 865', 0); INSERT INTO est_inclus VALUES ('valueType_1910', 'DQ_QuantitativeResult_1909', 1); INSERT INTO est_inclus VALUES ('valueUnit_1911', 'DQ_QuantitativeResult_1909', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1912', 'DQ_QuantitativeResult_1909', 3); INSERT INTO est_inclus VALUES ('value_1913', 'DQ_QuantitativeResult_1909', 4); INSERT INTO est_inclus VALUES ('DQ_QuantitativeAttributeAccuracy_711', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 867', 'DQ_QuantitativeAttributeAccuracy_711', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 868', 'DQ_QuantitativeAttributeAccuracy_711', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_869', 'measureIdentification_ 868', 0); INSERT INTO est_inclus VALUES ('authority_1914', 'MD_Identifier_869', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1915', 'authority_1914', 0); INSERT INTO est_inclus VALUES ('code_1916', 'MD_Identifier_869', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 870', 'DQ_QuantitativeAttributeAccuracy_711', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 871', 'DQ_QuantitativeAttributeAccuracy_711', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 872', 'DQ_QuantitativeAttributeAccuracy_711', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 873', 'DQ_QuantitativeAttributeAccuracy_711', 6); INSERT INTO est_inclus VALUES ('CI_Citation_874', 'evaluationProcedure_ 873', 0); INSERT INTO est_inclus VALUES ('title_1917', 'CI_Citation_874', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1918', 'CI_Citation_874', 2); INSERT INTO est_inclus VALUES ('datec_1919', 'CI_Citation_874', 3); INSERT INTO est_inclus VALUES ('CI_Date_1920', 'datec_1919', 0); INSERT INTO est_inclus VALUES ('date_1921', 'CI_Date_1920', 1); INSERT INTO est_inclus VALUES ('dateType_1922', 'CI_Date_1920', 2); INSERT INTO est_inclus VALUES ('edition_1923', 'CI_Citation_874', 4); INSERT INTO est_inclus VALUES ('editionDate_1924', 'CI_Citation_874', 5); INSERT INTO est_inclus VALUES ('identifier_1925', 'CI_Citation_874', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1926', 'identifier_1925', 0); INSERT INTO est_inclus VALUES ('authority_1927', 'MD_Identifier_1926', 1); INSERT INTO est_inclus VALUES ('code_1928', 'MD_Identifier_1926', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1929', 'CI_Citation_874', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1930', 'citedResponsibleParty_1929', 0); INSERT INTO est_inclus VALUES ('presentationForm_1931', 'CI_Citation_874', 8); INSERT INTO est_inclus VALUES ('series_1932', 'CI_Citation_874', 9); INSERT INTO est_inclus VALUES ('CI_Series_1933', 'series_1932', 0); INSERT INTO est_inclus VALUES ('name_1934', 'CI_Series_1933', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1935', 'CI_Series_1933', 2); INSERT INTO est_inclus VALUES ('page_1936', 'CI_Series_1933', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1937', 'CI_Citation_874', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1938', 'CI_Citation_874', 11); INSERT INTO est_inclus VALUES ('ISBN_1939', 'CI_Citation_874', 12); INSERT INTO est_inclus VALUES ('ISSN_1940', 'CI_Citation_874', 13); INSERT INTO est_inclus VALUES ('dateTime_ 875', 'DQ_QuantitativeAttributeAccuracy_711', 7); INSERT INTO est_inclus VALUES ('result_ 876', 'DQ_QuantitativeAttributeAccuracy_711', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_1941', 'result_ 876', 0); INSERT INTO est_inclus VALUES ('specification_1942', 'DQ_ConformanceResult_1941', 1); INSERT INTO est_inclus VALUES ('explanation_1943', 'DQ_ConformanceResult_1941', 2); INSERT INTO est_inclus VALUES ('pass_1944', 'DQ_ConformanceResult_1941', 3); INSERT INTO est_inclus VALUES ('CI_Citation_1945', 'specification_1942', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_1946', 'result_ 876', 0); INSERT INTO est_inclus VALUES ('valueType_1947', 'DQ_QuantitativeResult_1946', 1); INSERT INTO est_inclus VALUES ('valueUnit_1948', 'DQ_QuantitativeResult_1946', 2); INSERT INTO est_inclus VALUES ('errorStatistic_1949', 'DQ_QuantitativeResult_1946', 3); INSERT INTO est_inclus VALUES ('value_1950', 'DQ_QuantitativeResult_1946', 4); INSERT INTO est_inclus VALUES ('attributes_882', 'MD_ScopeDescription_245', 1); INSERT INTO est_inclus VALUES ('features_883', 'MD_ScopeDescription_245', 2); INSERT INTO est_inclus VALUES ('featureInstances_884', 'MD_ScopeDescription_245', 3); INSERT INTO est_inclus VALUES ('attributeInstances_885', 'MD_ScopeDescription_245', 4); INSERT INTO est_inclus VALUES ('dataset_886', 'MD_ScopeDescription_245', 5); INSERT INTO est_inclus VALUES ('other_887', 'MD_ScopeDescription_245', 6); INSERT INTO est_inclus VALUES ('sourceStep_628', 'LI_Source_452', 6); INSERT INTO est_inclus VALUES ('locale_882', 'MD_Metadata_1', 12); INSERT INTO est_inclus VALUES ('PT_Locale_886', 'locale_882', 0); INSERT INTO est_inclus VALUES ('language_883', 'PT_Locale_886', 1); INSERT INTO est_inclus VALUES ('country_884', 'PT_Locale_886', 2); INSERT INTO est_inclus VALUES ('characterEncoding_885', 'PT_Locale_886', 3); INSERT INTO est_inclus VALUES ('relatedCitation_887', 'MD_DataIdentification_68', 22); INSERT INTO est_inclus VALUES ('CI_Citation_891', 'relatedCitation_887', 0); INSERT INTO est_inclus VALUES ('title_1951', 'CI_Citation_891', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1952', 'CI_Citation_891', 2); INSERT INTO est_inclus VALUES ('datec_1953', 'CI_Citation_891', 3); INSERT INTO est_inclus VALUES ('CI_Date_1954', 'datec_1953', 0); INSERT INTO est_inclus VALUES ('date_1955', 'CI_Date_1954', 1); INSERT INTO est_inclus VALUES ('dateType_1956', 'CI_Date_1954', 2); INSERT INTO est_inclus VALUES ('edition_1957', 'CI_Citation_891', 4); INSERT INTO est_inclus VALUES ('editionDate_1958', 'CI_Citation_891', 5); INSERT INTO est_inclus VALUES ('identifier_1959', 'CI_Citation_891', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1960', 'identifier_1959', 0); INSERT INTO est_inclus VALUES ('authority_1961', 'MD_Identifier_1960', 1); INSERT INTO est_inclus VALUES ('code_1962', 'MD_Identifier_1960', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1963', 'CI_Citation_891', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1964', 'citedResponsibleParty_1963', 0); INSERT INTO est_inclus VALUES ('presentationForm_1965', 'CI_Citation_891', 8); INSERT INTO est_inclus VALUES ('series_1966', 'CI_Citation_891', 9); INSERT INTO est_inclus VALUES ('CI_Series_1967', 'series_1966', 0); INSERT INTO est_inclus VALUES ('name_1968', 'CI_Series_1967', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1969', 'CI_Series_1967', 2); INSERT INTO est_inclus VALUES ('page_1970', 'CI_Series_1967', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1971', 'CI_Citation_891', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1972', 'CI_Citation_891', 11); INSERT INTO est_inclus VALUES ('ISBN_1973', 'CI_Citation_891', 12); INSERT INTO est_inclus VALUES ('ISSN_1974', 'CI_Citation_891', 13); INSERT INTO est_inclus VALUES ('citation_889', 'MD_Constraints_108', 2); INSERT INTO est_inclus VALUES ('CI_Citation_894', 'citation_889', 0); INSERT INTO est_inclus VALUES ('title_1975', 'CI_Citation_894', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1976', 'CI_Citation_894', 2); INSERT INTO est_inclus VALUES ('datec_1977', 'CI_Citation_894', 3); INSERT INTO est_inclus VALUES ('CI_Date_1978', 'datec_1977', 0); INSERT INTO est_inclus VALUES ('date_1979', 'CI_Date_1978', 1); INSERT INTO est_inclus VALUES ('dateType_1980', 'CI_Date_1978', 2); INSERT INTO est_inclus VALUES ('edition_1981', 'CI_Citation_894', 4); INSERT INTO est_inclus VALUES ('editionDate_1982', 'CI_Citation_894', 5); INSERT INTO est_inclus VALUES ('identifier_1983', 'CI_Citation_894', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1984', 'identifier_1983', 0); INSERT INTO est_inclus VALUES ('authority_1985', 'MD_Identifier_1984', 1); INSERT INTO est_inclus VALUES ('code_1986', 'MD_Identifier_1984', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1987', 'CI_Citation_894', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1988', 'citedResponsibleParty_1987', 0); INSERT INTO est_inclus VALUES ('presentationForm_1989', 'CI_Citation_894', 8); INSERT INTO est_inclus VALUES ('series_1990', 'CI_Citation_894', 9); INSERT INTO est_inclus VALUES ('CI_Series_1991', 'series_1990', 0); INSERT INTO est_inclus VALUES ('name_1992', 'CI_Series_1991', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1993', 'CI_Series_1991', 2); INSERT INTO est_inclus VALUES ('page_1994', 'CI_Series_1991', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1995', 'CI_Citation_894', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1996', 'CI_Citation_894', 11); INSERT INTO est_inclus VALUES ('ISBN_1997', 'CI_Citation_894', 12); INSERT INTO est_inclus VALUES ('ISSN_1998', 'CI_Citation_894', 13); INSERT INTO est_inclus VALUES ('citation_897', 'MD_SecurityConstraints_253', 6); INSERT INTO est_inclus VALUES ('CI_Citation_900', 'citation_897', 0); INSERT INTO est_inclus VALUES ('title_1999', 'CI_Citation_900', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2000', 'CI_Citation_900', 2); INSERT INTO est_inclus VALUES ('datec_2001', 'CI_Citation_900', 3); INSERT INTO est_inclus VALUES ('CI_Date_2002', 'datec_2001', 0); INSERT INTO est_inclus VALUES ('date_2003', 'CI_Date_2002', 1); INSERT INTO est_inclus VALUES ('dateType_2004', 'CI_Date_2002', 2); INSERT INTO est_inclus VALUES ('edition_2005', 'CI_Citation_900', 4); INSERT INTO est_inclus VALUES ('editionDate_2006', 'CI_Citation_900', 5); INSERT INTO est_inclus VALUES ('identifier_2007', 'CI_Citation_900', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2008', 'identifier_2007', 0); INSERT INTO est_inclus VALUES ('authority_2009', 'MD_Identifier_2008', 1); INSERT INTO est_inclus VALUES ('code_2010', 'MD_Identifier_2008', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2011', 'CI_Citation_900', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2012', 'citedResponsibleParty_2011', 0); INSERT INTO est_inclus VALUES ('presentationForm_2013', 'CI_Citation_900', 8); INSERT INTO est_inclus VALUES ('series_2014', 'CI_Citation_900', 9); INSERT INTO est_inclus VALUES ('CI_Series_2015', 'series_2014', 0); INSERT INTO est_inclus VALUES ('name_2016', 'CI_Series_2015', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2017', 'CI_Series_2015', 2); INSERT INTO est_inclus VALUES ('page_2018', 'CI_Series_2015', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2019', 'CI_Citation_900', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2020', 'CI_Citation_900', 11); INSERT INTO est_inclus VALUES ('ISBN_2021', 'CI_Citation_900', 12); INSERT INTO est_inclus VALUES ('ISSN_2022', 'CI_Citation_900', 13); INSERT INTO est_inclus VALUES ('citation_888', 'MD_LegalConstraints_249', 5); INSERT INTO est_inclus VALUES ('CI_Citation_892', 'citation_888', 0); INSERT INTO est_inclus VALUES ('title_2023', 'CI_Citation_892', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2024', 'CI_Citation_892', 2); INSERT INTO est_inclus VALUES ('datec_2025', 'CI_Citation_892', 3); INSERT INTO est_inclus VALUES ('CI_Date_2026', 'datec_2025', 0); INSERT INTO est_inclus VALUES ('date_2027', 'CI_Date_2026', 1); INSERT INTO est_inclus VALUES ('dateType_2028', 'CI_Date_2026', 2); INSERT INTO est_inclus VALUES ('edition_2029', 'CI_Citation_892', 4); INSERT INTO est_inclus VALUES ('editionDate_2030', 'CI_Citation_892', 5); INSERT INTO est_inclus VALUES ('identifier_2031', 'CI_Citation_892', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2032', 'identifier_2031', 0); INSERT INTO est_inclus VALUES ('authority_2033', 'MD_Identifier_2032', 1); INSERT INTO est_inclus VALUES ('code_2034', 'MD_Identifier_2032', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2035', 'CI_Citation_892', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2036', 'citedResponsibleParty_2035', 0); INSERT INTO est_inclus VALUES ('presentationForm_2037', 'CI_Citation_892', 8); INSERT INTO est_inclus VALUES ('series_2038', 'CI_Citation_892', 9); INSERT INTO est_inclus VALUES ('CI_Series_2039', 'series_2038', 0); INSERT INTO est_inclus VALUES ('name_2040', 'CI_Series_2039', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2041', 'CI_Series_2039', 2); INSERT INTO est_inclus VALUES ('page_2042', 'CI_Series_2039', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2043', 'CI_Citation_892', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2044', 'CI_Citation_892', 11); INSERT INTO est_inclus VALUES ('ISBN_2045', 'CI_Citation_892', 12); INSERT INTO est_inclus VALUES ('ISSN_2046', 'CI_Citation_892', 13); INSERT INTO est_inclus VALUES ('citation_895', 'MD_LegalConstraints_259', 5); INSERT INTO est_inclus VALUES ('CI_Citation_898', 'citation_895', 0); INSERT INTO est_inclus VALUES ('title_2047', 'CI_Citation_898', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2048', 'CI_Citation_898', 2); INSERT INTO est_inclus VALUES ('datec_2049', 'CI_Citation_898', 3); INSERT INTO est_inclus VALUES ('CI_Date_2050', 'datec_2049', 0); INSERT INTO est_inclus VALUES ('date_2051', 'CI_Date_2050', 1); INSERT INTO est_inclus VALUES ('dateType_2052', 'CI_Date_2050', 2); INSERT INTO est_inclus VALUES ('edition_2053', 'CI_Citation_898', 4); INSERT INTO est_inclus VALUES ('editionDate_2054', 'CI_Citation_898', 5); INSERT INTO est_inclus VALUES ('identifier_2055', 'CI_Citation_898', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2056', 'identifier_2055', 0); INSERT INTO est_inclus VALUES ('authority_2057', 'MD_Identifier_2056', 1); INSERT INTO est_inclus VALUES ('code_2058', 'MD_Identifier_2056', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2059', 'CI_Citation_898', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2060', 'citedResponsibleParty_2059', 0); INSERT INTO est_inclus VALUES ('presentationForm_2061', 'CI_Citation_898', 8); INSERT INTO est_inclus VALUES ('series_2062', 'CI_Citation_898', 9); INSERT INTO est_inclus VALUES ('CI_Series_2063', 'series_2062', 0); INSERT INTO est_inclus VALUES ('name_2064', 'CI_Series_2063', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2065', 'CI_Series_2063', 2); INSERT INTO est_inclus VALUES ('page_2066', 'CI_Series_2063', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2067', 'CI_Citation_898', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2068', 'CI_Citation_898', 11); INSERT INTO est_inclus VALUES ('ISBN_2069', 'CI_Citation_898', 12); INSERT INTO est_inclus VALUES ('ISSN_2070', 'CI_Citation_898', 13); INSERT INTO est_inclus VALUES ('citation_890', 'MD_SecurityConstraints_263', 6); INSERT INTO est_inclus VALUES ('CI_Citation_893', 'citation_890', 0); INSERT INTO est_inclus VALUES ('title_2071', 'CI_Citation_893', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2072', 'CI_Citation_893', 2); INSERT INTO est_inclus VALUES ('datec_2073', 'CI_Citation_893', 3); INSERT INTO est_inclus VALUES ('CI_Date_2074', 'datec_2073', 0); INSERT INTO est_inclus VALUES ('date_2075', 'CI_Date_2074', 1); INSERT INTO est_inclus VALUES ('dateType_2076', 'CI_Date_2074', 2); INSERT INTO est_inclus VALUES ('edition_2077', 'CI_Citation_893', 4); INSERT INTO est_inclus VALUES ('editionDate_2078', 'CI_Citation_893', 5); INSERT INTO est_inclus VALUES ('identifier_2079', 'CI_Citation_893', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2080', 'identifier_2079', 0); INSERT INTO est_inclus VALUES ('authority_2081', 'MD_Identifier_2080', 1); INSERT INTO est_inclus VALUES ('code_2082', 'MD_Identifier_2080', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2083', 'CI_Citation_893', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2084', 'citedResponsibleParty_2083', 0); INSERT INTO est_inclus VALUES ('presentationForm_2085', 'CI_Citation_893', 8); INSERT INTO est_inclus VALUES ('series_2086', 'CI_Citation_893', 9); INSERT INTO est_inclus VALUES ('CI_Series_2087', 'series_2086', 0); INSERT INTO est_inclus VALUES ('name_2088', 'CI_Series_2087', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2089', 'CI_Series_2087', 2); INSERT INTO est_inclus VALUES ('page_2090', 'CI_Series_2087', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2091', 'CI_Citation_893', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2092', 'CI_Citation_893', 11); INSERT INTO est_inclus VALUES ('ISBN_2093', 'CI_Citation_893', 12); INSERT INTO est_inclus VALUES ('ISSN_2094', 'CI_Citation_893', 13); INSERT INTO est_inclus VALUES ('citation_896', 'MD_Constraints_247', 2); INSERT INTO est_inclus VALUES ('CI_Citation_899', 'citation_896', 0); INSERT INTO est_inclus VALUES ('title_2095', 'CI_Citation_899', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2096', 'CI_Citation_899', 2); INSERT INTO est_inclus VALUES ('datec_2097', 'CI_Citation_899', 3); INSERT INTO est_inclus VALUES ('CI_Date_2098', 'datec_2097', 0); INSERT INTO est_inclus VALUES ('date_2099', 'CI_Date_2098', 1); INSERT INTO est_inclus VALUES ('dateType_2100', 'CI_Date_2098', 2); INSERT INTO est_inclus VALUES ('edition_2101', 'CI_Citation_899', 4); INSERT INTO est_inclus VALUES ('editionDate_2102', 'CI_Citation_899', 5); INSERT INTO est_inclus VALUES ('identifier_2103', 'CI_Citation_899', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2104', 'identifier_2103', 0); INSERT INTO est_inclus VALUES ('authority_2105', 'MD_Identifier_2104', 1); INSERT INTO est_inclus VALUES ('code_2106', 'MD_Identifier_2104', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2107', 'CI_Citation_899', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2108', 'citedResponsibleParty_2107', 0); INSERT INTO est_inclus VALUES ('presentationForm_2109', 'CI_Citation_899', 8); INSERT INTO est_inclus VALUES ('series_2110', 'CI_Citation_899', 9); INSERT INTO est_inclus VALUES ('CI_Series_2111', 'series_2110', 0); INSERT INTO est_inclus VALUES ('name_2112', 'CI_Series_2111', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2113', 'CI_Series_2111', 2); INSERT INTO est_inclus VALUES ('page_2114', 'CI_Series_2111', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2115', 'CI_Citation_899', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2116', 'CI_Citation_899', 11); INSERT INTO est_inclus VALUES ('ISBN_2117', 'CI_Citation_899', 12); INSERT INTO est_inclus VALUES ('ISSN_2118', 'CI_Citation_899', 13); INSERT INTO est_inclus VALUES ('MD_ReferenceSystem_901', 'referenceSystemInfo_38', 0); INSERT INTO est_inclus VALUES ('referenceSystemIdentifier_902', 'MD_ReferenceSystem_901', 1); INSERT INTO est_inclus VALUES ('RS_Identifier_903', 'referenceSystemIdentifier_902', 0); INSERT INTO est_inclus VALUES ('authority_904', 'RS_Identifier_903', 1); INSERT INTO est_inclus VALUES ('CI_Citation_905', 'authority_904', 0); INSERT INTO est_inclus VALUES ('title_2119', 'CI_Citation_905', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2120', 'CI_Citation_905', 2); INSERT INTO est_inclus VALUES ('datec_2121', 'CI_Citation_905', 3); INSERT INTO est_inclus VALUES ('CI_Date_2122', 'datec_2121', 0); INSERT INTO est_inclus VALUES ('date_2123', 'CI_Date_2122', 1); INSERT INTO est_inclus VALUES ('dateType_2124', 'CI_Date_2122', 2); INSERT INTO est_inclus VALUES ('edition_2125', 'CI_Citation_905', 4); INSERT INTO est_inclus VALUES ('editionDate_2126', 'CI_Citation_905', 5); INSERT INTO est_inclus VALUES ('identifier_2127', 'CI_Citation_905', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2128', 'identifier_2127', 0); INSERT INTO est_inclus VALUES ('authority_2129', 'MD_Identifier_2128', 1); INSERT INTO est_inclus VALUES ('code_2130', 'MD_Identifier_2128', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2131', 'CI_Citation_905', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2132', 'citedResponsibleParty_2131', 0); INSERT INTO est_inclus VALUES ('presentationForm_2133', 'CI_Citation_905', 8); INSERT INTO est_inclus VALUES ('series_2134', 'CI_Citation_905', 9); INSERT INTO est_inclus VALUES ('CI_Series_2135', 'series_2134', 0); INSERT INTO est_inclus VALUES ('name_2136', 'CI_Series_2135', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2137', 'CI_Series_2135', 2); INSERT INTO est_inclus VALUES ('page_2138', 'CI_Series_2135', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2139', 'CI_Citation_905', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2140', 'CI_Citation_905', 11); INSERT INTO est_inclus VALUES ('ISBN_2141', 'CI_Citation_905', 12); INSERT INTO est_inclus VALUES ('ISSN_2142', 'CI_Citation_905', 13); INSERT INTO est_inclus VALUES ('code_906', 'RS_Identifier_903', 2); INSERT INTO est_inclus VALUES ('codeSpace_907', 'RS_Identifier_903', 3); INSERT INTO est_inclus VALUES ('version_908', 'RS_Identifier_903', 4); INSERT INTO est_inclus VALUES ('QE_Usability_909', 'report_437', 0); INSERT INTO est_inclus VALUES ('nameOfMeasure_ 910', 'QE_Usability_909', 1); INSERT INTO est_inclus VALUES ('measureIdentification_ 911', 'QE_Usability_909', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_912', 'measureIdentification_ 911', 0); INSERT INTO est_inclus VALUES ('authority_2143', 'MD_Identifier_912', 1); INSERT INTO est_inclus VALUES ('CI_Citation_2144', 'authority_2143', 0); INSERT INTO est_inclus VALUES ('code_2145', 'MD_Identifier_912', 2); INSERT INTO est_inclus VALUES ('measureDescription_ 913', 'QE_Usability_909', 3); INSERT INTO est_inclus VALUES ('evaluationMethodType_ 914', 'QE_Usability_909', 4); INSERT INTO est_inclus VALUES ('evaluationMethodDescription_ 915', 'QE_Usability_909', 5); INSERT INTO est_inclus VALUES ('evaluationProcedure_ 916', 'QE_Usability_909', 6); INSERT INTO est_inclus VALUES ('CI_Citation_917', 'evaluationProcedure_ 916', 0); INSERT INTO est_inclus VALUES ('title_2146', 'CI_Citation_917', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2147', 'CI_Citation_917', 2); INSERT INTO est_inclus VALUES ('datec_2148', 'CI_Citation_917', 3); INSERT INTO est_inclus VALUES ('CI_Date_2149', 'datec_2148', 0); INSERT INTO est_inclus VALUES ('date_2150', 'CI_Date_2149', 1); INSERT INTO est_inclus VALUES ('dateType_2151', 'CI_Date_2149', 2); INSERT INTO est_inclus VALUES ('edition_2152', 'CI_Citation_917', 4); INSERT INTO est_inclus VALUES ('editionDate_2153', 'CI_Citation_917', 5); INSERT INTO est_inclus VALUES ('identifier_2154', 'CI_Citation_917', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2155', 'identifier_2154', 0); INSERT INTO est_inclus VALUES ('authority_2156', 'MD_Identifier_2155', 1); INSERT INTO est_inclus VALUES ('code_2157', 'MD_Identifier_2155', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2158', 'CI_Citation_917', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2159', 'citedResponsibleParty_2158', 0); INSERT INTO est_inclus VALUES ('presentationForm_2160', 'CI_Citation_917', 8); INSERT INTO est_inclus VALUES ('series_2161', 'CI_Citation_917', 9); INSERT INTO est_inclus VALUES ('CI_Series_2162', 'series_2161', 0); INSERT INTO est_inclus VALUES ('name_2163', 'CI_Series_2162', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2164', 'CI_Series_2162', 2); INSERT INTO est_inclus VALUES ('page_2165', 'CI_Series_2162', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2166', 'CI_Citation_917', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2167', 'CI_Citation_917', 11); INSERT INTO est_inclus VALUES ('ISBN_2168', 'CI_Citation_917', 12); INSERT INTO est_inclus VALUES ('ISSN_2169', 'CI_Citation_917', 13); INSERT INTO est_inclus VALUES ('dateTime_ 918', 'QE_Usability_909', 7); INSERT INTO est_inclus VALUES ('result_ 919', 'QE_Usability_909', 8); INSERT INTO est_inclus VALUES ('DQ_ConformanceResult_2170', 'result_ 919', 0); INSERT INTO est_inclus VALUES ('specification_2171', 'DQ_ConformanceResult_2170', 1); INSERT INTO est_inclus VALUES ('explanation_2172', 'DQ_ConformanceResult_2170', 2); INSERT INTO est_inclus VALUES ('pass_2173', 'DQ_ConformanceResult_2170', 3); INSERT INTO est_inclus VALUES ('CI_Citation_2174', 'specification_2171', 0); INSERT INTO est_inclus VALUES ('DQ_QuantitativeResult_2175', 'result_ 919', 0); INSERT INTO est_inclus VALUES ('valueType_2176', 'DQ_QuantitativeResult_2175', 1); INSERT INTO est_inclus VALUES ('valueUnit_2177', 'DQ_QuantitativeResult_2175', 2); INSERT INTO est_inclus VALUES ('errorStatistic_2178', 'DQ_QuantitativeResult_2175', 3); INSERT INTO est_inclus VALUES ('value_2179', 'DQ_QuantitativeResult_2175', 4); INSERT INTO est_inclus VALUES ('MemberName_920', 'sequenceIdentifier_594', 0); INSERT INTO est_inclus VALUES ('aName_921', 'MemberName_920', 1); INSERT INTO est_inclus VALUES ('attributeType_922', 'MemberName_920', 2); INSERT INTO est_inclus VALUES ('TypeName_923', 'attributeType_922', 0); INSERT INTO est_inclus VALUES ('aName_924', 'TypeName_923', 1); INSERT INTO est_inclus VALUES ('individualName_2180', 'CI_ResponsibleParty_993', 1); INSERT INTO est_inclus VALUES ('organisationName_2181', 'CI_ResponsibleParty_993', 2); INSERT INTO est_inclus VALUES ('positionName_2182', 'CI_ResponsibleParty_993', 3); INSERT INTO est_inclus VALUES ('contactInfo_2183', 'CI_ResponsibleParty_993', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2184', 'contactInfo_2183', 0); INSERT INTO est_inclus VALUES ('phone_2185', 'CI_Contact_2184', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2186', 'phone_2185', 0); INSERT INTO est_inclus VALUES ('voice_2187', 'CI_Telephone_2186', 1); INSERT INTO est_inclus VALUES ('facsimile_2188', 'CI_Telephone_2186', 2); INSERT INTO est_inclus VALUES ('address_2189', 'CI_Contact_2184', 2); INSERT INTO est_inclus VALUES ('CI_Address_2190', 'address_2189', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2191', 'CI_Address_2190', 1); INSERT INTO est_inclus VALUES ('city_2192', 'CI_Address_2190', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2193', 'CI_Address_2190', 3); INSERT INTO est_inclus VALUES ('postalCode_2194', 'CI_Address_2190', 4); INSERT INTO est_inclus VALUES ('country_2195', 'CI_Address_2190', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2196', 'CI_Address_2190', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2197', 'CI_Contact_2184', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2198', 'onlineRessource_2197', 0); INSERT INTO est_inclus VALUES ('linkage_2199', 'CI_OnlineResource_2198', 1); INSERT INTO est_inclus VALUES ('protocol_2200', 'CI_OnlineResource_2198', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2201', 'CI_OnlineResource_2198', 3); INSERT INTO est_inclus VALUES ('name_2202', 'CI_OnlineResource_2198', 4); INSERT INTO est_inclus VALUES ('description_2203', 'CI_OnlineResource_2198', 5); INSERT INTO est_inclus VALUES ('function_2204', 'CI_OnlineResource_2198', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2205', 'CI_Contact_2184', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2206', 'CI_Contact_2184', 5); INSERT INTO est_inclus VALUES ('role_2207', 'CI_ResponsibleParty_993', 5); INSERT INTO est_inclus VALUES ('individualName_2208', 'CI_ResponsibleParty_1045', 1); INSERT INTO est_inclus VALUES ('organisationName_2209', 'CI_ResponsibleParty_1045', 2); INSERT INTO est_inclus VALUES ('positionName_2210', 'CI_ResponsibleParty_1045', 3); INSERT INTO est_inclus VALUES ('contactInfo_2211', 'CI_ResponsibleParty_1045', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2212', 'contactInfo_2211', 0); INSERT INTO est_inclus VALUES ('phone_2213', 'CI_Contact_2212', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2214', 'phone_2213', 0); INSERT INTO est_inclus VALUES ('voice_2215', 'CI_Telephone_2214', 1); INSERT INTO est_inclus VALUES ('facsimile_2216', 'CI_Telephone_2214', 2); INSERT INTO est_inclus VALUES ('address_2217', 'CI_Contact_2212', 2); INSERT INTO est_inclus VALUES ('CI_Address_2218', 'address_2217', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2219', 'CI_Address_2218', 1); INSERT INTO est_inclus VALUES ('city_2220', 'CI_Address_2218', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2221', 'CI_Address_2218', 3); INSERT INTO est_inclus VALUES ('postalCode_2222', 'CI_Address_2218', 4); INSERT INTO est_inclus VALUES ('country_2223', 'CI_Address_2218', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2224', 'CI_Address_2218', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2225', 'CI_Contact_2212', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2226', 'onlineRessource_2225', 0); INSERT INTO est_inclus VALUES ('linkage_2227', 'CI_OnlineResource_2226', 1); INSERT INTO est_inclus VALUES ('protocol_2228', 'CI_OnlineResource_2226', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2229', 'CI_OnlineResource_2226', 3); INSERT INTO est_inclus VALUES ('name_2230', 'CI_OnlineResource_2226', 4); INSERT INTO est_inclus VALUES ('description_2231', 'CI_OnlineResource_2226', 5); INSERT INTO est_inclus VALUES ('function_2232', 'CI_OnlineResource_2226', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2233', 'CI_Contact_2212', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2234', 'CI_Contact_2212', 5); INSERT INTO est_inclus VALUES ('role_2235', 'CI_ResponsibleParty_1045', 5); INSERT INTO est_inclus VALUES ('individualName_2236', 'CI_ResponsibleParty_1069', 1); INSERT INTO est_inclus VALUES ('organisationName_2237', 'CI_ResponsibleParty_1069', 2); INSERT INTO est_inclus VALUES ('positionName_2238', 'CI_ResponsibleParty_1069', 3); INSERT INTO est_inclus VALUES ('contactInfo_2239', 'CI_ResponsibleParty_1069', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2240', 'contactInfo_2239', 0); INSERT INTO est_inclus VALUES ('phone_2241', 'CI_Contact_2240', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2242', 'phone_2241', 0); INSERT INTO est_inclus VALUES ('voice_2243', 'CI_Telephone_2242', 1); INSERT INTO est_inclus VALUES ('facsimile_2244', 'CI_Telephone_2242', 2); INSERT INTO est_inclus VALUES ('address_2245', 'CI_Contact_2240', 2); INSERT INTO est_inclus VALUES ('CI_Address_2246', 'address_2245', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2247', 'CI_Address_2246', 1); INSERT INTO est_inclus VALUES ('city_2248', 'CI_Address_2246', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2249', 'CI_Address_2246', 3); INSERT INTO est_inclus VALUES ('postalCode_2250', 'CI_Address_2246', 4); INSERT INTO est_inclus VALUES ('country_2251', 'CI_Address_2246', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2252', 'CI_Address_2246', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2253', 'CI_Contact_2240', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2254', 'onlineRessource_2253', 0); INSERT INTO est_inclus VALUES ('linkage_2255', 'CI_OnlineResource_2254', 1); INSERT INTO est_inclus VALUES ('protocol_2256', 'CI_OnlineResource_2254', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2257', 'CI_OnlineResource_2254', 3); INSERT INTO est_inclus VALUES ('name_2258', 'CI_OnlineResource_2254', 4); INSERT INTO est_inclus VALUES ('description_2259', 'CI_OnlineResource_2254', 5); INSERT INTO est_inclus VALUES ('function_2260', 'CI_OnlineResource_2254', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2261', 'CI_Contact_2240', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2262', 'CI_Contact_2240', 5); INSERT INTO est_inclus VALUES ('role_2263', 'CI_ResponsibleParty_1069', 5); INSERT INTO est_inclus VALUES ('individualName_2264', 'CI_ResponsibleParty_1093', 1); INSERT INTO est_inclus VALUES ('organisationName_2265', 'CI_ResponsibleParty_1093', 2); INSERT INTO est_inclus VALUES ('positionName_2266', 'CI_ResponsibleParty_1093', 3); INSERT INTO est_inclus VALUES ('contactInfo_2267', 'CI_ResponsibleParty_1093', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2268', 'contactInfo_2267', 0); INSERT INTO est_inclus VALUES ('phone_2269', 'CI_Contact_2268', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2270', 'phone_2269', 0); INSERT INTO est_inclus VALUES ('voice_2271', 'CI_Telephone_2270', 1); INSERT INTO est_inclus VALUES ('facsimile_2272', 'CI_Telephone_2270', 2); INSERT INTO est_inclus VALUES ('address_2273', 'CI_Contact_2268', 2); INSERT INTO est_inclus VALUES ('CI_Address_2274', 'address_2273', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2275', 'CI_Address_2274', 1); INSERT INTO est_inclus VALUES ('city_2276', 'CI_Address_2274', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2277', 'CI_Address_2274', 3); INSERT INTO est_inclus VALUES ('postalCode_2278', 'CI_Address_2274', 4); INSERT INTO est_inclus VALUES ('country_2279', 'CI_Address_2274', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2280', 'CI_Address_2274', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2281', 'CI_Contact_2268', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2282', 'onlineRessource_2281', 0); INSERT INTO est_inclus VALUES ('linkage_2283', 'CI_OnlineResource_2282', 1); INSERT INTO est_inclus VALUES ('protocol_2284', 'CI_OnlineResource_2282', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2285', 'CI_OnlineResource_2282', 3); INSERT INTO est_inclus VALUES ('name_2286', 'CI_OnlineResource_2282', 4); INSERT INTO est_inclus VALUES ('description_2287', 'CI_OnlineResource_2282', 5); INSERT INTO est_inclus VALUES ('function_2288', 'CI_OnlineResource_2282', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2289', 'CI_Contact_2268', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2290', 'CI_Contact_2268', 5); INSERT INTO est_inclus VALUES ('role_2291', 'CI_ResponsibleParty_1093', 5); INSERT INTO est_inclus VALUES ('individualName_2292', 'CI_ResponsibleParty_1117', 1); INSERT INTO est_inclus VALUES ('organisationName_2293', 'CI_ResponsibleParty_1117', 2); INSERT INTO est_inclus VALUES ('positionName_2294', 'CI_ResponsibleParty_1117', 3); INSERT INTO est_inclus VALUES ('contactInfo_2295', 'CI_ResponsibleParty_1117', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2296', 'contactInfo_2295', 0); INSERT INTO est_inclus VALUES ('phone_2297', 'CI_Contact_2296', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2298', 'phone_2297', 0); INSERT INTO est_inclus VALUES ('voice_2299', 'CI_Telephone_2298', 1); INSERT INTO est_inclus VALUES ('facsimile_2300', 'CI_Telephone_2298', 2); INSERT INTO est_inclus VALUES ('address_2301', 'CI_Contact_2296', 2); INSERT INTO est_inclus VALUES ('CI_Address_2302', 'address_2301', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2303', 'CI_Address_2302', 1); INSERT INTO est_inclus VALUES ('city_2304', 'CI_Address_2302', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2305', 'CI_Address_2302', 3); INSERT INTO est_inclus VALUES ('postalCode_2306', 'CI_Address_2302', 4); INSERT INTO est_inclus VALUES ('country_2307', 'CI_Address_2302', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2308', 'CI_Address_2302', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2309', 'CI_Contact_2296', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2310', 'onlineRessource_2309', 0); INSERT INTO est_inclus VALUES ('linkage_2311', 'CI_OnlineResource_2310', 1); INSERT INTO est_inclus VALUES ('protocol_2312', 'CI_OnlineResource_2310', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2313', 'CI_OnlineResource_2310', 3); INSERT INTO est_inclus VALUES ('name_2314', 'CI_OnlineResource_2310', 4); INSERT INTO est_inclus VALUES ('description_2315', 'CI_OnlineResource_2310', 5); INSERT INTO est_inclus VALUES ('function_2316', 'CI_OnlineResource_2310', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2317', 'CI_Contact_2296', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2318', 'CI_Contact_2296', 5); INSERT INTO est_inclus VALUES ('role_2319', 'CI_ResponsibleParty_1117', 5); INSERT INTO est_inclus VALUES ('individualName_2320', 'CI_ResponsibleParty_1141', 1); INSERT INTO est_inclus VALUES ('organisationName_2321', 'CI_ResponsibleParty_1141', 2); INSERT INTO est_inclus VALUES ('positionName_2322', 'CI_ResponsibleParty_1141', 3); INSERT INTO est_inclus VALUES ('contactInfo_2323', 'CI_ResponsibleParty_1141', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2324', 'contactInfo_2323', 0); INSERT INTO est_inclus VALUES ('phone_2325', 'CI_Contact_2324', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2326', 'phone_2325', 0); INSERT INTO est_inclus VALUES ('voice_2327', 'CI_Telephone_2326', 1); INSERT INTO est_inclus VALUES ('facsimile_2328', 'CI_Telephone_2326', 2); INSERT INTO est_inclus VALUES ('address_2329', 'CI_Contact_2324', 2); INSERT INTO est_inclus VALUES ('CI_Address_2330', 'address_2329', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2331', 'CI_Address_2330', 1); INSERT INTO est_inclus VALUES ('city_2332', 'CI_Address_2330', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2333', 'CI_Address_2330', 3); INSERT INTO est_inclus VALUES ('postalCode_2334', 'CI_Address_2330', 4); INSERT INTO est_inclus VALUES ('country_2335', 'CI_Address_2330', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2336', 'CI_Address_2330', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2337', 'CI_Contact_2324', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2338', 'onlineRessource_2337', 0); INSERT INTO est_inclus VALUES ('linkage_2339', 'CI_OnlineResource_2338', 1); INSERT INTO est_inclus VALUES ('protocol_2340', 'CI_OnlineResource_2338', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2341', 'CI_OnlineResource_2338', 3); INSERT INTO est_inclus VALUES ('name_2342', 'CI_OnlineResource_2338', 4); INSERT INTO est_inclus VALUES ('description_2343', 'CI_OnlineResource_2338', 5); INSERT INTO est_inclus VALUES ('function_2344', 'CI_OnlineResource_2338', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2345', 'CI_Contact_2324', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2346', 'CI_Contact_2324', 5); INSERT INTO est_inclus VALUES ('role_2347', 'CI_ResponsibleParty_1141', 5); INSERT INTO est_inclus VALUES ('individualName_2348', 'CI_ResponsibleParty_1165', 1); INSERT INTO est_inclus VALUES ('organisationName_2349', 'CI_ResponsibleParty_1165', 2); INSERT INTO est_inclus VALUES ('positionName_2350', 'CI_ResponsibleParty_1165', 3); INSERT INTO est_inclus VALUES ('contactInfo_2351', 'CI_ResponsibleParty_1165', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2352', 'contactInfo_2351', 0); INSERT INTO est_inclus VALUES ('phone_2353', 'CI_Contact_2352', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2354', 'phone_2353', 0); INSERT INTO est_inclus VALUES ('voice_2355', 'CI_Telephone_2354', 1); INSERT INTO est_inclus VALUES ('facsimile_2356', 'CI_Telephone_2354', 2); INSERT INTO est_inclus VALUES ('address_2357', 'CI_Contact_2352', 2); INSERT INTO est_inclus VALUES ('CI_Address_2358', 'address_2357', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2359', 'CI_Address_2358', 1); INSERT INTO est_inclus VALUES ('city_2360', 'CI_Address_2358', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2361', 'CI_Address_2358', 3); INSERT INTO est_inclus VALUES ('postalCode_2362', 'CI_Address_2358', 4); INSERT INTO est_inclus VALUES ('country_2363', 'CI_Address_2358', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2364', 'CI_Address_2358', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2365', 'CI_Contact_2352', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2366', 'onlineRessource_2365', 0); INSERT INTO est_inclus VALUES ('linkage_2367', 'CI_OnlineResource_2366', 1); INSERT INTO est_inclus VALUES ('protocol_2368', 'CI_OnlineResource_2366', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2369', 'CI_OnlineResource_2366', 3); INSERT INTO est_inclus VALUES ('name_2370', 'CI_OnlineResource_2366', 4); INSERT INTO est_inclus VALUES ('description_2371', 'CI_OnlineResource_2366', 5); INSERT INTO est_inclus VALUES ('function_2372', 'CI_OnlineResource_2366', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2373', 'CI_Contact_2352', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2374', 'CI_Contact_2352', 5); INSERT INTO est_inclus VALUES ('role_2375', 'CI_ResponsibleParty_1165', 5); INSERT INTO est_inclus VALUES ('individualName_2376', 'CI_ResponsibleParty_1189', 1); INSERT INTO est_inclus VALUES ('organisationName_2377', 'CI_ResponsibleParty_1189', 2); INSERT INTO est_inclus VALUES ('positionName_2378', 'CI_ResponsibleParty_1189', 3); INSERT INTO est_inclus VALUES ('contactInfo_2379', 'CI_ResponsibleParty_1189', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2380', 'contactInfo_2379', 0); INSERT INTO est_inclus VALUES ('phone_2381', 'CI_Contact_2380', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2382', 'phone_2381', 0); INSERT INTO est_inclus VALUES ('voice_2383', 'CI_Telephone_2382', 1); INSERT INTO est_inclus VALUES ('facsimile_2384', 'CI_Telephone_2382', 2); INSERT INTO est_inclus VALUES ('address_2385', 'CI_Contact_2380', 2); INSERT INTO est_inclus VALUES ('CI_Address_2386', 'address_2385', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2387', 'CI_Address_2386', 1); INSERT INTO est_inclus VALUES ('city_2388', 'CI_Address_2386', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2389', 'CI_Address_2386', 3); INSERT INTO est_inclus VALUES ('postalCode_2390', 'CI_Address_2386', 4); INSERT INTO est_inclus VALUES ('country_2391', 'CI_Address_2386', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2392', 'CI_Address_2386', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2393', 'CI_Contact_2380', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2394', 'onlineRessource_2393', 0); INSERT INTO est_inclus VALUES ('linkage_2395', 'CI_OnlineResource_2394', 1); INSERT INTO est_inclus VALUES ('protocol_2396', 'CI_OnlineResource_2394', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2397', 'CI_OnlineResource_2394', 3); INSERT INTO est_inclus VALUES ('name_2398', 'CI_OnlineResource_2394', 4); INSERT INTO est_inclus VALUES ('description_2399', 'CI_OnlineResource_2394', 5); INSERT INTO est_inclus VALUES ('function_2400', 'CI_OnlineResource_2394', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2401', 'CI_Contact_2380', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2402', 'CI_Contact_2380', 5); INSERT INTO est_inclus VALUES ('role_2403', 'CI_ResponsibleParty_1189', 5); INSERT INTO est_inclus VALUES ('individualName_2404', 'CI_ResponsibleParty_1241', 1); INSERT INTO est_inclus VALUES ('organisationName_2405', 'CI_ResponsibleParty_1241', 2); INSERT INTO est_inclus VALUES ('positionName_2406', 'CI_ResponsibleParty_1241', 3); INSERT INTO est_inclus VALUES ('contactInfo_2407', 'CI_ResponsibleParty_1241', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2408', 'contactInfo_2407', 0); INSERT INTO est_inclus VALUES ('phone_2409', 'CI_Contact_2408', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2410', 'phone_2409', 0); INSERT INTO est_inclus VALUES ('voice_2411', 'CI_Telephone_2410', 1); INSERT INTO est_inclus VALUES ('facsimile_2412', 'CI_Telephone_2410', 2); INSERT INTO est_inclus VALUES ('address_2413', 'CI_Contact_2408', 2); INSERT INTO est_inclus VALUES ('CI_Address_2414', 'address_2413', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2415', 'CI_Address_2414', 1); INSERT INTO est_inclus VALUES ('city_2416', 'CI_Address_2414', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2417', 'CI_Address_2414', 3); INSERT INTO est_inclus VALUES ('postalCode_2418', 'CI_Address_2414', 4); INSERT INTO est_inclus VALUES ('country_2419', 'CI_Address_2414', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2420', 'CI_Address_2414', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2421', 'CI_Contact_2408', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2422', 'onlineRessource_2421', 0); INSERT INTO est_inclus VALUES ('linkage_2423', 'CI_OnlineResource_2422', 1); INSERT INTO est_inclus VALUES ('protocol_2424', 'CI_OnlineResource_2422', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2425', 'CI_OnlineResource_2422', 3); INSERT INTO est_inclus VALUES ('name_2426', 'CI_OnlineResource_2422', 4); INSERT INTO est_inclus VALUES ('description_2427', 'CI_OnlineResource_2422', 5); INSERT INTO est_inclus VALUES ('function_2428', 'CI_OnlineResource_2422', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2429', 'CI_Contact_2408', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2430', 'CI_Contact_2408', 5); INSERT INTO est_inclus VALUES ('role_2431', 'CI_ResponsibleParty_1241', 5); INSERT INTO est_inclus VALUES ('title_2432', 'CI_Citation_1253', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2433', 'CI_Citation_1253', 2); INSERT INTO est_inclus VALUES ('datec_2434', 'CI_Citation_1253', 3); INSERT INTO est_inclus VALUES ('CI_Date_2435', 'datec_2434', 0); INSERT INTO est_inclus VALUES ('date_2436', 'CI_Date_2435', 1); INSERT INTO est_inclus VALUES ('dateType_2437', 'CI_Date_2435', 2); INSERT INTO est_inclus VALUES ('edition_2438', 'CI_Citation_1253', 4); INSERT INTO est_inclus VALUES ('editionDate_2439', 'CI_Citation_1253', 5); INSERT INTO est_inclus VALUES ('identifier_2440', 'CI_Citation_1253', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2441', 'identifier_2440', 0); INSERT INTO est_inclus VALUES ('authority_2442', 'MD_Identifier_2441', 1); INSERT INTO est_inclus VALUES ('code_2443', 'MD_Identifier_2441', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2444', 'CI_Citation_1253', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2445', 'citedResponsibleParty_2444', 0); INSERT INTO est_inclus VALUES ('presentationForm_2446', 'CI_Citation_1253', 8); INSERT INTO est_inclus VALUES ('series_2447', 'CI_Citation_1253', 9); INSERT INTO est_inclus VALUES ('CI_Series_2448', 'series_2447', 0); INSERT INTO est_inclus VALUES ('name_2449', 'CI_Series_2448', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2450', 'CI_Series_2448', 2); INSERT INTO est_inclus VALUES ('page_2451', 'CI_Series_2448', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2452', 'CI_Citation_1253', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2453', 'CI_Citation_1253', 11); INSERT INTO est_inclus VALUES ('ISBN_2454', 'CI_Citation_1253', 12); INSERT INTO est_inclus VALUES ('ISSN_2455', 'CI_Citation_1253', 13); INSERT INTO est_inclus VALUES ('individualName_2456', 'CI_ResponsibleParty_1268', 1); INSERT INTO est_inclus VALUES ('organisationName_2457', 'CI_ResponsibleParty_1268', 2); INSERT INTO est_inclus VALUES ('positionName_2458', 'CI_ResponsibleParty_1268', 3); INSERT INTO est_inclus VALUES ('contactInfo_2459', 'CI_ResponsibleParty_1268', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2460', 'contactInfo_2459', 0); INSERT INTO est_inclus VALUES ('phone_2461', 'CI_Contact_2460', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2462', 'phone_2461', 0); INSERT INTO est_inclus VALUES ('voice_2463', 'CI_Telephone_2462', 1); INSERT INTO est_inclus VALUES ('facsimile_2464', 'CI_Telephone_2462', 2); INSERT INTO est_inclus VALUES ('address_2465', 'CI_Contact_2460', 2); INSERT INTO est_inclus VALUES ('CI_Address_2466', 'address_2465', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2467', 'CI_Address_2466', 1); INSERT INTO est_inclus VALUES ('city_2468', 'CI_Address_2466', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2469', 'CI_Address_2466', 3); INSERT INTO est_inclus VALUES ('postalCode_2470', 'CI_Address_2466', 4); INSERT INTO est_inclus VALUES ('country_2471', 'CI_Address_2466', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2472', 'CI_Address_2466', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2473', 'CI_Contact_2460', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2474', 'onlineRessource_2473', 0); INSERT INTO est_inclus VALUES ('linkage_2475', 'CI_OnlineResource_2474', 1); INSERT INTO est_inclus VALUES ('protocol_2476', 'CI_OnlineResource_2474', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2477', 'CI_OnlineResource_2474', 3); INSERT INTO est_inclus VALUES ('name_2478', 'CI_OnlineResource_2474', 4); INSERT INTO est_inclus VALUES ('description_2479', 'CI_OnlineResource_2474', 5); INSERT INTO est_inclus VALUES ('function_2480', 'CI_OnlineResource_2474', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2481', 'CI_Contact_2460', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2482', 'CI_Contact_2460', 5); INSERT INTO est_inclus VALUES ('role_2483', 'CI_ResponsibleParty_1268', 5); INSERT INTO est_inclus VALUES ('title_2484', 'CI_Citation_1280', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2485', 'CI_Citation_1280', 2); INSERT INTO est_inclus VALUES ('datec_2486', 'CI_Citation_1280', 3); INSERT INTO est_inclus VALUES ('CI_Date_2487', 'datec_2486', 0); INSERT INTO est_inclus VALUES ('date_2488', 'CI_Date_2487', 1); INSERT INTO est_inclus VALUES ('dateType_2489', 'CI_Date_2487', 2); INSERT INTO est_inclus VALUES ('edition_2490', 'CI_Citation_1280', 4); INSERT INTO est_inclus VALUES ('editionDate_2491', 'CI_Citation_1280', 5); INSERT INTO est_inclus VALUES ('identifier_2492', 'CI_Citation_1280', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2493', 'identifier_2492', 0); INSERT INTO est_inclus VALUES ('authority_2494', 'MD_Identifier_2493', 1); INSERT INTO est_inclus VALUES ('code_2495', 'MD_Identifier_2493', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2496', 'CI_Citation_1280', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2497', 'citedResponsibleParty_2496', 0); INSERT INTO est_inclus VALUES ('presentationForm_2498', 'CI_Citation_1280', 8); INSERT INTO est_inclus VALUES ('series_2499', 'CI_Citation_1280', 9); INSERT INTO est_inclus VALUES ('CI_Series_2500', 'series_2499', 0); INSERT INTO est_inclus VALUES ('name_2501', 'CI_Series_2500', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2502', 'CI_Series_2500', 2); INSERT INTO est_inclus VALUES ('page_2503', 'CI_Series_2500', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2504', 'CI_Citation_1280', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2505', 'CI_Citation_1280', 11); INSERT INTO est_inclus VALUES ('ISBN_2506', 'CI_Citation_1280', 12); INSERT INTO est_inclus VALUES ('ISSN_2507', 'CI_Citation_1280', 13); INSERT INTO est_inclus VALUES ('title_2508', 'CI_Citation_1283', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2509', 'CI_Citation_1283', 2); INSERT INTO est_inclus VALUES ('datec_2510', 'CI_Citation_1283', 3); INSERT INTO est_inclus VALUES ('CI_Date_2511', 'datec_2510', 0); INSERT INTO est_inclus VALUES ('date_2512', 'CI_Date_2511', 1); INSERT INTO est_inclus VALUES ('dateType_2513', 'CI_Date_2511', 2); INSERT INTO est_inclus VALUES ('edition_2514', 'CI_Citation_1283', 4); INSERT INTO est_inclus VALUES ('editionDate_2515', 'CI_Citation_1283', 5); INSERT INTO est_inclus VALUES ('identifier_2516', 'CI_Citation_1283', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2517', 'identifier_2516', 0); INSERT INTO est_inclus VALUES ('authority_2518', 'MD_Identifier_2517', 1); INSERT INTO est_inclus VALUES ('code_2519', 'MD_Identifier_2517', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2520', 'CI_Citation_1283', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2521', 'citedResponsibleParty_2520', 0); INSERT INTO est_inclus VALUES ('presentationForm_2522', 'CI_Citation_1283', 8); INSERT INTO est_inclus VALUES ('series_2523', 'CI_Citation_1283', 9); INSERT INTO est_inclus VALUES ('CI_Series_2524', 'series_2523', 0); INSERT INTO est_inclus VALUES ('name_2525', 'CI_Series_2524', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2526', 'CI_Series_2524', 2); INSERT INTO est_inclus VALUES ('page_2527', 'CI_Series_2524', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2528', 'CI_Citation_1283', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2529', 'CI_Citation_1283', 11); INSERT INTO est_inclus VALUES ('ISBN_2530', 'CI_Citation_1283', 12); INSERT INTO est_inclus VALUES ('ISSN_2531', 'CI_Citation_1283', 13); INSERT INTO est_inclus VALUES ('individualName_2532', 'CI_ResponsibleParty_1298', 1); INSERT INTO est_inclus VALUES ('organisationName_2533', 'CI_ResponsibleParty_1298', 2); INSERT INTO est_inclus VALUES ('positionName_2534', 'CI_ResponsibleParty_1298', 3); INSERT INTO est_inclus VALUES ('contactInfo_2535', 'CI_ResponsibleParty_1298', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2536', 'contactInfo_2535', 0); INSERT INTO est_inclus VALUES ('phone_2537', 'CI_Contact_2536', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2538', 'phone_2537', 0); INSERT INTO est_inclus VALUES ('voice_2539', 'CI_Telephone_2538', 1); INSERT INTO est_inclus VALUES ('facsimile_2540', 'CI_Telephone_2538', 2); INSERT INTO est_inclus VALUES ('address_2541', 'CI_Contact_2536', 2); INSERT INTO est_inclus VALUES ('CI_Address_2542', 'address_2541', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2543', 'CI_Address_2542', 1); INSERT INTO est_inclus VALUES ('city_2544', 'CI_Address_2542', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2545', 'CI_Address_2542', 3); INSERT INTO est_inclus VALUES ('postalCode_2546', 'CI_Address_2542', 4); INSERT INTO est_inclus VALUES ('country_2547', 'CI_Address_2542', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2548', 'CI_Address_2542', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2549', 'CI_Contact_2536', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2550', 'onlineRessource_2549', 0); INSERT INTO est_inclus VALUES ('linkage_2551', 'CI_OnlineResource_2550', 1); INSERT INTO est_inclus VALUES ('protocol_2552', 'CI_OnlineResource_2550', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2553', 'CI_OnlineResource_2550', 3); INSERT INTO est_inclus VALUES ('name_2554', 'CI_OnlineResource_2550', 4); INSERT INTO est_inclus VALUES ('description_2555', 'CI_OnlineResource_2550', 5); INSERT INTO est_inclus VALUES ('function_2556', 'CI_OnlineResource_2550', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2557', 'CI_Contact_2536', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2558', 'CI_Contact_2536', 5); INSERT INTO est_inclus VALUES ('role_2559', 'CI_ResponsibleParty_1298', 5); INSERT INTO est_inclus VALUES ('individualName_2560', 'CI_ResponsibleParty_1322', 1); INSERT INTO est_inclus VALUES ('organisationName_2561', 'CI_ResponsibleParty_1322', 2); INSERT INTO est_inclus VALUES ('positionName_2562', 'CI_ResponsibleParty_1322', 3); INSERT INTO est_inclus VALUES ('contactInfo_2563', 'CI_ResponsibleParty_1322', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2564', 'contactInfo_2563', 0); INSERT INTO est_inclus VALUES ('phone_2565', 'CI_Contact_2564', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2566', 'phone_2565', 0); INSERT INTO est_inclus VALUES ('voice_2567', 'CI_Telephone_2566', 1); INSERT INTO est_inclus VALUES ('facsimile_2568', 'CI_Telephone_2566', 2); INSERT INTO est_inclus VALUES ('address_2569', 'CI_Contact_2564', 2); INSERT INTO est_inclus VALUES ('CI_Address_2570', 'address_2569', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2571', 'CI_Address_2570', 1); INSERT INTO est_inclus VALUES ('city_2572', 'CI_Address_2570', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2573', 'CI_Address_2570', 3); INSERT INTO est_inclus VALUES ('postalCode_2574', 'CI_Address_2570', 4); INSERT INTO est_inclus VALUES ('country_2575', 'CI_Address_2570', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2576', 'CI_Address_2570', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2577', 'CI_Contact_2564', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2578', 'onlineRessource_2577', 0); INSERT INTO est_inclus VALUES ('linkage_2579', 'CI_OnlineResource_2578', 1); INSERT INTO est_inclus VALUES ('protocol_2580', 'CI_OnlineResource_2578', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2581', 'CI_OnlineResource_2578', 3); INSERT INTO est_inclus VALUES ('name_2582', 'CI_OnlineResource_2578', 4); INSERT INTO est_inclus VALUES ('description_2583', 'CI_OnlineResource_2578', 5); INSERT INTO est_inclus VALUES ('function_2584', 'CI_OnlineResource_2578', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2585', 'CI_Contact_2564', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2586', 'CI_Contact_2564', 5); INSERT INTO est_inclus VALUES ('role_2587', 'CI_ResponsibleParty_1322', 5); INSERT INTO est_inclus VALUES ('title_2588', 'CI_Citation_1362', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2589', 'CI_Citation_1362', 2); INSERT INTO est_inclus VALUES ('datec_2590', 'CI_Citation_1362', 3); INSERT INTO est_inclus VALUES ('CI_Date_2591', 'datec_2590', 0); INSERT INTO est_inclus VALUES ('date_2592', 'CI_Date_2591', 1); INSERT INTO est_inclus VALUES ('dateType_2593', 'CI_Date_2591', 2); INSERT INTO est_inclus VALUES ('edition_2594', 'CI_Citation_1362', 4); INSERT INTO est_inclus VALUES ('editionDate_2595', 'CI_Citation_1362', 5); INSERT INTO est_inclus VALUES ('identifier_2596', 'CI_Citation_1362', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2597', 'identifier_2596', 0); INSERT INTO est_inclus VALUES ('authority_2598', 'MD_Identifier_2597', 1); INSERT INTO est_inclus VALUES ('code_2599', 'MD_Identifier_2597', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2600', 'CI_Citation_1362', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2601', 'citedResponsibleParty_2600', 0); INSERT INTO est_inclus VALUES ('presentationForm_2602', 'CI_Citation_1362', 8); INSERT INTO est_inclus VALUES ('series_2603', 'CI_Citation_1362', 9); INSERT INTO est_inclus VALUES ('CI_Series_2604', 'series_2603', 0); INSERT INTO est_inclus VALUES ('name_2605', 'CI_Series_2604', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2606', 'CI_Series_2604', 2); INSERT INTO est_inclus VALUES ('page_2607', 'CI_Series_2604', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2608', 'CI_Citation_1362', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2609', 'CI_Citation_1362', 11); INSERT INTO est_inclus VALUES ('ISBN_2610', 'CI_Citation_1362', 12); INSERT INTO est_inclus VALUES ('ISSN_2611', 'CI_Citation_1362', 13); INSERT INTO est_inclus VALUES ('individualName_2612', 'CI_ResponsibleParty_1379', 1); INSERT INTO est_inclus VALUES ('organisationName_2613', 'CI_ResponsibleParty_1379', 2); INSERT INTO est_inclus VALUES ('positionName_2614', 'CI_ResponsibleParty_1379', 3); INSERT INTO est_inclus VALUES ('contactInfo_2615', 'CI_ResponsibleParty_1379', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2616', 'contactInfo_2615', 0); INSERT INTO est_inclus VALUES ('phone_2617', 'CI_Contact_2616', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2618', 'phone_2617', 0); INSERT INTO est_inclus VALUES ('voice_2619', 'CI_Telephone_2618', 1); INSERT INTO est_inclus VALUES ('facsimile_2620', 'CI_Telephone_2618', 2); INSERT INTO est_inclus VALUES ('address_2621', 'CI_Contact_2616', 2); INSERT INTO est_inclus VALUES ('CI_Address_2622', 'address_2621', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2623', 'CI_Address_2622', 1); INSERT INTO est_inclus VALUES ('city_2624', 'CI_Address_2622', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2625', 'CI_Address_2622', 3); INSERT INTO est_inclus VALUES ('postalCode_2626', 'CI_Address_2622', 4); INSERT INTO est_inclus VALUES ('country_2627', 'CI_Address_2622', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2628', 'CI_Address_2622', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2629', 'CI_Contact_2616', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2630', 'onlineRessource_2629', 0); INSERT INTO est_inclus VALUES ('linkage_2631', 'CI_OnlineResource_2630', 1); INSERT INTO est_inclus VALUES ('protocol_2632', 'CI_OnlineResource_2630', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2633', 'CI_OnlineResource_2630', 3); INSERT INTO est_inclus VALUES ('name_2634', 'CI_OnlineResource_2630', 4); INSERT INTO est_inclus VALUES ('description_2635', 'CI_OnlineResource_2630', 5); INSERT INTO est_inclus VALUES ('function_2636', 'CI_OnlineResource_2630', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2637', 'CI_Contact_2616', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2638', 'CI_Contact_2616', 5); INSERT INTO est_inclus VALUES ('role_2639', 'CI_ResponsibleParty_1379', 5); INSERT INTO est_inclus VALUES ('title_2640', 'CI_Citation_1391', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2641', 'CI_Citation_1391', 2); INSERT INTO est_inclus VALUES ('datec_2642', 'CI_Citation_1391', 3); INSERT INTO est_inclus VALUES ('CI_Date_2643', 'datec_2642', 0); INSERT INTO est_inclus VALUES ('date_2644', 'CI_Date_2643', 1); INSERT INTO est_inclus VALUES ('dateType_2645', 'CI_Date_2643', 2); INSERT INTO est_inclus VALUES ('edition_2646', 'CI_Citation_1391', 4); INSERT INTO est_inclus VALUES ('editionDate_2647', 'CI_Citation_1391', 5); INSERT INTO est_inclus VALUES ('identifier_2648', 'CI_Citation_1391', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2649', 'identifier_2648', 0); INSERT INTO est_inclus VALUES ('authority_2650', 'MD_Identifier_2649', 1); INSERT INTO est_inclus VALUES ('code_2651', 'MD_Identifier_2649', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2652', 'CI_Citation_1391', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2653', 'citedResponsibleParty_2652', 0); INSERT INTO est_inclus VALUES ('presentationForm_2654', 'CI_Citation_1391', 8); INSERT INTO est_inclus VALUES ('series_2655', 'CI_Citation_1391', 9); INSERT INTO est_inclus VALUES ('CI_Series_2656', 'series_2655', 0); INSERT INTO est_inclus VALUES ('name_2657', 'CI_Series_2656', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2658', 'CI_Series_2656', 2); INSERT INTO est_inclus VALUES ('page_2659', 'CI_Series_2656', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2660', 'CI_Citation_1391', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2661', 'CI_Citation_1391', 11); INSERT INTO est_inclus VALUES ('ISBN_2662', 'CI_Citation_1391', 12); INSERT INTO est_inclus VALUES ('ISSN_2663', 'CI_Citation_1391', 13); INSERT INTO est_inclus VALUES ('title_2664', 'CI_Citation_1394', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2665', 'CI_Citation_1394', 2); INSERT INTO est_inclus VALUES ('datec_2666', 'CI_Citation_1394', 3); INSERT INTO est_inclus VALUES ('CI_Date_2667', 'datec_2666', 0); INSERT INTO est_inclus VALUES ('date_2668', 'CI_Date_2667', 1); INSERT INTO est_inclus VALUES ('dateType_2669', 'CI_Date_2667', 2); INSERT INTO est_inclus VALUES ('edition_2670', 'CI_Citation_1394', 4); INSERT INTO est_inclus VALUES ('editionDate_2671', 'CI_Citation_1394', 5); INSERT INTO est_inclus VALUES ('identifier_2672', 'CI_Citation_1394', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2673', 'identifier_2672', 0); INSERT INTO est_inclus VALUES ('authority_2674', 'MD_Identifier_2673', 1); INSERT INTO est_inclus VALUES ('code_2675', 'MD_Identifier_2673', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2676', 'CI_Citation_1394', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2677', 'citedResponsibleParty_2676', 0); INSERT INTO est_inclus VALUES ('presentationForm_2678', 'CI_Citation_1394', 8); INSERT INTO est_inclus VALUES ('series_2679', 'CI_Citation_1394', 9); INSERT INTO est_inclus VALUES ('CI_Series_2680', 'series_2679', 0); INSERT INTO est_inclus VALUES ('name_2681', 'CI_Series_2680', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2682', 'CI_Series_2680', 2); INSERT INTO est_inclus VALUES ('page_2683', 'CI_Series_2680', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2684', 'CI_Citation_1394', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2685', 'CI_Citation_1394', 11); INSERT INTO est_inclus VALUES ('ISBN_2686', 'CI_Citation_1394', 12); INSERT INTO est_inclus VALUES ('ISSN_2687', 'CI_Citation_1394', 13); INSERT INTO est_inclus VALUES ('title_2688', 'CI_Citation_1397', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2689', 'CI_Citation_1397', 2); INSERT INTO est_inclus VALUES ('datec_2690', 'CI_Citation_1397', 3); INSERT INTO est_inclus VALUES ('CI_Date_2691', 'datec_2690', 0); INSERT INTO est_inclus VALUES ('date_2692', 'CI_Date_2691', 1); INSERT INTO est_inclus VALUES ('dateType_2693', 'CI_Date_2691', 2); INSERT INTO est_inclus VALUES ('edition_2694', 'CI_Citation_1397', 4); INSERT INTO est_inclus VALUES ('editionDate_2695', 'CI_Citation_1397', 5); INSERT INTO est_inclus VALUES ('identifier_2696', 'CI_Citation_1397', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2697', 'identifier_2696', 0); INSERT INTO est_inclus VALUES ('authority_2698', 'MD_Identifier_2697', 1); INSERT INTO est_inclus VALUES ('code_2699', 'MD_Identifier_2697', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2700', 'CI_Citation_1397', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2701', 'citedResponsibleParty_2700', 0); INSERT INTO est_inclus VALUES ('presentationForm_2702', 'CI_Citation_1397', 8); INSERT INTO est_inclus VALUES ('series_2703', 'CI_Citation_1397', 9); INSERT INTO est_inclus VALUES ('CI_Series_2704', 'series_2703', 0); INSERT INTO est_inclus VALUES ('name_2705', 'CI_Series_2704', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2706', 'CI_Series_2704', 2); INSERT INTO est_inclus VALUES ('page_2707', 'CI_Series_2704', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2708', 'CI_Citation_1397', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2709', 'CI_Citation_1397', 11); INSERT INTO est_inclus VALUES ('ISBN_2710', 'CI_Citation_1397', 12); INSERT INTO est_inclus VALUES ('ISSN_2711', 'CI_Citation_1397', 13); INSERT INTO est_inclus VALUES ('individualName_2712', 'CI_ResponsibleParty_1412', 1); INSERT INTO est_inclus VALUES ('organisationName_2713', 'CI_ResponsibleParty_1412', 2); INSERT INTO est_inclus VALUES ('positionName_2714', 'CI_ResponsibleParty_1412', 3); INSERT INTO est_inclus VALUES ('contactInfo_2715', 'CI_ResponsibleParty_1412', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2716', 'contactInfo_2715', 0); INSERT INTO est_inclus VALUES ('phone_2717', 'CI_Contact_2716', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2718', 'phone_2717', 0); INSERT INTO est_inclus VALUES ('voice_2719', 'CI_Telephone_2718', 1); INSERT INTO est_inclus VALUES ('facsimile_2720', 'CI_Telephone_2718', 2); INSERT INTO est_inclus VALUES ('address_2721', 'CI_Contact_2716', 2); INSERT INTO est_inclus VALUES ('CI_Address_2722', 'address_2721', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2723', 'CI_Address_2722', 1); INSERT INTO est_inclus VALUES ('city_2724', 'CI_Address_2722', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2725', 'CI_Address_2722', 3); INSERT INTO est_inclus VALUES ('postalCode_2726', 'CI_Address_2722', 4); INSERT INTO est_inclus VALUES ('country_2727', 'CI_Address_2722', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2728', 'CI_Address_2722', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2729', 'CI_Contact_2716', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2730', 'onlineRessource_2729', 0); INSERT INTO est_inclus VALUES ('linkage_2731', 'CI_OnlineResource_2730', 1); INSERT INTO est_inclus VALUES ('protocol_2732', 'CI_OnlineResource_2730', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2733', 'CI_OnlineResource_2730', 3); INSERT INTO est_inclus VALUES ('name_2734', 'CI_OnlineResource_2730', 4); INSERT INTO est_inclus VALUES ('description_2735', 'CI_OnlineResource_2730', 5); INSERT INTO est_inclus VALUES ('function_2736', 'CI_OnlineResource_2730', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2737', 'CI_Contact_2716', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2738', 'CI_Contact_2716', 5); INSERT INTO est_inclus VALUES ('role_2739', 'CI_ResponsibleParty_1412', 5); INSERT INTO est_inclus VALUES ('title_2740', 'CI_Citation_1427', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2741', 'CI_Citation_1427', 2); INSERT INTO est_inclus VALUES ('datec_2742', 'CI_Citation_1427', 3); INSERT INTO est_inclus VALUES ('CI_Date_2743', 'datec_2742', 0); INSERT INTO est_inclus VALUES ('date_2744', 'CI_Date_2743', 1); INSERT INTO est_inclus VALUES ('dateType_2745', 'CI_Date_2743', 2); INSERT INTO est_inclus VALUES ('edition_2746', 'CI_Citation_1427', 4); INSERT INTO est_inclus VALUES ('editionDate_2747', 'CI_Citation_1427', 5); INSERT INTO est_inclus VALUES ('identifier_2748', 'CI_Citation_1427', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2749', 'identifier_2748', 0); INSERT INTO est_inclus VALUES ('authority_2750', 'MD_Identifier_2749', 1); INSERT INTO est_inclus VALUES ('code_2751', 'MD_Identifier_2749', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2752', 'CI_Citation_1427', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2753', 'citedResponsibleParty_2752', 0); INSERT INTO est_inclus VALUES ('presentationForm_2754', 'CI_Citation_1427', 8); INSERT INTO est_inclus VALUES ('series_2755', 'CI_Citation_1427', 9); INSERT INTO est_inclus VALUES ('CI_Series_2756', 'series_2755', 0); INSERT INTO est_inclus VALUES ('name_2757', 'CI_Series_2756', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2758', 'CI_Series_2756', 2); INSERT INTO est_inclus VALUES ('page_2759', 'CI_Series_2756', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2760', 'CI_Citation_1427', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2761', 'CI_Citation_1427', 11); INSERT INTO est_inclus VALUES ('ISBN_2762', 'CI_Citation_1427', 12); INSERT INTO est_inclus VALUES ('ISSN_2763', 'CI_Citation_1427', 13); INSERT INTO est_inclus VALUES ('title_2764', 'CI_Citation_1434', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2765', 'CI_Citation_1434', 2); INSERT INTO est_inclus VALUES ('datec_2766', 'CI_Citation_1434', 3); INSERT INTO est_inclus VALUES ('CI_Date_2767', 'datec_2766', 0); INSERT INTO est_inclus VALUES ('date_2768', 'CI_Date_2767', 1); INSERT INTO est_inclus VALUES ('dateType_2769', 'CI_Date_2767', 2); INSERT INTO est_inclus VALUES ('edition_2770', 'CI_Citation_1434', 4); INSERT INTO est_inclus VALUES ('editionDate_2771', 'CI_Citation_1434', 5); INSERT INTO est_inclus VALUES ('identifier_2772', 'CI_Citation_1434', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2773', 'identifier_2772', 0); INSERT INTO est_inclus VALUES ('authority_2774', 'MD_Identifier_2773', 1); INSERT INTO est_inclus VALUES ('code_2775', 'MD_Identifier_2773', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2776', 'CI_Citation_1434', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2777', 'citedResponsibleParty_2776', 0); INSERT INTO est_inclus VALUES ('presentationForm_2778', 'CI_Citation_1434', 8); INSERT INTO est_inclus VALUES ('series_2779', 'CI_Citation_1434', 9); INSERT INTO est_inclus VALUES ('CI_Series_2780', 'series_2779', 0); INSERT INTO est_inclus VALUES ('name_2781', 'CI_Series_2780', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2782', 'CI_Series_2780', 2); INSERT INTO est_inclus VALUES ('page_2783', 'CI_Series_2780', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2784', 'CI_Citation_1434', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2785', 'CI_Citation_1434', 11); INSERT INTO est_inclus VALUES ('ISBN_2786', 'CI_Citation_1434', 12); INSERT INTO est_inclus VALUES ('ISSN_2787', 'CI_Citation_1434', 13); INSERT INTO est_inclus VALUES ('individualName_2788', 'CI_ResponsibleParty_1449', 1); INSERT INTO est_inclus VALUES ('organisationName_2789', 'CI_ResponsibleParty_1449', 2); INSERT INTO est_inclus VALUES ('positionName_2790', 'CI_ResponsibleParty_1449', 3); INSERT INTO est_inclus VALUES ('contactInfo_2791', 'CI_ResponsibleParty_1449', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2792', 'contactInfo_2791', 0); INSERT INTO est_inclus VALUES ('phone_2793', 'CI_Contact_2792', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2794', 'phone_2793', 0); INSERT INTO est_inclus VALUES ('voice_2795', 'CI_Telephone_2794', 1); INSERT INTO est_inclus VALUES ('facsimile_2796', 'CI_Telephone_2794', 2); INSERT INTO est_inclus VALUES ('address_2797', 'CI_Contact_2792', 2); INSERT INTO est_inclus VALUES ('CI_Address_2798', 'address_2797', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2799', 'CI_Address_2798', 1); INSERT INTO est_inclus VALUES ('city_2800', 'CI_Address_2798', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2801', 'CI_Address_2798', 3); INSERT INTO est_inclus VALUES ('postalCode_2802', 'CI_Address_2798', 4); INSERT INTO est_inclus VALUES ('country_2803', 'CI_Address_2798', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2804', 'CI_Address_2798', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2805', 'CI_Contact_2792', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2806', 'onlineRessource_2805', 0); INSERT INTO est_inclus VALUES ('linkage_2807', 'CI_OnlineResource_2806', 1); INSERT INTO est_inclus VALUES ('protocol_2808', 'CI_OnlineResource_2806', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2809', 'CI_OnlineResource_2806', 3); INSERT INTO est_inclus VALUES ('name_2810', 'CI_OnlineResource_2806', 4); INSERT INTO est_inclus VALUES ('description_2811', 'CI_OnlineResource_2806', 5); INSERT INTO est_inclus VALUES ('function_2812', 'CI_OnlineResource_2806', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2813', 'CI_Contact_2792', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2814', 'CI_Contact_2792', 5); INSERT INTO est_inclus VALUES ('role_2815', 'CI_ResponsibleParty_1449', 5); INSERT INTO est_inclus VALUES ('title_2816', 'CI_Citation_1464', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2817', 'CI_Citation_1464', 2); INSERT INTO est_inclus VALUES ('datec_2818', 'CI_Citation_1464', 3); INSERT INTO est_inclus VALUES ('CI_Date_2819', 'datec_2818', 0); INSERT INTO est_inclus VALUES ('date_2820', 'CI_Date_2819', 1); INSERT INTO est_inclus VALUES ('dateType_2821', 'CI_Date_2819', 2); INSERT INTO est_inclus VALUES ('edition_2822', 'CI_Citation_1464', 4); INSERT INTO est_inclus VALUES ('editionDate_2823', 'CI_Citation_1464', 5); INSERT INTO est_inclus VALUES ('identifier_2824', 'CI_Citation_1464', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2825', 'identifier_2824', 0); INSERT INTO est_inclus VALUES ('authority_2826', 'MD_Identifier_2825', 1); INSERT INTO est_inclus VALUES ('code_2827', 'MD_Identifier_2825', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2828', 'CI_Citation_1464', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2829', 'citedResponsibleParty_2828', 0); INSERT INTO est_inclus VALUES ('presentationForm_2830', 'CI_Citation_1464', 8); INSERT INTO est_inclus VALUES ('series_2831', 'CI_Citation_1464', 9); INSERT INTO est_inclus VALUES ('CI_Series_2832', 'series_2831', 0); INSERT INTO est_inclus VALUES ('name_2833', 'CI_Series_2832', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2834', 'CI_Series_2832', 2); INSERT INTO est_inclus VALUES ('page_2835', 'CI_Series_2832', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2836', 'CI_Citation_1464', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2837', 'CI_Citation_1464', 11); INSERT INTO est_inclus VALUES ('ISBN_2838', 'CI_Citation_1464', 12); INSERT INTO est_inclus VALUES ('ISSN_2839', 'CI_Citation_1464', 13); INSERT INTO est_inclus VALUES ('title_2840', 'CI_Citation_1471', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2841', 'CI_Citation_1471', 2); INSERT INTO est_inclus VALUES ('datec_2842', 'CI_Citation_1471', 3); INSERT INTO est_inclus VALUES ('CI_Date_2843', 'datec_2842', 0); INSERT INTO est_inclus VALUES ('date_2844', 'CI_Date_2843', 1); INSERT INTO est_inclus VALUES ('dateType_2845', 'CI_Date_2843', 2); INSERT INTO est_inclus VALUES ('edition_2846', 'CI_Citation_1471', 4); INSERT INTO est_inclus VALUES ('editionDate_2847', 'CI_Citation_1471', 5); INSERT INTO est_inclus VALUES ('identifier_2848', 'CI_Citation_1471', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2849', 'identifier_2848', 0); INSERT INTO est_inclus VALUES ('authority_2850', 'MD_Identifier_2849', 1); INSERT INTO est_inclus VALUES ('code_2851', 'MD_Identifier_2849', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2852', 'CI_Citation_1471', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2853', 'citedResponsibleParty_2852', 0); INSERT INTO est_inclus VALUES ('presentationForm_2854', 'CI_Citation_1471', 8); INSERT INTO est_inclus VALUES ('series_2855', 'CI_Citation_1471', 9); INSERT INTO est_inclus VALUES ('CI_Series_2856', 'series_2855', 0); INSERT INTO est_inclus VALUES ('name_2857', 'CI_Series_2856', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2858', 'CI_Series_2856', 2); INSERT INTO est_inclus VALUES ('page_2859', 'CI_Series_2856', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2860', 'CI_Citation_1471', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2861', 'CI_Citation_1471', 11); INSERT INTO est_inclus VALUES ('ISBN_2862', 'CI_Citation_1471', 12); INSERT INTO est_inclus VALUES ('ISSN_2863', 'CI_Citation_1471', 13); INSERT INTO est_inclus VALUES ('individualName_2864', 'CI_ResponsibleParty_1486', 1); INSERT INTO est_inclus VALUES ('organisationName_2865', 'CI_ResponsibleParty_1486', 2); INSERT INTO est_inclus VALUES ('positionName_2866', 'CI_ResponsibleParty_1486', 3); INSERT INTO est_inclus VALUES ('contactInfo_2867', 'CI_ResponsibleParty_1486', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2868', 'contactInfo_2867', 0); INSERT INTO est_inclus VALUES ('phone_2869', 'CI_Contact_2868', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2870', 'phone_2869', 0); INSERT INTO est_inclus VALUES ('voice_2871', 'CI_Telephone_2870', 1); INSERT INTO est_inclus VALUES ('facsimile_2872', 'CI_Telephone_2870', 2); INSERT INTO est_inclus VALUES ('address_2873', 'CI_Contact_2868', 2); INSERT INTO est_inclus VALUES ('CI_Address_2874', 'address_2873', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2875', 'CI_Address_2874', 1); INSERT INTO est_inclus VALUES ('city_2876', 'CI_Address_2874', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2877', 'CI_Address_2874', 3); INSERT INTO est_inclus VALUES ('postalCode_2878', 'CI_Address_2874', 4); INSERT INTO est_inclus VALUES ('country_2879', 'CI_Address_2874', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2880', 'CI_Address_2874', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2881', 'CI_Contact_2868', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2882', 'onlineRessource_2881', 0); INSERT INTO est_inclus VALUES ('linkage_2883', 'CI_OnlineResource_2882', 1); INSERT INTO est_inclus VALUES ('protocol_2884', 'CI_OnlineResource_2882', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2885', 'CI_OnlineResource_2882', 3); INSERT INTO est_inclus VALUES ('name_2886', 'CI_OnlineResource_2882', 4); INSERT INTO est_inclus VALUES ('description_2887', 'CI_OnlineResource_2882', 5); INSERT INTO est_inclus VALUES ('function_2888', 'CI_OnlineResource_2882', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2889', 'CI_Contact_2868', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2890', 'CI_Contact_2868', 5); INSERT INTO est_inclus VALUES ('role_2891', 'CI_ResponsibleParty_1486', 5); INSERT INTO est_inclus VALUES ('title_2892', 'CI_Citation_1501', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2893', 'CI_Citation_1501', 2); INSERT INTO est_inclus VALUES ('datec_2894', 'CI_Citation_1501', 3); INSERT INTO est_inclus VALUES ('CI_Date_2895', 'datec_2894', 0); INSERT INTO est_inclus VALUES ('date_2896', 'CI_Date_2895', 1); INSERT INTO est_inclus VALUES ('dateType_2897', 'CI_Date_2895', 2); INSERT INTO est_inclus VALUES ('edition_2898', 'CI_Citation_1501', 4); INSERT INTO est_inclus VALUES ('editionDate_2899', 'CI_Citation_1501', 5); INSERT INTO est_inclus VALUES ('identifier_2900', 'CI_Citation_1501', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2901', 'identifier_2900', 0); INSERT INTO est_inclus VALUES ('authority_2902', 'MD_Identifier_2901', 1); INSERT INTO est_inclus VALUES ('code_2903', 'MD_Identifier_2901', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2904', 'CI_Citation_1501', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2905', 'citedResponsibleParty_2904', 0); INSERT INTO est_inclus VALUES ('presentationForm_2906', 'CI_Citation_1501', 8); INSERT INTO est_inclus VALUES ('series_2907', 'CI_Citation_1501', 9); INSERT INTO est_inclus VALUES ('CI_Series_2908', 'series_2907', 0); INSERT INTO est_inclus VALUES ('name_2909', 'CI_Series_2908', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2910', 'CI_Series_2908', 2); INSERT INTO est_inclus VALUES ('page_2911', 'CI_Series_2908', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2912', 'CI_Citation_1501', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2913', 'CI_Citation_1501', 11); INSERT INTO est_inclus VALUES ('ISBN_2914', 'CI_Citation_1501', 12); INSERT INTO est_inclus VALUES ('ISSN_2915', 'CI_Citation_1501', 13); INSERT INTO est_inclus VALUES ('title_2916', 'CI_Citation_1508', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2917', 'CI_Citation_1508', 2); INSERT INTO est_inclus VALUES ('datec_2918', 'CI_Citation_1508', 3); INSERT INTO est_inclus VALUES ('CI_Date_2919', 'datec_2918', 0); INSERT INTO est_inclus VALUES ('date_2920', 'CI_Date_2919', 1); INSERT INTO est_inclus VALUES ('dateType_2921', 'CI_Date_2919', 2); INSERT INTO est_inclus VALUES ('edition_2922', 'CI_Citation_1508', 4); INSERT INTO est_inclus VALUES ('editionDate_2923', 'CI_Citation_1508', 5); INSERT INTO est_inclus VALUES ('identifier_2924', 'CI_Citation_1508', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2925', 'identifier_2924', 0); INSERT INTO est_inclus VALUES ('authority_2926', 'MD_Identifier_2925', 1); INSERT INTO est_inclus VALUES ('code_2927', 'MD_Identifier_2925', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2928', 'CI_Citation_1508', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2929', 'citedResponsibleParty_2928', 0); INSERT INTO est_inclus VALUES ('presentationForm_2930', 'CI_Citation_1508', 8); INSERT INTO est_inclus VALUES ('series_2931', 'CI_Citation_1508', 9); INSERT INTO est_inclus VALUES ('CI_Series_2932', 'series_2931', 0); INSERT INTO est_inclus VALUES ('name_2933', 'CI_Series_2932', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2934', 'CI_Series_2932', 2); INSERT INTO est_inclus VALUES ('page_2935', 'CI_Series_2932', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2936', 'CI_Citation_1508', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2937', 'CI_Citation_1508', 11); INSERT INTO est_inclus VALUES ('ISBN_2938', 'CI_Citation_1508', 12); INSERT INTO est_inclus VALUES ('ISSN_2939', 'CI_Citation_1508', 13); INSERT INTO est_inclus VALUES ('individualName_2940', 'CI_ResponsibleParty_1523', 1); INSERT INTO est_inclus VALUES ('organisationName_2941', 'CI_ResponsibleParty_1523', 2); INSERT INTO est_inclus VALUES ('positionName_2942', 'CI_ResponsibleParty_1523', 3); INSERT INTO est_inclus VALUES ('contactInfo_2943', 'CI_ResponsibleParty_1523', 4); INSERT INTO est_inclus VALUES ('CI_Contact_2944', 'contactInfo_2943', 0); INSERT INTO est_inclus VALUES ('phone_2945', 'CI_Contact_2944', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_2946', 'phone_2945', 0); INSERT INTO est_inclus VALUES ('voice_2947', 'CI_Telephone_2946', 1); INSERT INTO est_inclus VALUES ('facsimile_2948', 'CI_Telephone_2946', 2); INSERT INTO est_inclus VALUES ('address_2949', 'CI_Contact_2944', 2); INSERT INTO est_inclus VALUES ('CI_Address_2950', 'address_2949', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_2951', 'CI_Address_2950', 1); INSERT INTO est_inclus VALUES ('city_2952', 'CI_Address_2950', 2); INSERT INTO est_inclus VALUES ('administrativeArea_2953', 'CI_Address_2950', 3); INSERT INTO est_inclus VALUES ('postalCode_2954', 'CI_Address_2950', 4); INSERT INTO est_inclus VALUES ('country_2955', 'CI_Address_2950', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_2956', 'CI_Address_2950', 6); INSERT INTO est_inclus VALUES ('onlineRessource_2957', 'CI_Contact_2944', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_2958', 'onlineRessource_2957', 0); INSERT INTO est_inclus VALUES ('linkage_2959', 'CI_OnlineResource_2958', 1); INSERT INTO est_inclus VALUES ('protocol_2960', 'CI_OnlineResource_2958', 2); INSERT INTO est_inclus VALUES ('applicationProfile_2961', 'CI_OnlineResource_2958', 3); INSERT INTO est_inclus VALUES ('name_2962', 'CI_OnlineResource_2958', 4); INSERT INTO est_inclus VALUES ('description_2963', 'CI_OnlineResource_2958', 5); INSERT INTO est_inclus VALUES ('function_2964', 'CI_OnlineResource_2958', 6); INSERT INTO est_inclus VALUES ('hoursOfService_2965', 'CI_Contact_2944', 4); INSERT INTO est_inclus VALUES ('contactInstructions_2966', 'CI_Contact_2944', 5); INSERT INTO est_inclus VALUES ('role_2967', 'CI_ResponsibleParty_1523', 5); INSERT INTO est_inclus VALUES ('title_2968', 'CI_Citation_1538', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2969', 'CI_Citation_1538', 2); INSERT INTO est_inclus VALUES ('datec_2970', 'CI_Citation_1538', 3); INSERT INTO est_inclus VALUES ('CI_Date_2971', 'datec_2970', 0); INSERT INTO est_inclus VALUES ('date_2972', 'CI_Date_2971', 1); INSERT INTO est_inclus VALUES ('dateType_2973', 'CI_Date_2971', 2); INSERT INTO est_inclus VALUES ('edition_2974', 'CI_Citation_1538', 4); INSERT INTO est_inclus VALUES ('editionDate_2975', 'CI_Citation_1538', 5); INSERT INTO est_inclus VALUES ('identifier_2976', 'CI_Citation_1538', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_2977', 'identifier_2976', 0); INSERT INTO est_inclus VALUES ('authority_2978', 'MD_Identifier_2977', 1); INSERT INTO est_inclus VALUES ('code_2979', 'MD_Identifier_2977', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_2980', 'CI_Citation_1538', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_2981', 'citedResponsibleParty_2980', 0); INSERT INTO est_inclus VALUES ('presentationForm_2982', 'CI_Citation_1538', 8); INSERT INTO est_inclus VALUES ('series_2983', 'CI_Citation_1538', 9); INSERT INTO est_inclus VALUES ('CI_Series_2984', 'series_2983', 0); INSERT INTO est_inclus VALUES ('name_2985', 'CI_Series_2984', 1); INSERT INTO est_inclus VALUES ('issueIdentification_2986', 'CI_Series_2984', 2); INSERT INTO est_inclus VALUES ('page_2987', 'CI_Series_2984', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_2988', 'CI_Citation_1538', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_2989', 'CI_Citation_1538', 11); INSERT INTO est_inclus VALUES ('ISBN_2990', 'CI_Citation_1538', 12); INSERT INTO est_inclus VALUES ('ISSN_2991', 'CI_Citation_1538', 13); INSERT INTO est_inclus VALUES ('title_2992', 'CI_Citation_1545', 1); INSERT INTO est_inclus VALUES ('alternateTitle_2993', 'CI_Citation_1545', 2); INSERT INTO est_inclus VALUES ('datec_2994', 'CI_Citation_1545', 3); INSERT INTO est_inclus VALUES ('CI_Date_2995', 'datec_2994', 0); INSERT INTO est_inclus VALUES ('date_2996', 'CI_Date_2995', 1); INSERT INTO est_inclus VALUES ('dateType_2997', 'CI_Date_2995', 2); INSERT INTO est_inclus VALUES ('edition_2998', 'CI_Citation_1545', 4); INSERT INTO est_inclus VALUES ('editionDate_2999', 'CI_Citation_1545', 5); INSERT INTO est_inclus VALUES ('identifier_3000', 'CI_Citation_1545', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3001', 'identifier_3000', 0); INSERT INTO est_inclus VALUES ('authority_3002', 'MD_Identifier_3001', 1); INSERT INTO est_inclus VALUES ('code_3003', 'MD_Identifier_3001', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3004', 'CI_Citation_1545', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3005', 'citedResponsibleParty_3004', 0); INSERT INTO est_inclus VALUES ('presentationForm_3006', 'CI_Citation_1545', 8); INSERT INTO est_inclus VALUES ('series_3007', 'CI_Citation_1545', 9); INSERT INTO est_inclus VALUES ('CI_Series_3008', 'series_3007', 0); INSERT INTO est_inclus VALUES ('name_3009', 'CI_Series_3008', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3010', 'CI_Series_3008', 2); INSERT INTO est_inclus VALUES ('page_3011', 'CI_Series_3008', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3012', 'CI_Citation_1545', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3013', 'CI_Citation_1545', 11); INSERT INTO est_inclus VALUES ('ISBN_3014', 'CI_Citation_1545', 12); INSERT INTO est_inclus VALUES ('ISSN_3015', 'CI_Citation_1545', 13); INSERT INTO est_inclus VALUES ('individualName_3016', 'CI_ResponsibleParty_1560', 1); INSERT INTO est_inclus VALUES ('organisationName_3017', 'CI_ResponsibleParty_1560', 2); INSERT INTO est_inclus VALUES ('positionName_3018', 'CI_ResponsibleParty_1560', 3); INSERT INTO est_inclus VALUES ('contactInfo_3019', 'CI_ResponsibleParty_1560', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3020', 'contactInfo_3019', 0); INSERT INTO est_inclus VALUES ('phone_3021', 'CI_Contact_3020', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3022', 'phone_3021', 0); INSERT INTO est_inclus VALUES ('voice_3023', 'CI_Telephone_3022', 1); INSERT INTO est_inclus VALUES ('facsimile_3024', 'CI_Telephone_3022', 2); INSERT INTO est_inclus VALUES ('address_3025', 'CI_Contact_3020', 2); INSERT INTO est_inclus VALUES ('CI_Address_3026', 'address_3025', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3027', 'CI_Address_3026', 1); INSERT INTO est_inclus VALUES ('city_3028', 'CI_Address_3026', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3029', 'CI_Address_3026', 3); INSERT INTO est_inclus VALUES ('postalCode_3030', 'CI_Address_3026', 4); INSERT INTO est_inclus VALUES ('country_3031', 'CI_Address_3026', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3032', 'CI_Address_3026', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3033', 'CI_Contact_3020', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3034', 'onlineRessource_3033', 0); INSERT INTO est_inclus VALUES ('linkage_3035', 'CI_OnlineResource_3034', 1); INSERT INTO est_inclus VALUES ('protocol_3036', 'CI_OnlineResource_3034', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3037', 'CI_OnlineResource_3034', 3); INSERT INTO est_inclus VALUES ('name_3038', 'CI_OnlineResource_3034', 4); INSERT INTO est_inclus VALUES ('description_3039', 'CI_OnlineResource_3034', 5); INSERT INTO est_inclus VALUES ('function_3040', 'CI_OnlineResource_3034', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3041', 'CI_Contact_3020', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3042', 'CI_Contact_3020', 5); INSERT INTO est_inclus VALUES ('role_3043', 'CI_ResponsibleParty_1560', 5); INSERT INTO est_inclus VALUES ('title_3044', 'CI_Citation_1575', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3045', 'CI_Citation_1575', 2); INSERT INTO est_inclus VALUES ('datec_3046', 'CI_Citation_1575', 3); INSERT INTO est_inclus VALUES ('CI_Date_3047', 'datec_3046', 0); INSERT INTO est_inclus VALUES ('date_3048', 'CI_Date_3047', 1); INSERT INTO est_inclus VALUES ('dateType_3049', 'CI_Date_3047', 2); INSERT INTO est_inclus VALUES ('edition_3050', 'CI_Citation_1575', 4); INSERT INTO est_inclus VALUES ('editionDate_3051', 'CI_Citation_1575', 5); INSERT INTO est_inclus VALUES ('identifier_3052', 'CI_Citation_1575', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3053', 'identifier_3052', 0); INSERT INTO est_inclus VALUES ('authority_3054', 'MD_Identifier_3053', 1); INSERT INTO est_inclus VALUES ('code_3055', 'MD_Identifier_3053', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3056', 'CI_Citation_1575', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3057', 'citedResponsibleParty_3056', 0); INSERT INTO est_inclus VALUES ('presentationForm_3058', 'CI_Citation_1575', 8); INSERT INTO est_inclus VALUES ('series_3059', 'CI_Citation_1575', 9); INSERT INTO est_inclus VALUES ('CI_Series_3060', 'series_3059', 0); INSERT INTO est_inclus VALUES ('name_3061', 'CI_Series_3060', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3062', 'CI_Series_3060', 2); INSERT INTO est_inclus VALUES ('page_3063', 'CI_Series_3060', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3064', 'CI_Citation_1575', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3065', 'CI_Citation_1575', 11); INSERT INTO est_inclus VALUES ('ISBN_3066', 'CI_Citation_1575', 12); INSERT INTO est_inclus VALUES ('ISSN_3067', 'CI_Citation_1575', 13); INSERT INTO est_inclus VALUES ('title_3068', 'CI_Citation_1582', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3069', 'CI_Citation_1582', 2); INSERT INTO est_inclus VALUES ('datec_3070', 'CI_Citation_1582', 3); INSERT INTO est_inclus VALUES ('CI_Date_3071', 'datec_3070', 0); INSERT INTO est_inclus VALUES ('date_3072', 'CI_Date_3071', 1); INSERT INTO est_inclus VALUES ('dateType_3073', 'CI_Date_3071', 2); INSERT INTO est_inclus VALUES ('edition_3074', 'CI_Citation_1582', 4); INSERT INTO est_inclus VALUES ('editionDate_3075', 'CI_Citation_1582', 5); INSERT INTO est_inclus VALUES ('identifier_3076', 'CI_Citation_1582', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3077', 'identifier_3076', 0); INSERT INTO est_inclus VALUES ('authority_3078', 'MD_Identifier_3077', 1); INSERT INTO est_inclus VALUES ('code_3079', 'MD_Identifier_3077', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3080', 'CI_Citation_1582', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3081', 'citedResponsibleParty_3080', 0); INSERT INTO est_inclus VALUES ('presentationForm_3082', 'CI_Citation_1582', 8); INSERT INTO est_inclus VALUES ('series_3083', 'CI_Citation_1582', 9); INSERT INTO est_inclus VALUES ('CI_Series_3084', 'series_3083', 0); INSERT INTO est_inclus VALUES ('name_3085', 'CI_Series_3084', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3086', 'CI_Series_3084', 2); INSERT INTO est_inclus VALUES ('page_3087', 'CI_Series_3084', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3088', 'CI_Citation_1582', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3089', 'CI_Citation_1582', 11); INSERT INTO est_inclus VALUES ('ISBN_3090', 'CI_Citation_1582', 12); INSERT INTO est_inclus VALUES ('ISSN_3091', 'CI_Citation_1582', 13); INSERT INTO est_inclus VALUES ('individualName_3092', 'CI_ResponsibleParty_1597', 1); INSERT INTO est_inclus VALUES ('organisationName_3093', 'CI_ResponsibleParty_1597', 2); INSERT INTO est_inclus VALUES ('positionName_3094', 'CI_ResponsibleParty_1597', 3); INSERT INTO est_inclus VALUES ('contactInfo_3095', 'CI_ResponsibleParty_1597', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3096', 'contactInfo_3095', 0); INSERT INTO est_inclus VALUES ('phone_3097', 'CI_Contact_3096', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3098', 'phone_3097', 0); INSERT INTO est_inclus VALUES ('voice_3099', 'CI_Telephone_3098', 1); INSERT INTO est_inclus VALUES ('facsimile_3100', 'CI_Telephone_3098', 2); INSERT INTO est_inclus VALUES ('address_3101', 'CI_Contact_3096', 2); INSERT INTO est_inclus VALUES ('CI_Address_3102', 'address_3101', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3103', 'CI_Address_3102', 1); INSERT INTO est_inclus VALUES ('city_3104', 'CI_Address_3102', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3105', 'CI_Address_3102', 3); INSERT INTO est_inclus VALUES ('postalCode_3106', 'CI_Address_3102', 4); INSERT INTO est_inclus VALUES ('country_3107', 'CI_Address_3102', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3108', 'CI_Address_3102', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3109', 'CI_Contact_3096', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3110', 'onlineRessource_3109', 0); INSERT INTO est_inclus VALUES ('linkage_3111', 'CI_OnlineResource_3110', 1); INSERT INTO est_inclus VALUES ('protocol_3112', 'CI_OnlineResource_3110', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3113', 'CI_OnlineResource_3110', 3); INSERT INTO est_inclus VALUES ('name_3114', 'CI_OnlineResource_3110', 4); INSERT INTO est_inclus VALUES ('description_3115', 'CI_OnlineResource_3110', 5); INSERT INTO est_inclus VALUES ('function_3116', 'CI_OnlineResource_3110', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3117', 'CI_Contact_3096', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3118', 'CI_Contact_3096', 5); INSERT INTO est_inclus VALUES ('role_3119', 'CI_ResponsibleParty_1597', 5); INSERT INTO est_inclus VALUES ('title_3120', 'CI_Citation_1612', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3121', 'CI_Citation_1612', 2); INSERT INTO est_inclus VALUES ('datec_3122', 'CI_Citation_1612', 3); INSERT INTO est_inclus VALUES ('CI_Date_3123', 'datec_3122', 0); INSERT INTO est_inclus VALUES ('date_3124', 'CI_Date_3123', 1); INSERT INTO est_inclus VALUES ('dateType_3125', 'CI_Date_3123', 2); INSERT INTO est_inclus VALUES ('edition_3126', 'CI_Citation_1612', 4); INSERT INTO est_inclus VALUES ('editionDate_3127', 'CI_Citation_1612', 5); INSERT INTO est_inclus VALUES ('identifier_3128', 'CI_Citation_1612', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3129', 'identifier_3128', 0); INSERT INTO est_inclus VALUES ('authority_3130', 'MD_Identifier_3129', 1); INSERT INTO est_inclus VALUES ('code_3131', 'MD_Identifier_3129', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3132', 'CI_Citation_1612', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3133', 'citedResponsibleParty_3132', 0); INSERT INTO est_inclus VALUES ('presentationForm_3134', 'CI_Citation_1612', 8); INSERT INTO est_inclus VALUES ('series_3135', 'CI_Citation_1612', 9); INSERT INTO est_inclus VALUES ('CI_Series_3136', 'series_3135', 0); INSERT INTO est_inclus VALUES ('name_3137', 'CI_Series_3136', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3138', 'CI_Series_3136', 2); INSERT INTO est_inclus VALUES ('page_3139', 'CI_Series_3136', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3140', 'CI_Citation_1612', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3141', 'CI_Citation_1612', 11); INSERT INTO est_inclus VALUES ('ISBN_3142', 'CI_Citation_1612', 12); INSERT INTO est_inclus VALUES ('ISSN_3143', 'CI_Citation_1612', 13); INSERT INTO est_inclus VALUES ('title_3144', 'CI_Citation_1619', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3145', 'CI_Citation_1619', 2); INSERT INTO est_inclus VALUES ('datec_3146', 'CI_Citation_1619', 3); INSERT INTO est_inclus VALUES ('CI_Date_3147', 'datec_3146', 0); INSERT INTO est_inclus VALUES ('date_3148', 'CI_Date_3147', 1); INSERT INTO est_inclus VALUES ('dateType_3149', 'CI_Date_3147', 2); INSERT INTO est_inclus VALUES ('edition_3150', 'CI_Citation_1619', 4); INSERT INTO est_inclus VALUES ('editionDate_3151', 'CI_Citation_1619', 5); INSERT INTO est_inclus VALUES ('identifier_3152', 'CI_Citation_1619', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3153', 'identifier_3152', 0); INSERT INTO est_inclus VALUES ('authority_3154', 'MD_Identifier_3153', 1); INSERT INTO est_inclus VALUES ('code_3155', 'MD_Identifier_3153', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3156', 'CI_Citation_1619', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3157', 'citedResponsibleParty_3156', 0); INSERT INTO est_inclus VALUES ('presentationForm_3158', 'CI_Citation_1619', 8); INSERT INTO est_inclus VALUES ('series_3159', 'CI_Citation_1619', 9); INSERT INTO est_inclus VALUES ('CI_Series_3160', 'series_3159', 0); INSERT INTO est_inclus VALUES ('name_3161', 'CI_Series_3160', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3162', 'CI_Series_3160', 2); INSERT INTO est_inclus VALUES ('page_3163', 'CI_Series_3160', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3164', 'CI_Citation_1619', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3165', 'CI_Citation_1619', 11); INSERT INTO est_inclus VALUES ('ISBN_3166', 'CI_Citation_1619', 12); INSERT INTO est_inclus VALUES ('ISSN_3167', 'CI_Citation_1619', 13); INSERT INTO est_inclus VALUES ('individualName_3168', 'CI_ResponsibleParty_1634', 1); INSERT INTO est_inclus VALUES ('organisationName_3169', 'CI_ResponsibleParty_1634', 2); INSERT INTO est_inclus VALUES ('positionName_3170', 'CI_ResponsibleParty_1634', 3); INSERT INTO est_inclus VALUES ('contactInfo_3171', 'CI_ResponsibleParty_1634', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3172', 'contactInfo_3171', 0); INSERT INTO est_inclus VALUES ('phone_3173', 'CI_Contact_3172', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3174', 'phone_3173', 0); INSERT INTO est_inclus VALUES ('voice_3175', 'CI_Telephone_3174', 1); INSERT INTO est_inclus VALUES ('facsimile_3176', 'CI_Telephone_3174', 2); INSERT INTO est_inclus VALUES ('address_3177', 'CI_Contact_3172', 2); INSERT INTO est_inclus VALUES ('CI_Address_3178', 'address_3177', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3179', 'CI_Address_3178', 1); INSERT INTO est_inclus VALUES ('city_3180', 'CI_Address_3178', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3181', 'CI_Address_3178', 3); INSERT INTO est_inclus VALUES ('postalCode_3182', 'CI_Address_3178', 4); INSERT INTO est_inclus VALUES ('country_3183', 'CI_Address_3178', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3184', 'CI_Address_3178', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3185', 'CI_Contact_3172', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3186', 'onlineRessource_3185', 0); INSERT INTO est_inclus VALUES ('linkage_3187', 'CI_OnlineResource_3186', 1); INSERT INTO est_inclus VALUES ('protocol_3188', 'CI_OnlineResource_3186', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3189', 'CI_OnlineResource_3186', 3); INSERT INTO est_inclus VALUES ('name_3190', 'CI_OnlineResource_3186', 4); INSERT INTO est_inclus VALUES ('description_3191', 'CI_OnlineResource_3186', 5); INSERT INTO est_inclus VALUES ('function_3192', 'CI_OnlineResource_3186', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3193', 'CI_Contact_3172', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3194', 'CI_Contact_3172', 5); INSERT INTO est_inclus VALUES ('role_3195', 'CI_ResponsibleParty_1634', 5); INSERT INTO est_inclus VALUES ('title_3196', 'CI_Citation_1649', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3197', 'CI_Citation_1649', 2); INSERT INTO est_inclus VALUES ('datec_3198', 'CI_Citation_1649', 3); INSERT INTO est_inclus VALUES ('CI_Date_3199', 'datec_3198', 0); INSERT INTO est_inclus VALUES ('date_3200', 'CI_Date_3199', 1); INSERT INTO est_inclus VALUES ('dateType_3201', 'CI_Date_3199', 2); INSERT INTO est_inclus VALUES ('edition_3202', 'CI_Citation_1649', 4); INSERT INTO est_inclus VALUES ('editionDate_3203', 'CI_Citation_1649', 5); INSERT INTO est_inclus VALUES ('identifier_3204', 'CI_Citation_1649', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3205', 'identifier_3204', 0); INSERT INTO est_inclus VALUES ('authority_3206', 'MD_Identifier_3205', 1); INSERT INTO est_inclus VALUES ('code_3207', 'MD_Identifier_3205', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3208', 'CI_Citation_1649', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3209', 'citedResponsibleParty_3208', 0); INSERT INTO est_inclus VALUES ('presentationForm_3210', 'CI_Citation_1649', 8); INSERT INTO est_inclus VALUES ('series_3211', 'CI_Citation_1649', 9); INSERT INTO est_inclus VALUES ('CI_Series_3212', 'series_3211', 0); INSERT INTO est_inclus VALUES ('name_3213', 'CI_Series_3212', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3214', 'CI_Series_3212', 2); INSERT INTO est_inclus VALUES ('page_3215', 'CI_Series_3212', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3216', 'CI_Citation_1649', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3217', 'CI_Citation_1649', 11); INSERT INTO est_inclus VALUES ('ISBN_3218', 'CI_Citation_1649', 12); INSERT INTO est_inclus VALUES ('ISSN_3219', 'CI_Citation_1649', 13); INSERT INTO est_inclus VALUES ('title_3220', 'CI_Citation_1656', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3221', 'CI_Citation_1656', 2); INSERT INTO est_inclus VALUES ('datec_3222', 'CI_Citation_1656', 3); INSERT INTO est_inclus VALUES ('CI_Date_3223', 'datec_3222', 0); INSERT INTO est_inclus VALUES ('date_3224', 'CI_Date_3223', 1); INSERT INTO est_inclus VALUES ('dateType_3225', 'CI_Date_3223', 2); INSERT INTO est_inclus VALUES ('edition_3226', 'CI_Citation_1656', 4); INSERT INTO est_inclus VALUES ('editionDate_3227', 'CI_Citation_1656', 5); INSERT INTO est_inclus VALUES ('identifier_3228', 'CI_Citation_1656', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3229', 'identifier_3228', 0); INSERT INTO est_inclus VALUES ('authority_3230', 'MD_Identifier_3229', 1); INSERT INTO est_inclus VALUES ('code_3231', 'MD_Identifier_3229', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3232', 'CI_Citation_1656', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3233', 'citedResponsibleParty_3232', 0); INSERT INTO est_inclus VALUES ('presentationForm_3234', 'CI_Citation_1656', 8); INSERT INTO est_inclus VALUES ('series_3235', 'CI_Citation_1656', 9); INSERT INTO est_inclus VALUES ('CI_Series_3236', 'series_3235', 0); INSERT INTO est_inclus VALUES ('name_3237', 'CI_Series_3236', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3238', 'CI_Series_3236', 2); INSERT INTO est_inclus VALUES ('page_3239', 'CI_Series_3236', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3240', 'CI_Citation_1656', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3241', 'CI_Citation_1656', 11); INSERT INTO est_inclus VALUES ('ISBN_3242', 'CI_Citation_1656', 12); INSERT INTO est_inclus VALUES ('ISSN_3243', 'CI_Citation_1656', 13); INSERT INTO est_inclus VALUES ('individualName_3244', 'CI_ResponsibleParty_1671', 1); INSERT INTO est_inclus VALUES ('organisationName_3245', 'CI_ResponsibleParty_1671', 2); INSERT INTO est_inclus VALUES ('positionName_3246', 'CI_ResponsibleParty_1671', 3); INSERT INTO est_inclus VALUES ('contactInfo_3247', 'CI_ResponsibleParty_1671', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3248', 'contactInfo_3247', 0); INSERT INTO est_inclus VALUES ('phone_3249', 'CI_Contact_3248', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3250', 'phone_3249', 0); INSERT INTO est_inclus VALUES ('voice_3251', 'CI_Telephone_3250', 1); INSERT INTO est_inclus VALUES ('facsimile_3252', 'CI_Telephone_3250', 2); INSERT INTO est_inclus VALUES ('address_3253', 'CI_Contact_3248', 2); INSERT INTO est_inclus VALUES ('CI_Address_3254', 'address_3253', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3255', 'CI_Address_3254', 1); INSERT INTO est_inclus VALUES ('city_3256', 'CI_Address_3254', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3257', 'CI_Address_3254', 3); INSERT INTO est_inclus VALUES ('postalCode_3258', 'CI_Address_3254', 4); INSERT INTO est_inclus VALUES ('country_3259', 'CI_Address_3254', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3260', 'CI_Address_3254', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3261', 'CI_Contact_3248', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3262', 'onlineRessource_3261', 0); INSERT INTO est_inclus VALUES ('linkage_3263', 'CI_OnlineResource_3262', 1); INSERT INTO est_inclus VALUES ('protocol_3264', 'CI_OnlineResource_3262', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3265', 'CI_OnlineResource_3262', 3); INSERT INTO est_inclus VALUES ('name_3266', 'CI_OnlineResource_3262', 4); INSERT INTO est_inclus VALUES ('description_3267', 'CI_OnlineResource_3262', 5); INSERT INTO est_inclus VALUES ('function_3268', 'CI_OnlineResource_3262', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3269', 'CI_Contact_3248', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3270', 'CI_Contact_3248', 5); INSERT INTO est_inclus VALUES ('role_3271', 'CI_ResponsibleParty_1671', 5); INSERT INTO est_inclus VALUES ('title_3272', 'CI_Citation_1686', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3273', 'CI_Citation_1686', 2); INSERT INTO est_inclus VALUES ('datec_3274', 'CI_Citation_1686', 3); INSERT INTO est_inclus VALUES ('CI_Date_3275', 'datec_3274', 0); INSERT INTO est_inclus VALUES ('date_3276', 'CI_Date_3275', 1); INSERT INTO est_inclus VALUES ('dateType_3277', 'CI_Date_3275', 2); INSERT INTO est_inclus VALUES ('edition_3278', 'CI_Citation_1686', 4); INSERT INTO est_inclus VALUES ('editionDate_3279', 'CI_Citation_1686', 5); INSERT INTO est_inclus VALUES ('identifier_3280', 'CI_Citation_1686', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3281', 'identifier_3280', 0); INSERT INTO est_inclus VALUES ('authority_3282', 'MD_Identifier_3281', 1); INSERT INTO est_inclus VALUES ('code_3283', 'MD_Identifier_3281', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3284', 'CI_Citation_1686', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3285', 'citedResponsibleParty_3284', 0); INSERT INTO est_inclus VALUES ('presentationForm_3286', 'CI_Citation_1686', 8); INSERT INTO est_inclus VALUES ('series_3287', 'CI_Citation_1686', 9); INSERT INTO est_inclus VALUES ('CI_Series_3288', 'series_3287', 0); INSERT INTO est_inclus VALUES ('name_3289', 'CI_Series_3288', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3290', 'CI_Series_3288', 2); INSERT INTO est_inclus VALUES ('page_3291', 'CI_Series_3288', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3292', 'CI_Citation_1686', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3293', 'CI_Citation_1686', 11); INSERT INTO est_inclus VALUES ('ISBN_3294', 'CI_Citation_1686', 12); INSERT INTO est_inclus VALUES ('ISSN_3295', 'CI_Citation_1686', 13); INSERT INTO est_inclus VALUES ('title_3296', 'CI_Citation_1693', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3297', 'CI_Citation_1693', 2); INSERT INTO est_inclus VALUES ('datec_3298', 'CI_Citation_1693', 3); INSERT INTO est_inclus VALUES ('CI_Date_3299', 'datec_3298', 0); INSERT INTO est_inclus VALUES ('date_3300', 'CI_Date_3299', 1); INSERT INTO est_inclus VALUES ('dateType_3301', 'CI_Date_3299', 2); INSERT INTO est_inclus VALUES ('edition_3302', 'CI_Citation_1693', 4); INSERT INTO est_inclus VALUES ('editionDate_3303', 'CI_Citation_1693', 5); INSERT INTO est_inclus VALUES ('identifier_3304', 'CI_Citation_1693', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3305', 'identifier_3304', 0); INSERT INTO est_inclus VALUES ('authority_3306', 'MD_Identifier_3305', 1); INSERT INTO est_inclus VALUES ('code_3307', 'MD_Identifier_3305', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3308', 'CI_Citation_1693', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3309', 'citedResponsibleParty_3308', 0); INSERT INTO est_inclus VALUES ('presentationForm_3310', 'CI_Citation_1693', 8); INSERT INTO est_inclus VALUES ('series_3311', 'CI_Citation_1693', 9); INSERT INTO est_inclus VALUES ('CI_Series_3312', 'series_3311', 0); INSERT INTO est_inclus VALUES ('name_3313', 'CI_Series_3312', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3314', 'CI_Series_3312', 2); INSERT INTO est_inclus VALUES ('page_3315', 'CI_Series_3312', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3316', 'CI_Citation_1693', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3317', 'CI_Citation_1693', 11); INSERT INTO est_inclus VALUES ('ISBN_3318', 'CI_Citation_1693', 12); INSERT INTO est_inclus VALUES ('ISSN_3319', 'CI_Citation_1693', 13); INSERT INTO est_inclus VALUES ('individualName_3320', 'CI_ResponsibleParty_1708', 1); INSERT INTO est_inclus VALUES ('organisationName_3321', 'CI_ResponsibleParty_1708', 2); INSERT INTO est_inclus VALUES ('positionName_3322', 'CI_ResponsibleParty_1708', 3); INSERT INTO est_inclus VALUES ('contactInfo_3323', 'CI_ResponsibleParty_1708', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3324', 'contactInfo_3323', 0); INSERT INTO est_inclus VALUES ('phone_3325', 'CI_Contact_3324', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3326', 'phone_3325', 0); INSERT INTO est_inclus VALUES ('voice_3327', 'CI_Telephone_3326', 1); INSERT INTO est_inclus VALUES ('facsimile_3328', 'CI_Telephone_3326', 2); INSERT INTO est_inclus VALUES ('address_3329', 'CI_Contact_3324', 2); INSERT INTO est_inclus VALUES ('CI_Address_3330', 'address_3329', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3331', 'CI_Address_3330', 1); INSERT INTO est_inclus VALUES ('city_3332', 'CI_Address_3330', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3333', 'CI_Address_3330', 3); INSERT INTO est_inclus VALUES ('postalCode_3334', 'CI_Address_3330', 4); INSERT INTO est_inclus VALUES ('country_3335', 'CI_Address_3330', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3336', 'CI_Address_3330', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3337', 'CI_Contact_3324', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3338', 'onlineRessource_3337', 0); INSERT INTO est_inclus VALUES ('linkage_3339', 'CI_OnlineResource_3338', 1); INSERT INTO est_inclus VALUES ('protocol_3340', 'CI_OnlineResource_3338', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3341', 'CI_OnlineResource_3338', 3); INSERT INTO est_inclus VALUES ('name_3342', 'CI_OnlineResource_3338', 4); INSERT INTO est_inclus VALUES ('description_3343', 'CI_OnlineResource_3338', 5); INSERT INTO est_inclus VALUES ('function_3344', 'CI_OnlineResource_3338', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3345', 'CI_Contact_3324', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3346', 'CI_Contact_3324', 5); INSERT INTO est_inclus VALUES ('role_3347', 'CI_ResponsibleParty_1708', 5); INSERT INTO est_inclus VALUES ('title_3348', 'CI_Citation_1723', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3349', 'CI_Citation_1723', 2); INSERT INTO est_inclus VALUES ('datec_3350', 'CI_Citation_1723', 3); INSERT INTO est_inclus VALUES ('CI_Date_3351', 'datec_3350', 0); INSERT INTO est_inclus VALUES ('date_3352', 'CI_Date_3351', 1); INSERT INTO est_inclus VALUES ('dateType_3353', 'CI_Date_3351', 2); INSERT INTO est_inclus VALUES ('edition_3354', 'CI_Citation_1723', 4); INSERT INTO est_inclus VALUES ('editionDate_3355', 'CI_Citation_1723', 5); INSERT INTO est_inclus VALUES ('identifier_3356', 'CI_Citation_1723', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3357', 'identifier_3356', 0); INSERT INTO est_inclus VALUES ('authority_3358', 'MD_Identifier_3357', 1); INSERT INTO est_inclus VALUES ('code_3359', 'MD_Identifier_3357', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3360', 'CI_Citation_1723', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3361', 'citedResponsibleParty_3360', 0); INSERT INTO est_inclus VALUES ('presentationForm_3362', 'CI_Citation_1723', 8); INSERT INTO est_inclus VALUES ('series_3363', 'CI_Citation_1723', 9); INSERT INTO est_inclus VALUES ('CI_Series_3364', 'series_3363', 0); INSERT INTO est_inclus VALUES ('name_3365', 'CI_Series_3364', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3366', 'CI_Series_3364', 2); INSERT INTO est_inclus VALUES ('page_3367', 'CI_Series_3364', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3368', 'CI_Citation_1723', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3369', 'CI_Citation_1723', 11); INSERT INTO est_inclus VALUES ('ISBN_3370', 'CI_Citation_1723', 12); INSERT INTO est_inclus VALUES ('ISSN_3371', 'CI_Citation_1723', 13); INSERT INTO est_inclus VALUES ('title_3372', 'CI_Citation_1730', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3373', 'CI_Citation_1730', 2); INSERT INTO est_inclus VALUES ('datec_3374', 'CI_Citation_1730', 3); INSERT INTO est_inclus VALUES ('CI_Date_3375', 'datec_3374', 0); INSERT INTO est_inclus VALUES ('date_3376', 'CI_Date_3375', 1); INSERT INTO est_inclus VALUES ('dateType_3377', 'CI_Date_3375', 2); INSERT INTO est_inclus VALUES ('edition_3378', 'CI_Citation_1730', 4); INSERT INTO est_inclus VALUES ('editionDate_3379', 'CI_Citation_1730', 5); INSERT INTO est_inclus VALUES ('identifier_3380', 'CI_Citation_1730', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3381', 'identifier_3380', 0); INSERT INTO est_inclus VALUES ('authority_3382', 'MD_Identifier_3381', 1); INSERT INTO est_inclus VALUES ('code_3383', 'MD_Identifier_3381', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3384', 'CI_Citation_1730', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3385', 'citedResponsibleParty_3384', 0); INSERT INTO est_inclus VALUES ('presentationForm_3386', 'CI_Citation_1730', 8); INSERT INTO est_inclus VALUES ('series_3387', 'CI_Citation_1730', 9); INSERT INTO est_inclus VALUES ('CI_Series_3388', 'series_3387', 0); INSERT INTO est_inclus VALUES ('name_3389', 'CI_Series_3388', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3390', 'CI_Series_3388', 2); INSERT INTO est_inclus VALUES ('page_3391', 'CI_Series_3388', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3392', 'CI_Citation_1730', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3393', 'CI_Citation_1730', 11); INSERT INTO est_inclus VALUES ('ISBN_3394', 'CI_Citation_1730', 12); INSERT INTO est_inclus VALUES ('ISSN_3395', 'CI_Citation_1730', 13); INSERT INTO est_inclus VALUES ('individualName_3396', 'CI_ResponsibleParty_1745', 1); INSERT INTO est_inclus VALUES ('organisationName_3397', 'CI_ResponsibleParty_1745', 2); INSERT INTO est_inclus VALUES ('positionName_3398', 'CI_ResponsibleParty_1745', 3); INSERT INTO est_inclus VALUES ('contactInfo_3399', 'CI_ResponsibleParty_1745', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3400', 'contactInfo_3399', 0); INSERT INTO est_inclus VALUES ('phone_3401', 'CI_Contact_3400', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3402', 'phone_3401', 0); INSERT INTO est_inclus VALUES ('voice_3403', 'CI_Telephone_3402', 1); INSERT INTO est_inclus VALUES ('facsimile_3404', 'CI_Telephone_3402', 2); INSERT INTO est_inclus VALUES ('address_3405', 'CI_Contact_3400', 2); INSERT INTO est_inclus VALUES ('CI_Address_3406', 'address_3405', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3407', 'CI_Address_3406', 1); INSERT INTO est_inclus VALUES ('city_3408', 'CI_Address_3406', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3409', 'CI_Address_3406', 3); INSERT INTO est_inclus VALUES ('postalCode_3410', 'CI_Address_3406', 4); INSERT INTO est_inclus VALUES ('country_3411', 'CI_Address_3406', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3412', 'CI_Address_3406', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3413', 'CI_Contact_3400', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3414', 'onlineRessource_3413', 0); INSERT INTO est_inclus VALUES ('linkage_3415', 'CI_OnlineResource_3414', 1); INSERT INTO est_inclus VALUES ('protocol_3416', 'CI_OnlineResource_3414', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3417', 'CI_OnlineResource_3414', 3); INSERT INTO est_inclus VALUES ('name_3418', 'CI_OnlineResource_3414', 4); INSERT INTO est_inclus VALUES ('description_3419', 'CI_OnlineResource_3414', 5); INSERT INTO est_inclus VALUES ('function_3420', 'CI_OnlineResource_3414', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3421', 'CI_Contact_3400', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3422', 'CI_Contact_3400', 5); INSERT INTO est_inclus VALUES ('role_3423', 'CI_ResponsibleParty_1745', 5); INSERT INTO est_inclus VALUES ('title_3424', 'CI_Citation_1760', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3425', 'CI_Citation_1760', 2); INSERT INTO est_inclus VALUES ('datec_3426', 'CI_Citation_1760', 3); INSERT INTO est_inclus VALUES ('CI_Date_3427', 'datec_3426', 0); INSERT INTO est_inclus VALUES ('date_3428', 'CI_Date_3427', 1); INSERT INTO est_inclus VALUES ('dateType_3429', 'CI_Date_3427', 2); INSERT INTO est_inclus VALUES ('edition_3430', 'CI_Citation_1760', 4); INSERT INTO est_inclus VALUES ('editionDate_3431', 'CI_Citation_1760', 5); INSERT INTO est_inclus VALUES ('identifier_3432', 'CI_Citation_1760', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3433', 'identifier_3432', 0); INSERT INTO est_inclus VALUES ('authority_3434', 'MD_Identifier_3433', 1); INSERT INTO est_inclus VALUES ('code_3435', 'MD_Identifier_3433', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3436', 'CI_Citation_1760', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3437', 'citedResponsibleParty_3436', 0); INSERT INTO est_inclus VALUES ('presentationForm_3438', 'CI_Citation_1760', 8); INSERT INTO est_inclus VALUES ('series_3439', 'CI_Citation_1760', 9); INSERT INTO est_inclus VALUES ('CI_Series_3440', 'series_3439', 0); INSERT INTO est_inclus VALUES ('name_3441', 'CI_Series_3440', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3442', 'CI_Series_3440', 2); INSERT INTO est_inclus VALUES ('page_3443', 'CI_Series_3440', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3444', 'CI_Citation_1760', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3445', 'CI_Citation_1760', 11); INSERT INTO est_inclus VALUES ('ISBN_3446', 'CI_Citation_1760', 12); INSERT INTO est_inclus VALUES ('ISSN_3447', 'CI_Citation_1760', 13); INSERT INTO est_inclus VALUES ('title_3448', 'CI_Citation_1767', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3449', 'CI_Citation_1767', 2); INSERT INTO est_inclus VALUES ('datec_3450', 'CI_Citation_1767', 3); INSERT INTO est_inclus VALUES ('CI_Date_3451', 'datec_3450', 0); INSERT INTO est_inclus VALUES ('date_3452', 'CI_Date_3451', 1); INSERT INTO est_inclus VALUES ('dateType_3453', 'CI_Date_3451', 2); INSERT INTO est_inclus VALUES ('edition_3454', 'CI_Citation_1767', 4); INSERT INTO est_inclus VALUES ('editionDate_3455', 'CI_Citation_1767', 5); INSERT INTO est_inclus VALUES ('identifier_3456', 'CI_Citation_1767', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3457', 'identifier_3456', 0); INSERT INTO est_inclus VALUES ('authority_3458', 'MD_Identifier_3457', 1); INSERT INTO est_inclus VALUES ('code_3459', 'MD_Identifier_3457', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3460', 'CI_Citation_1767', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3461', 'citedResponsibleParty_3460', 0); INSERT INTO est_inclus VALUES ('presentationForm_3462', 'CI_Citation_1767', 8); INSERT INTO est_inclus VALUES ('series_3463', 'CI_Citation_1767', 9); INSERT INTO est_inclus VALUES ('CI_Series_3464', 'series_3463', 0); INSERT INTO est_inclus VALUES ('name_3465', 'CI_Series_3464', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3466', 'CI_Series_3464', 2); INSERT INTO est_inclus VALUES ('page_3467', 'CI_Series_3464', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3468', 'CI_Citation_1767', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3469', 'CI_Citation_1767', 11); INSERT INTO est_inclus VALUES ('ISBN_3470', 'CI_Citation_1767', 12); INSERT INTO est_inclus VALUES ('ISSN_3471', 'CI_Citation_1767', 13); INSERT INTO est_inclus VALUES ('individualName_3472', 'CI_ResponsibleParty_1782', 1); INSERT INTO est_inclus VALUES ('organisationName_3473', 'CI_ResponsibleParty_1782', 2); INSERT INTO est_inclus VALUES ('positionName_3474', 'CI_ResponsibleParty_1782', 3); INSERT INTO est_inclus VALUES ('contactInfo_3475', 'CI_ResponsibleParty_1782', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3476', 'contactInfo_3475', 0); INSERT INTO est_inclus VALUES ('phone_3477', 'CI_Contact_3476', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3478', 'phone_3477', 0); INSERT INTO est_inclus VALUES ('voice_3479', 'CI_Telephone_3478', 1); INSERT INTO est_inclus VALUES ('facsimile_3480', 'CI_Telephone_3478', 2); INSERT INTO est_inclus VALUES ('address_3481', 'CI_Contact_3476', 2); INSERT INTO est_inclus VALUES ('CI_Address_3482', 'address_3481', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3483', 'CI_Address_3482', 1); INSERT INTO est_inclus VALUES ('city_3484', 'CI_Address_3482', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3485', 'CI_Address_3482', 3); INSERT INTO est_inclus VALUES ('postalCode_3486', 'CI_Address_3482', 4); INSERT INTO est_inclus VALUES ('country_3487', 'CI_Address_3482', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3488', 'CI_Address_3482', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3489', 'CI_Contact_3476', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3490', 'onlineRessource_3489', 0); INSERT INTO est_inclus VALUES ('linkage_3491', 'CI_OnlineResource_3490', 1); INSERT INTO est_inclus VALUES ('protocol_3492', 'CI_OnlineResource_3490', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3493', 'CI_OnlineResource_3490', 3); INSERT INTO est_inclus VALUES ('name_3494', 'CI_OnlineResource_3490', 4); INSERT INTO est_inclus VALUES ('description_3495', 'CI_OnlineResource_3490', 5); INSERT INTO est_inclus VALUES ('function_3496', 'CI_OnlineResource_3490', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3497', 'CI_Contact_3476', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3498', 'CI_Contact_3476', 5); INSERT INTO est_inclus VALUES ('role_3499', 'CI_ResponsibleParty_1782', 5); INSERT INTO est_inclus VALUES ('title_3500', 'CI_Citation_1797', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3501', 'CI_Citation_1797', 2); INSERT INTO est_inclus VALUES ('datec_3502', 'CI_Citation_1797', 3); INSERT INTO est_inclus VALUES ('CI_Date_3503', 'datec_3502', 0); INSERT INTO est_inclus VALUES ('date_3504', 'CI_Date_3503', 1); INSERT INTO est_inclus VALUES ('dateType_3505', 'CI_Date_3503', 2); INSERT INTO est_inclus VALUES ('edition_3506', 'CI_Citation_1797', 4); INSERT INTO est_inclus VALUES ('editionDate_3507', 'CI_Citation_1797', 5); INSERT INTO est_inclus VALUES ('identifier_3508', 'CI_Citation_1797', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3509', 'identifier_3508', 0); INSERT INTO est_inclus VALUES ('authority_3510', 'MD_Identifier_3509', 1); INSERT INTO est_inclus VALUES ('code_3511', 'MD_Identifier_3509', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3512', 'CI_Citation_1797', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3513', 'citedResponsibleParty_3512', 0); INSERT INTO est_inclus VALUES ('presentationForm_3514', 'CI_Citation_1797', 8); INSERT INTO est_inclus VALUES ('series_3515', 'CI_Citation_1797', 9); INSERT INTO est_inclus VALUES ('CI_Series_3516', 'series_3515', 0); INSERT INTO est_inclus VALUES ('name_3517', 'CI_Series_3516', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3518', 'CI_Series_3516', 2); INSERT INTO est_inclus VALUES ('page_3519', 'CI_Series_3516', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3520', 'CI_Citation_1797', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3521', 'CI_Citation_1797', 11); INSERT INTO est_inclus VALUES ('ISBN_3522', 'CI_Citation_1797', 12); INSERT INTO est_inclus VALUES ('ISSN_3523', 'CI_Citation_1797', 13); INSERT INTO est_inclus VALUES ('title_3524', 'CI_Citation_1804', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3525', 'CI_Citation_1804', 2); INSERT INTO est_inclus VALUES ('datec_3526', 'CI_Citation_1804', 3); INSERT INTO est_inclus VALUES ('CI_Date_3527', 'datec_3526', 0); INSERT INTO est_inclus VALUES ('date_3528', 'CI_Date_3527', 1); INSERT INTO est_inclus VALUES ('dateType_3529', 'CI_Date_3527', 2); INSERT INTO est_inclus VALUES ('edition_3530', 'CI_Citation_1804', 4); INSERT INTO est_inclus VALUES ('editionDate_3531', 'CI_Citation_1804', 5); INSERT INTO est_inclus VALUES ('identifier_3532', 'CI_Citation_1804', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3533', 'identifier_3532', 0); INSERT INTO est_inclus VALUES ('authority_3534', 'MD_Identifier_3533', 1); INSERT INTO est_inclus VALUES ('code_3535', 'MD_Identifier_3533', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3536', 'CI_Citation_1804', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3537', 'citedResponsibleParty_3536', 0); INSERT INTO est_inclus VALUES ('presentationForm_3538', 'CI_Citation_1804', 8); INSERT INTO est_inclus VALUES ('series_3539', 'CI_Citation_1804', 9); INSERT INTO est_inclus VALUES ('CI_Series_3540', 'series_3539', 0); INSERT INTO est_inclus VALUES ('name_3541', 'CI_Series_3540', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3542', 'CI_Series_3540', 2); INSERT INTO est_inclus VALUES ('page_3543', 'CI_Series_3540', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3544', 'CI_Citation_1804', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3545', 'CI_Citation_1804', 11); INSERT INTO est_inclus VALUES ('ISBN_3546', 'CI_Citation_1804', 12); INSERT INTO est_inclus VALUES ('ISSN_3547', 'CI_Citation_1804', 13); INSERT INTO est_inclus VALUES ('individualName_3548', 'CI_ResponsibleParty_1819', 1); INSERT INTO est_inclus VALUES ('organisationName_3549', 'CI_ResponsibleParty_1819', 2); INSERT INTO est_inclus VALUES ('positionName_3550', 'CI_ResponsibleParty_1819', 3); INSERT INTO est_inclus VALUES ('contactInfo_3551', 'CI_ResponsibleParty_1819', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3552', 'contactInfo_3551', 0); INSERT INTO est_inclus VALUES ('phone_3553', 'CI_Contact_3552', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3554', 'phone_3553', 0); INSERT INTO est_inclus VALUES ('voice_3555', 'CI_Telephone_3554', 1); INSERT INTO est_inclus VALUES ('facsimile_3556', 'CI_Telephone_3554', 2); INSERT INTO est_inclus VALUES ('address_3557', 'CI_Contact_3552', 2); INSERT INTO est_inclus VALUES ('CI_Address_3558', 'address_3557', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3559', 'CI_Address_3558', 1); INSERT INTO est_inclus VALUES ('city_3560', 'CI_Address_3558', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3561', 'CI_Address_3558', 3); INSERT INTO est_inclus VALUES ('postalCode_3562', 'CI_Address_3558', 4); INSERT INTO est_inclus VALUES ('country_3563', 'CI_Address_3558', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3564', 'CI_Address_3558', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3565', 'CI_Contact_3552', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3566', 'onlineRessource_3565', 0); INSERT INTO est_inclus VALUES ('linkage_3567', 'CI_OnlineResource_3566', 1); INSERT INTO est_inclus VALUES ('protocol_3568', 'CI_OnlineResource_3566', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3569', 'CI_OnlineResource_3566', 3); INSERT INTO est_inclus VALUES ('name_3570', 'CI_OnlineResource_3566', 4); INSERT INTO est_inclus VALUES ('description_3571', 'CI_OnlineResource_3566', 5); INSERT INTO est_inclus VALUES ('function_3572', 'CI_OnlineResource_3566', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3573', 'CI_Contact_3552', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3574', 'CI_Contact_3552', 5); INSERT INTO est_inclus VALUES ('role_3575', 'CI_ResponsibleParty_1819', 5); INSERT INTO est_inclus VALUES ('title_3576', 'CI_Citation_1834', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3577', 'CI_Citation_1834', 2); INSERT INTO est_inclus VALUES ('datec_3578', 'CI_Citation_1834', 3); INSERT INTO est_inclus VALUES ('CI_Date_3579', 'datec_3578', 0); INSERT INTO est_inclus VALUES ('date_3580', 'CI_Date_3579', 1); INSERT INTO est_inclus VALUES ('dateType_3581', 'CI_Date_3579', 2); INSERT INTO est_inclus VALUES ('edition_3582', 'CI_Citation_1834', 4); INSERT INTO est_inclus VALUES ('editionDate_3583', 'CI_Citation_1834', 5); INSERT INTO est_inclus VALUES ('identifier_3584', 'CI_Citation_1834', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3585', 'identifier_3584', 0); INSERT INTO est_inclus VALUES ('authority_3586', 'MD_Identifier_3585', 1); INSERT INTO est_inclus VALUES ('code_3587', 'MD_Identifier_3585', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3588', 'CI_Citation_1834', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3589', 'citedResponsibleParty_3588', 0); INSERT INTO est_inclus VALUES ('presentationForm_3590', 'CI_Citation_1834', 8); INSERT INTO est_inclus VALUES ('series_3591', 'CI_Citation_1834', 9); INSERT INTO est_inclus VALUES ('CI_Series_3592', 'series_3591', 0); INSERT INTO est_inclus VALUES ('name_3593', 'CI_Series_3592', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3594', 'CI_Series_3592', 2); INSERT INTO est_inclus VALUES ('page_3595', 'CI_Series_3592', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3596', 'CI_Citation_1834', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3597', 'CI_Citation_1834', 11); INSERT INTO est_inclus VALUES ('ISBN_3598', 'CI_Citation_1834', 12); INSERT INTO est_inclus VALUES ('ISSN_3599', 'CI_Citation_1834', 13); INSERT INTO est_inclus VALUES ('title_3600', 'CI_Citation_1841', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3601', 'CI_Citation_1841', 2); INSERT INTO est_inclus VALUES ('datec_3602', 'CI_Citation_1841', 3); INSERT INTO est_inclus VALUES ('CI_Date_3603', 'datec_3602', 0); INSERT INTO est_inclus VALUES ('date_3604', 'CI_Date_3603', 1); INSERT INTO est_inclus VALUES ('dateType_3605', 'CI_Date_3603', 2); INSERT INTO est_inclus VALUES ('edition_3606', 'CI_Citation_1841', 4); INSERT INTO est_inclus VALUES ('editionDate_3607', 'CI_Citation_1841', 5); INSERT INTO est_inclus VALUES ('identifier_3608', 'CI_Citation_1841', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3609', 'identifier_3608', 0); INSERT INTO est_inclus VALUES ('authority_3610', 'MD_Identifier_3609', 1); INSERT INTO est_inclus VALUES ('code_3611', 'MD_Identifier_3609', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3612', 'CI_Citation_1841', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3613', 'citedResponsibleParty_3612', 0); INSERT INTO est_inclus VALUES ('presentationForm_3614', 'CI_Citation_1841', 8); INSERT INTO est_inclus VALUES ('series_3615', 'CI_Citation_1841', 9); INSERT INTO est_inclus VALUES ('CI_Series_3616', 'series_3615', 0); INSERT INTO est_inclus VALUES ('name_3617', 'CI_Series_3616', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3618', 'CI_Series_3616', 2); INSERT INTO est_inclus VALUES ('page_3619', 'CI_Series_3616', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3620', 'CI_Citation_1841', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3621', 'CI_Citation_1841', 11); INSERT INTO est_inclus VALUES ('ISBN_3622', 'CI_Citation_1841', 12); INSERT INTO est_inclus VALUES ('ISSN_3623', 'CI_Citation_1841', 13); INSERT INTO est_inclus VALUES ('individualName_3624', 'CI_ResponsibleParty_1856', 1); INSERT INTO est_inclus VALUES ('organisationName_3625', 'CI_ResponsibleParty_1856', 2); INSERT INTO est_inclus VALUES ('positionName_3626', 'CI_ResponsibleParty_1856', 3); INSERT INTO est_inclus VALUES ('contactInfo_3627', 'CI_ResponsibleParty_1856', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3628', 'contactInfo_3627', 0); INSERT INTO est_inclus VALUES ('phone_3629', 'CI_Contact_3628', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3630', 'phone_3629', 0); INSERT INTO est_inclus VALUES ('voice_3631', 'CI_Telephone_3630', 1); INSERT INTO est_inclus VALUES ('facsimile_3632', 'CI_Telephone_3630', 2); INSERT INTO est_inclus VALUES ('address_3633', 'CI_Contact_3628', 2); INSERT INTO est_inclus VALUES ('CI_Address_3634', 'address_3633', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3635', 'CI_Address_3634', 1); INSERT INTO est_inclus VALUES ('city_3636', 'CI_Address_3634', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3637', 'CI_Address_3634', 3); INSERT INTO est_inclus VALUES ('postalCode_3638', 'CI_Address_3634', 4); INSERT INTO est_inclus VALUES ('country_3639', 'CI_Address_3634', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3640', 'CI_Address_3634', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3641', 'CI_Contact_3628', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3642', 'onlineRessource_3641', 0); INSERT INTO est_inclus VALUES ('linkage_3643', 'CI_OnlineResource_3642', 1); INSERT INTO est_inclus VALUES ('protocol_3644', 'CI_OnlineResource_3642', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3645', 'CI_OnlineResource_3642', 3); INSERT INTO est_inclus VALUES ('name_3646', 'CI_OnlineResource_3642', 4); INSERT INTO est_inclus VALUES ('description_3647', 'CI_OnlineResource_3642', 5); INSERT INTO est_inclus VALUES ('function_3648', 'CI_OnlineResource_3642', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3649', 'CI_Contact_3628', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3650', 'CI_Contact_3628', 5); INSERT INTO est_inclus VALUES ('role_3651', 'CI_ResponsibleParty_1856', 5); INSERT INTO est_inclus VALUES ('title_3652', 'CI_Citation_1871', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3653', 'CI_Citation_1871', 2); INSERT INTO est_inclus VALUES ('datec_3654', 'CI_Citation_1871', 3); INSERT INTO est_inclus VALUES ('CI_Date_3655', 'datec_3654', 0); INSERT INTO est_inclus VALUES ('date_3656', 'CI_Date_3655', 1); INSERT INTO est_inclus VALUES ('dateType_3657', 'CI_Date_3655', 2); INSERT INTO est_inclus VALUES ('edition_3658', 'CI_Citation_1871', 4); INSERT INTO est_inclus VALUES ('editionDate_3659', 'CI_Citation_1871', 5); INSERT INTO est_inclus VALUES ('identifier_3660', 'CI_Citation_1871', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3661', 'identifier_3660', 0); INSERT INTO est_inclus VALUES ('authority_3662', 'MD_Identifier_3661', 1); INSERT INTO est_inclus VALUES ('code_3663', 'MD_Identifier_3661', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3664', 'CI_Citation_1871', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3665', 'citedResponsibleParty_3664', 0); INSERT INTO est_inclus VALUES ('presentationForm_3666', 'CI_Citation_1871', 8); INSERT INTO est_inclus VALUES ('series_3667', 'CI_Citation_1871', 9); INSERT INTO est_inclus VALUES ('CI_Series_3668', 'series_3667', 0); INSERT INTO est_inclus VALUES ('name_3669', 'CI_Series_3668', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3670', 'CI_Series_3668', 2); INSERT INTO est_inclus VALUES ('page_3671', 'CI_Series_3668', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3672', 'CI_Citation_1871', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3673', 'CI_Citation_1871', 11); INSERT INTO est_inclus VALUES ('ISBN_3674', 'CI_Citation_1871', 12); INSERT INTO est_inclus VALUES ('ISSN_3675', 'CI_Citation_1871', 13); INSERT INTO est_inclus VALUES ('title_3676', 'CI_Citation_1878', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3677', 'CI_Citation_1878', 2); INSERT INTO est_inclus VALUES ('datec_3678', 'CI_Citation_1878', 3); INSERT INTO est_inclus VALUES ('CI_Date_3679', 'datec_3678', 0); INSERT INTO est_inclus VALUES ('date_3680', 'CI_Date_3679', 1); INSERT INTO est_inclus VALUES ('dateType_3681', 'CI_Date_3679', 2); INSERT INTO est_inclus VALUES ('edition_3682', 'CI_Citation_1878', 4); INSERT INTO est_inclus VALUES ('editionDate_3683', 'CI_Citation_1878', 5); INSERT INTO est_inclus VALUES ('identifier_3684', 'CI_Citation_1878', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3685', 'identifier_3684', 0); INSERT INTO est_inclus VALUES ('authority_3686', 'MD_Identifier_3685', 1); INSERT INTO est_inclus VALUES ('code_3687', 'MD_Identifier_3685', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3688', 'CI_Citation_1878', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3689', 'citedResponsibleParty_3688', 0); INSERT INTO est_inclus VALUES ('presentationForm_3690', 'CI_Citation_1878', 8); INSERT INTO est_inclus VALUES ('series_3691', 'CI_Citation_1878', 9); INSERT INTO est_inclus VALUES ('CI_Series_3692', 'series_3691', 0); INSERT INTO est_inclus VALUES ('name_3693', 'CI_Series_3692', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3694', 'CI_Series_3692', 2); INSERT INTO est_inclus VALUES ('page_3695', 'CI_Series_3692', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3696', 'CI_Citation_1878', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3697', 'CI_Citation_1878', 11); INSERT INTO est_inclus VALUES ('ISBN_3698', 'CI_Citation_1878', 12); INSERT INTO est_inclus VALUES ('ISSN_3699', 'CI_Citation_1878', 13); INSERT INTO est_inclus VALUES ('individualName_3700', 'CI_ResponsibleParty_1893', 1); INSERT INTO est_inclus VALUES ('organisationName_3701', 'CI_ResponsibleParty_1893', 2); INSERT INTO est_inclus VALUES ('positionName_3702', 'CI_ResponsibleParty_1893', 3); INSERT INTO est_inclus VALUES ('contactInfo_3703', 'CI_ResponsibleParty_1893', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3704', 'contactInfo_3703', 0); INSERT INTO est_inclus VALUES ('phone_3705', 'CI_Contact_3704', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3706', 'phone_3705', 0); INSERT INTO est_inclus VALUES ('voice_3707', 'CI_Telephone_3706', 1); INSERT INTO est_inclus VALUES ('facsimile_3708', 'CI_Telephone_3706', 2); INSERT INTO est_inclus VALUES ('address_3709', 'CI_Contact_3704', 2); INSERT INTO est_inclus VALUES ('CI_Address_3710', 'address_3709', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3711', 'CI_Address_3710', 1); INSERT INTO est_inclus VALUES ('city_3712', 'CI_Address_3710', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3713', 'CI_Address_3710', 3); INSERT INTO est_inclus VALUES ('postalCode_3714', 'CI_Address_3710', 4); INSERT INTO est_inclus VALUES ('country_3715', 'CI_Address_3710', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3716', 'CI_Address_3710', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3717', 'CI_Contact_3704', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3718', 'onlineRessource_3717', 0); INSERT INTO est_inclus VALUES ('linkage_3719', 'CI_OnlineResource_3718', 1); INSERT INTO est_inclus VALUES ('protocol_3720', 'CI_OnlineResource_3718', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3721', 'CI_OnlineResource_3718', 3); INSERT INTO est_inclus VALUES ('name_3722', 'CI_OnlineResource_3718', 4); INSERT INTO est_inclus VALUES ('description_3723', 'CI_OnlineResource_3718', 5); INSERT INTO est_inclus VALUES ('function_3724', 'CI_OnlineResource_3718', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3725', 'CI_Contact_3704', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3726', 'CI_Contact_3704', 5); INSERT INTO est_inclus VALUES ('role_3727', 'CI_ResponsibleParty_1893', 5); INSERT INTO est_inclus VALUES ('title_3728', 'CI_Citation_1908', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3729', 'CI_Citation_1908', 2); INSERT INTO est_inclus VALUES ('datec_3730', 'CI_Citation_1908', 3); INSERT INTO est_inclus VALUES ('CI_Date_3731', 'datec_3730', 0); INSERT INTO est_inclus VALUES ('date_3732', 'CI_Date_3731', 1); INSERT INTO est_inclus VALUES ('dateType_3733', 'CI_Date_3731', 2); INSERT INTO est_inclus VALUES ('edition_3734', 'CI_Citation_1908', 4); INSERT INTO est_inclus VALUES ('editionDate_3735', 'CI_Citation_1908', 5); INSERT INTO est_inclus VALUES ('identifier_3736', 'CI_Citation_1908', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3737', 'identifier_3736', 0); INSERT INTO est_inclus VALUES ('authority_3738', 'MD_Identifier_3737', 1); INSERT INTO est_inclus VALUES ('code_3739', 'MD_Identifier_3737', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3740', 'CI_Citation_1908', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3741', 'citedResponsibleParty_3740', 0); INSERT INTO est_inclus VALUES ('presentationForm_3742', 'CI_Citation_1908', 8); INSERT INTO est_inclus VALUES ('series_3743', 'CI_Citation_1908', 9); INSERT INTO est_inclus VALUES ('CI_Series_3744', 'series_3743', 0); INSERT INTO est_inclus VALUES ('name_3745', 'CI_Series_3744', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3746', 'CI_Series_3744', 2); INSERT INTO est_inclus VALUES ('page_3747', 'CI_Series_3744', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3748', 'CI_Citation_1908', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3749', 'CI_Citation_1908', 11); INSERT INTO est_inclus VALUES ('ISBN_3750', 'CI_Citation_1908', 12); INSERT INTO est_inclus VALUES ('ISSN_3751', 'CI_Citation_1908', 13); INSERT INTO est_inclus VALUES ('title_3752', 'CI_Citation_1915', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3753', 'CI_Citation_1915', 2); INSERT INTO est_inclus VALUES ('datec_3754', 'CI_Citation_1915', 3); INSERT INTO est_inclus VALUES ('CI_Date_3755', 'datec_3754', 0); INSERT INTO est_inclus VALUES ('date_3756', 'CI_Date_3755', 1); INSERT INTO est_inclus VALUES ('dateType_3757', 'CI_Date_3755', 2); INSERT INTO est_inclus VALUES ('edition_3758', 'CI_Citation_1915', 4); INSERT INTO est_inclus VALUES ('editionDate_3759', 'CI_Citation_1915', 5); INSERT INTO est_inclus VALUES ('identifier_3760', 'CI_Citation_1915', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3761', 'identifier_3760', 0); INSERT INTO est_inclus VALUES ('authority_3762', 'MD_Identifier_3761', 1); INSERT INTO est_inclus VALUES ('code_3763', 'MD_Identifier_3761', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3764', 'CI_Citation_1915', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3765', 'citedResponsibleParty_3764', 0); INSERT INTO est_inclus VALUES ('presentationForm_3766', 'CI_Citation_1915', 8); INSERT INTO est_inclus VALUES ('series_3767', 'CI_Citation_1915', 9); INSERT INTO est_inclus VALUES ('CI_Series_3768', 'series_3767', 0); INSERT INTO est_inclus VALUES ('name_3769', 'CI_Series_3768', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3770', 'CI_Series_3768', 2); INSERT INTO est_inclus VALUES ('page_3771', 'CI_Series_3768', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3772', 'CI_Citation_1915', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3773', 'CI_Citation_1915', 11); INSERT INTO est_inclus VALUES ('ISBN_3774', 'CI_Citation_1915', 12); INSERT INTO est_inclus VALUES ('ISSN_3775', 'CI_Citation_1915', 13); INSERT INTO est_inclus VALUES ('individualName_3776', 'CI_ResponsibleParty_1930', 1); INSERT INTO est_inclus VALUES ('organisationName_3777', 'CI_ResponsibleParty_1930', 2); INSERT INTO est_inclus VALUES ('positionName_3778', 'CI_ResponsibleParty_1930', 3); INSERT INTO est_inclus VALUES ('contactInfo_3779', 'CI_ResponsibleParty_1930', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3780', 'contactInfo_3779', 0); INSERT INTO est_inclus VALUES ('phone_3781', 'CI_Contact_3780', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3782', 'phone_3781', 0); INSERT INTO est_inclus VALUES ('voice_3783', 'CI_Telephone_3782', 1); INSERT INTO est_inclus VALUES ('facsimile_3784', 'CI_Telephone_3782', 2); INSERT INTO est_inclus VALUES ('address_3785', 'CI_Contact_3780', 2); INSERT INTO est_inclus VALUES ('CI_Address_3786', 'address_3785', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3787', 'CI_Address_3786', 1); INSERT INTO est_inclus VALUES ('city_3788', 'CI_Address_3786', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3789', 'CI_Address_3786', 3); INSERT INTO est_inclus VALUES ('postalCode_3790', 'CI_Address_3786', 4); INSERT INTO est_inclus VALUES ('country_3791', 'CI_Address_3786', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3792', 'CI_Address_3786', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3793', 'CI_Contact_3780', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3794', 'onlineRessource_3793', 0); INSERT INTO est_inclus VALUES ('linkage_3795', 'CI_OnlineResource_3794', 1); INSERT INTO est_inclus VALUES ('protocol_3796', 'CI_OnlineResource_3794', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3797', 'CI_OnlineResource_3794', 3); INSERT INTO est_inclus VALUES ('name_3798', 'CI_OnlineResource_3794', 4); INSERT INTO est_inclus VALUES ('description_3799', 'CI_OnlineResource_3794', 5); INSERT INTO est_inclus VALUES ('function_3800', 'CI_OnlineResource_3794', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3801', 'CI_Contact_3780', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3802', 'CI_Contact_3780', 5); INSERT INTO est_inclus VALUES ('role_3803', 'CI_ResponsibleParty_1930', 5); INSERT INTO est_inclus VALUES ('title_3804', 'CI_Citation_1945', 1); INSERT INTO est_inclus VALUES ('alternateTitle_3805', 'CI_Citation_1945', 2); INSERT INTO est_inclus VALUES ('datec_3806', 'CI_Citation_1945', 3); INSERT INTO est_inclus VALUES ('CI_Date_3807', 'datec_3806', 0); INSERT INTO est_inclus VALUES ('date_3808', 'CI_Date_3807', 1); INSERT INTO est_inclus VALUES ('dateType_3809', 'CI_Date_3807', 2); INSERT INTO est_inclus VALUES ('edition_3810', 'CI_Citation_1945', 4); INSERT INTO est_inclus VALUES ('editionDate_3811', 'CI_Citation_1945', 5); INSERT INTO est_inclus VALUES ('identifier_3812', 'CI_Citation_1945', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_3813', 'identifier_3812', 0); INSERT INTO est_inclus VALUES ('authority_3814', 'MD_Identifier_3813', 1); INSERT INTO est_inclus VALUES ('code_3815', 'MD_Identifier_3813', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_3816', 'CI_Citation_1945', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_3817', 'citedResponsibleParty_3816', 0); INSERT INTO est_inclus VALUES ('presentationForm_3818', 'CI_Citation_1945', 8); INSERT INTO est_inclus VALUES ('series_3819', 'CI_Citation_1945', 9); INSERT INTO est_inclus VALUES ('CI_Series_3820', 'series_3819', 0); INSERT INTO est_inclus VALUES ('name_3821', 'CI_Series_3820', 1); INSERT INTO est_inclus VALUES ('issueIdentification_3822', 'CI_Series_3820', 2); INSERT INTO est_inclus VALUES ('page_3823', 'CI_Series_3820', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_3824', 'CI_Citation_1945', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_3825', 'CI_Citation_1945', 11); INSERT INTO est_inclus VALUES ('ISBN_3826', 'CI_Citation_1945', 12); INSERT INTO est_inclus VALUES ('ISSN_3827', 'CI_Citation_1945', 13); INSERT INTO est_inclus VALUES ('individualName_3828', 'CI_ResponsibleParty_1964', 1); INSERT INTO est_inclus VALUES ('organisationName_3829', 'CI_ResponsibleParty_1964', 2); INSERT INTO est_inclus VALUES ('positionName_3830', 'CI_ResponsibleParty_1964', 3); INSERT INTO est_inclus VALUES ('contactInfo_3831', 'CI_ResponsibleParty_1964', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3832', 'contactInfo_3831', 0); INSERT INTO est_inclus VALUES ('phone_3833', 'CI_Contact_3832', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3834', 'phone_3833', 0); INSERT INTO est_inclus VALUES ('voice_3835', 'CI_Telephone_3834', 1); INSERT INTO est_inclus VALUES ('facsimile_3836', 'CI_Telephone_3834', 2); INSERT INTO est_inclus VALUES ('address_3837', 'CI_Contact_3832', 2); INSERT INTO est_inclus VALUES ('CI_Address_3838', 'address_3837', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3839', 'CI_Address_3838', 1); INSERT INTO est_inclus VALUES ('city_3840', 'CI_Address_3838', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3841', 'CI_Address_3838', 3); INSERT INTO est_inclus VALUES ('postalCode_3842', 'CI_Address_3838', 4); INSERT INTO est_inclus VALUES ('country_3843', 'CI_Address_3838', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3844', 'CI_Address_3838', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3845', 'CI_Contact_3832', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3846', 'onlineRessource_3845', 0); INSERT INTO est_inclus VALUES ('linkage_3847', 'CI_OnlineResource_3846', 1); INSERT INTO est_inclus VALUES ('protocol_3848', 'CI_OnlineResource_3846', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3849', 'CI_OnlineResource_3846', 3); INSERT INTO est_inclus VALUES ('name_3850', 'CI_OnlineResource_3846', 4); INSERT INTO est_inclus VALUES ('description_3851', 'CI_OnlineResource_3846', 5); INSERT INTO est_inclus VALUES ('function_3852', 'CI_OnlineResource_3846', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3853', 'CI_Contact_3832', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3854', 'CI_Contact_3832', 5); INSERT INTO est_inclus VALUES ('role_3855', 'CI_ResponsibleParty_1964', 5); INSERT INTO est_inclus VALUES ('individualName_3856', 'CI_ResponsibleParty_1988', 1); INSERT INTO est_inclus VALUES ('organisationName_3857', 'CI_ResponsibleParty_1988', 2); INSERT INTO est_inclus VALUES ('positionName_3858', 'CI_ResponsibleParty_1988', 3); INSERT INTO est_inclus VALUES ('contactInfo_3859', 'CI_ResponsibleParty_1988', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3860', 'contactInfo_3859', 0); INSERT INTO est_inclus VALUES ('phone_3861', 'CI_Contact_3860', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3862', 'phone_3861', 0); INSERT INTO est_inclus VALUES ('voice_3863', 'CI_Telephone_3862', 1); INSERT INTO est_inclus VALUES ('facsimile_3864', 'CI_Telephone_3862', 2); INSERT INTO est_inclus VALUES ('address_3865', 'CI_Contact_3860', 2); INSERT INTO est_inclus VALUES ('CI_Address_3866', 'address_3865', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3867', 'CI_Address_3866', 1); INSERT INTO est_inclus VALUES ('city_3868', 'CI_Address_3866', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3869', 'CI_Address_3866', 3); INSERT INTO est_inclus VALUES ('postalCode_3870', 'CI_Address_3866', 4); INSERT INTO est_inclus VALUES ('country_3871', 'CI_Address_3866', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3872', 'CI_Address_3866', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3873', 'CI_Contact_3860', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3874', 'onlineRessource_3873', 0); INSERT INTO est_inclus VALUES ('linkage_3875', 'CI_OnlineResource_3874', 1); INSERT INTO est_inclus VALUES ('protocol_3876', 'CI_OnlineResource_3874', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3877', 'CI_OnlineResource_3874', 3); INSERT INTO est_inclus VALUES ('name_3878', 'CI_OnlineResource_3874', 4); INSERT INTO est_inclus VALUES ('description_3879', 'CI_OnlineResource_3874', 5); INSERT INTO est_inclus VALUES ('function_3880', 'CI_OnlineResource_3874', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3881', 'CI_Contact_3860', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3882', 'CI_Contact_3860', 5); INSERT INTO est_inclus VALUES ('role_3883', 'CI_ResponsibleParty_1988', 5); INSERT INTO est_inclus VALUES ('individualName_3884', 'CI_ResponsibleParty_2012', 1); INSERT INTO est_inclus VALUES ('organisationName_3885', 'CI_ResponsibleParty_2012', 2); INSERT INTO est_inclus VALUES ('positionName_3886', 'CI_ResponsibleParty_2012', 3); INSERT INTO est_inclus VALUES ('contactInfo_3887', 'CI_ResponsibleParty_2012', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3888', 'contactInfo_3887', 0); INSERT INTO est_inclus VALUES ('phone_3889', 'CI_Contact_3888', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3890', 'phone_3889', 0); INSERT INTO est_inclus VALUES ('voice_3891', 'CI_Telephone_3890', 1); INSERT INTO est_inclus VALUES ('facsimile_3892', 'CI_Telephone_3890', 2); INSERT INTO est_inclus VALUES ('address_3893', 'CI_Contact_3888', 2); INSERT INTO est_inclus VALUES ('CI_Address_3894', 'address_3893', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3895', 'CI_Address_3894', 1); INSERT INTO est_inclus VALUES ('city_3896', 'CI_Address_3894', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3897', 'CI_Address_3894', 3); INSERT INTO est_inclus VALUES ('postalCode_3898', 'CI_Address_3894', 4); INSERT INTO est_inclus VALUES ('country_3899', 'CI_Address_3894', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3900', 'CI_Address_3894', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3901', 'CI_Contact_3888', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3902', 'onlineRessource_3901', 0); INSERT INTO est_inclus VALUES ('linkage_3903', 'CI_OnlineResource_3902', 1); INSERT INTO est_inclus VALUES ('protocol_3904', 'CI_OnlineResource_3902', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3905', 'CI_OnlineResource_3902', 3); INSERT INTO est_inclus VALUES ('name_3906', 'CI_OnlineResource_3902', 4); INSERT INTO est_inclus VALUES ('description_3907', 'CI_OnlineResource_3902', 5); INSERT INTO est_inclus VALUES ('function_3908', 'CI_OnlineResource_3902', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3909', 'CI_Contact_3888', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3910', 'CI_Contact_3888', 5); INSERT INTO est_inclus VALUES ('role_3911', 'CI_ResponsibleParty_2012', 5); INSERT INTO est_inclus VALUES ('individualName_3912', 'CI_ResponsibleParty_2036', 1); INSERT INTO est_inclus VALUES ('organisationName_3913', 'CI_ResponsibleParty_2036', 2); INSERT INTO est_inclus VALUES ('positionName_3914', 'CI_ResponsibleParty_2036', 3); INSERT INTO est_inclus VALUES ('contactInfo_3915', 'CI_ResponsibleParty_2036', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3916', 'contactInfo_3915', 0); INSERT INTO est_inclus VALUES ('phone_3917', 'CI_Contact_3916', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3918', 'phone_3917', 0); INSERT INTO est_inclus VALUES ('voice_3919', 'CI_Telephone_3918', 1); INSERT INTO est_inclus VALUES ('facsimile_3920', 'CI_Telephone_3918', 2); INSERT INTO est_inclus VALUES ('address_3921', 'CI_Contact_3916', 2); INSERT INTO est_inclus VALUES ('CI_Address_3922', 'address_3921', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3923', 'CI_Address_3922', 1); INSERT INTO est_inclus VALUES ('city_3924', 'CI_Address_3922', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3925', 'CI_Address_3922', 3); INSERT INTO est_inclus VALUES ('postalCode_3926', 'CI_Address_3922', 4); INSERT INTO est_inclus VALUES ('country_3927', 'CI_Address_3922', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3928', 'CI_Address_3922', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3929', 'CI_Contact_3916', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3930', 'onlineRessource_3929', 0); INSERT INTO est_inclus VALUES ('linkage_3931', 'CI_OnlineResource_3930', 1); INSERT INTO est_inclus VALUES ('protocol_3932', 'CI_OnlineResource_3930', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3933', 'CI_OnlineResource_3930', 3); INSERT INTO est_inclus VALUES ('name_3934', 'CI_OnlineResource_3930', 4); INSERT INTO est_inclus VALUES ('description_3935', 'CI_OnlineResource_3930', 5); INSERT INTO est_inclus VALUES ('function_3936', 'CI_OnlineResource_3930', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3937', 'CI_Contact_3916', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3938', 'CI_Contact_3916', 5); INSERT INTO est_inclus VALUES ('role_3939', 'CI_ResponsibleParty_2036', 5); INSERT INTO est_inclus VALUES ('individualName_3940', 'CI_ResponsibleParty_2060', 1); INSERT INTO est_inclus VALUES ('organisationName_3941', 'CI_ResponsibleParty_2060', 2); INSERT INTO est_inclus VALUES ('positionName_3942', 'CI_ResponsibleParty_2060', 3); INSERT INTO est_inclus VALUES ('contactInfo_3943', 'CI_ResponsibleParty_2060', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3944', 'contactInfo_3943', 0); INSERT INTO est_inclus VALUES ('phone_3945', 'CI_Contact_3944', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3946', 'phone_3945', 0); INSERT INTO est_inclus VALUES ('voice_3947', 'CI_Telephone_3946', 1); INSERT INTO est_inclus VALUES ('facsimile_3948', 'CI_Telephone_3946', 2); INSERT INTO est_inclus VALUES ('address_3949', 'CI_Contact_3944', 2); INSERT INTO est_inclus VALUES ('CI_Address_3950', 'address_3949', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3951', 'CI_Address_3950', 1); INSERT INTO est_inclus VALUES ('city_3952', 'CI_Address_3950', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3953', 'CI_Address_3950', 3); INSERT INTO est_inclus VALUES ('postalCode_3954', 'CI_Address_3950', 4); INSERT INTO est_inclus VALUES ('country_3955', 'CI_Address_3950', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3956', 'CI_Address_3950', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3957', 'CI_Contact_3944', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3958', 'onlineRessource_3957', 0); INSERT INTO est_inclus VALUES ('linkage_3959', 'CI_OnlineResource_3958', 1); INSERT INTO est_inclus VALUES ('protocol_3960', 'CI_OnlineResource_3958', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3961', 'CI_OnlineResource_3958', 3); INSERT INTO est_inclus VALUES ('name_3962', 'CI_OnlineResource_3958', 4); INSERT INTO est_inclus VALUES ('description_3963', 'CI_OnlineResource_3958', 5); INSERT INTO est_inclus VALUES ('function_3964', 'CI_OnlineResource_3958', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3965', 'CI_Contact_3944', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3966', 'CI_Contact_3944', 5); INSERT INTO est_inclus VALUES ('role_3967', 'CI_ResponsibleParty_2060', 5); INSERT INTO est_inclus VALUES ('individualName_3968', 'CI_ResponsibleParty_2084', 1); INSERT INTO est_inclus VALUES ('organisationName_3969', 'CI_ResponsibleParty_2084', 2); INSERT INTO est_inclus VALUES ('positionName_3970', 'CI_ResponsibleParty_2084', 3); INSERT INTO est_inclus VALUES ('contactInfo_3971', 'CI_ResponsibleParty_2084', 4); INSERT INTO est_inclus VALUES ('CI_Contact_3972', 'contactInfo_3971', 0); INSERT INTO est_inclus VALUES ('phone_3973', 'CI_Contact_3972', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_3974', 'phone_3973', 0); INSERT INTO est_inclus VALUES ('voice_3975', 'CI_Telephone_3974', 1); INSERT INTO est_inclus VALUES ('facsimile_3976', 'CI_Telephone_3974', 2); INSERT INTO est_inclus VALUES ('address_3977', 'CI_Contact_3972', 2); INSERT INTO est_inclus VALUES ('CI_Address_3978', 'address_3977', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_3979', 'CI_Address_3978', 1); INSERT INTO est_inclus VALUES ('city_3980', 'CI_Address_3978', 2); INSERT INTO est_inclus VALUES ('administrativeArea_3981', 'CI_Address_3978', 3); INSERT INTO est_inclus VALUES ('postalCode_3982', 'CI_Address_3978', 4); INSERT INTO est_inclus VALUES ('country_3983', 'CI_Address_3978', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_3984', 'CI_Address_3978', 6); INSERT INTO est_inclus VALUES ('onlineRessource_3985', 'CI_Contact_3972', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_3986', 'onlineRessource_3985', 0); INSERT INTO est_inclus VALUES ('linkage_3987', 'CI_OnlineResource_3986', 1); INSERT INTO est_inclus VALUES ('protocol_3988', 'CI_OnlineResource_3986', 2); INSERT INTO est_inclus VALUES ('applicationProfile_3989', 'CI_OnlineResource_3986', 3); INSERT INTO est_inclus VALUES ('name_3990', 'CI_OnlineResource_3986', 4); INSERT INTO est_inclus VALUES ('description_3991', 'CI_OnlineResource_3986', 5); INSERT INTO est_inclus VALUES ('function_3992', 'CI_OnlineResource_3986', 6); INSERT INTO est_inclus VALUES ('hoursOfService_3993', 'CI_Contact_3972', 4); INSERT INTO est_inclus VALUES ('contactInstructions_3994', 'CI_Contact_3972', 5); INSERT INTO est_inclus VALUES ('role_3995', 'CI_ResponsibleParty_2084', 5); INSERT INTO est_inclus VALUES ('individualName_3996', 'CI_ResponsibleParty_2108', 1); INSERT INTO est_inclus VALUES ('organisationName_3997', 'CI_ResponsibleParty_2108', 2); INSERT INTO est_inclus VALUES ('positionName_3998', 'CI_ResponsibleParty_2108', 3); INSERT INTO est_inclus VALUES ('contactInfo_3999', 'CI_ResponsibleParty_2108', 4); INSERT INTO est_inclus VALUES ('CI_Contact_4000', 'contactInfo_3999', 0); INSERT INTO est_inclus VALUES ('phone_4001', 'CI_Contact_4000', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_4002', 'phone_4001', 0); INSERT INTO est_inclus VALUES ('voice_4003', 'CI_Telephone_4002', 1); INSERT INTO est_inclus VALUES ('facsimile_4004', 'CI_Telephone_4002', 2); INSERT INTO est_inclus VALUES ('address_4005', 'CI_Contact_4000', 2); INSERT INTO est_inclus VALUES ('CI_Address_4006', 'address_4005', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_4007', 'CI_Address_4006', 1); INSERT INTO est_inclus VALUES ('city_4008', 'CI_Address_4006', 2); INSERT INTO est_inclus VALUES ('administrativeArea_4009', 'CI_Address_4006', 3); INSERT INTO est_inclus VALUES ('postalCode_4010', 'CI_Address_4006', 4); INSERT INTO est_inclus VALUES ('country_4011', 'CI_Address_4006', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_4012', 'CI_Address_4006', 6); INSERT INTO est_inclus VALUES ('onlineRessource_4013', 'CI_Contact_4000', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_4014', 'onlineRessource_4013', 0); INSERT INTO est_inclus VALUES ('linkage_4015', 'CI_OnlineResource_4014', 1); INSERT INTO est_inclus VALUES ('protocol_4016', 'CI_OnlineResource_4014', 2); INSERT INTO est_inclus VALUES ('applicationProfile_4017', 'CI_OnlineResource_4014', 3); INSERT INTO est_inclus VALUES ('name_4018', 'CI_OnlineResource_4014', 4); INSERT INTO est_inclus VALUES ('description_4019', 'CI_OnlineResource_4014', 5); INSERT INTO est_inclus VALUES ('function_4020', 'CI_OnlineResource_4014', 6); INSERT INTO est_inclus VALUES ('hoursOfService_4021', 'CI_Contact_4000', 4); INSERT INTO est_inclus VALUES ('contactInstructions_4022', 'CI_Contact_4000', 5); INSERT INTO est_inclus VALUES ('role_4023', 'CI_ResponsibleParty_2108', 5); INSERT INTO est_inclus VALUES ('individualName_4024', 'CI_ResponsibleParty_2132', 1); INSERT INTO est_inclus VALUES ('organisationName_4025', 'CI_ResponsibleParty_2132', 2); INSERT INTO est_inclus VALUES ('positionName_4026', 'CI_ResponsibleParty_2132', 3); INSERT INTO est_inclus VALUES ('contactInfo_4027', 'CI_ResponsibleParty_2132', 4); INSERT INTO est_inclus VALUES ('CI_Contact_4028', 'contactInfo_4027', 0); INSERT INTO est_inclus VALUES ('phone_4029', 'CI_Contact_4028', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_4030', 'phone_4029', 0); INSERT INTO est_inclus VALUES ('voice_4031', 'CI_Telephone_4030', 1); INSERT INTO est_inclus VALUES ('facsimile_4032', 'CI_Telephone_4030', 2); INSERT INTO est_inclus VALUES ('address_4033', 'CI_Contact_4028', 2); INSERT INTO est_inclus VALUES ('CI_Address_4034', 'address_4033', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_4035', 'CI_Address_4034', 1); INSERT INTO est_inclus VALUES ('city_4036', 'CI_Address_4034', 2); INSERT INTO est_inclus VALUES ('administrativeArea_4037', 'CI_Address_4034', 3); INSERT INTO est_inclus VALUES ('postalCode_4038', 'CI_Address_4034', 4); INSERT INTO est_inclus VALUES ('country_4039', 'CI_Address_4034', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_4040', 'CI_Address_4034', 6); INSERT INTO est_inclus VALUES ('onlineRessource_4041', 'CI_Contact_4028', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_4042', 'onlineRessource_4041', 0); INSERT INTO est_inclus VALUES ('linkage_4043', 'CI_OnlineResource_4042', 1); INSERT INTO est_inclus VALUES ('protocol_4044', 'CI_OnlineResource_4042', 2); INSERT INTO est_inclus VALUES ('applicationProfile_4045', 'CI_OnlineResource_4042', 3); INSERT INTO est_inclus VALUES ('name_4046', 'CI_OnlineResource_4042', 4); INSERT INTO est_inclus VALUES ('description_4047', 'CI_OnlineResource_4042', 5); INSERT INTO est_inclus VALUES ('function_4048', 'CI_OnlineResource_4042', 6); INSERT INTO est_inclus VALUES ('hoursOfService_4049', 'CI_Contact_4028', 4); INSERT INTO est_inclus VALUES ('contactInstructions_4050', 'CI_Contact_4028', 5); INSERT INTO est_inclus VALUES ('role_4051', 'CI_ResponsibleParty_2132', 5); INSERT INTO est_inclus VALUES ('title_4052', 'CI_Citation_2144', 1); INSERT INTO est_inclus VALUES ('alternateTitle_4053', 'CI_Citation_2144', 2); INSERT INTO est_inclus VALUES ('datec_4054', 'CI_Citation_2144', 3); INSERT INTO est_inclus VALUES ('CI_Date_4055', 'datec_4054', 0); INSERT INTO est_inclus VALUES ('date_4056', 'CI_Date_4055', 1); INSERT INTO est_inclus VALUES ('dateType_4057', 'CI_Date_4055', 2); INSERT INTO est_inclus VALUES ('edition_4058', 'CI_Citation_2144', 4); INSERT INTO est_inclus VALUES ('editionDate_4059', 'CI_Citation_2144', 5); INSERT INTO est_inclus VALUES ('identifier_4060', 'CI_Citation_2144', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_4061', 'identifier_4060', 0); INSERT INTO est_inclus VALUES ('authority_4062', 'MD_Identifier_4061', 1); INSERT INTO est_inclus VALUES ('code_4063', 'MD_Identifier_4061', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_4064', 'CI_Citation_2144', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_4065', 'citedResponsibleParty_4064', 0); INSERT INTO est_inclus VALUES ('presentationForm_4066', 'CI_Citation_2144', 8); INSERT INTO est_inclus VALUES ('series_4067', 'CI_Citation_2144', 9); INSERT INTO est_inclus VALUES ('CI_Series_4068', 'series_4067', 0); INSERT INTO est_inclus VALUES ('name_4069', 'CI_Series_4068', 1); INSERT INTO est_inclus VALUES ('issueIdentification_4070', 'CI_Series_4068', 2); INSERT INTO est_inclus VALUES ('page_4071', 'CI_Series_4068', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_4072', 'CI_Citation_2144', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_4073', 'CI_Citation_2144', 11); INSERT INTO est_inclus VALUES ('ISBN_4074', 'CI_Citation_2144', 12); INSERT INTO est_inclus VALUES ('ISSN_4075', 'CI_Citation_2144', 13); INSERT INTO est_inclus VALUES ('individualName_4076', 'CI_ResponsibleParty_2159', 1); INSERT INTO est_inclus VALUES ('organisationName_4077', 'CI_ResponsibleParty_2159', 2); INSERT INTO est_inclus VALUES ('positionName_4078', 'CI_ResponsibleParty_2159', 3); INSERT INTO est_inclus VALUES ('contactInfo_4079', 'CI_ResponsibleParty_2159', 4); INSERT INTO est_inclus VALUES ('CI_Contact_4080', 'contactInfo_4079', 0); INSERT INTO est_inclus VALUES ('phone_4081', 'CI_Contact_4080', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_4082', 'phone_4081', 0); INSERT INTO est_inclus VALUES ('voice_4083', 'CI_Telephone_4082', 1); INSERT INTO est_inclus VALUES ('facsimile_4084', 'CI_Telephone_4082', 2); INSERT INTO est_inclus VALUES ('address_4085', 'CI_Contact_4080', 2); INSERT INTO est_inclus VALUES ('CI_Address_4086', 'address_4085', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_4087', 'CI_Address_4086', 1); INSERT INTO est_inclus VALUES ('city_4088', 'CI_Address_4086', 2); INSERT INTO est_inclus VALUES ('administrativeArea_4089', 'CI_Address_4086', 3); INSERT INTO est_inclus VALUES ('postalCode_4090', 'CI_Address_4086', 4); INSERT INTO est_inclus VALUES ('country_4091', 'CI_Address_4086', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_4092', 'CI_Address_4086', 6); INSERT INTO est_inclus VALUES ('onlineRessource_4093', 'CI_Contact_4080', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_4094', 'onlineRessource_4093', 0); INSERT INTO est_inclus VALUES ('linkage_4095', 'CI_OnlineResource_4094', 1); INSERT INTO est_inclus VALUES ('protocol_4096', 'CI_OnlineResource_4094', 2); INSERT INTO est_inclus VALUES ('applicationProfile_4097', 'CI_OnlineResource_4094', 3); INSERT INTO est_inclus VALUES ('name_4098', 'CI_OnlineResource_4094', 4); INSERT INTO est_inclus VALUES ('description_4099', 'CI_OnlineResource_4094', 5); INSERT INTO est_inclus VALUES ('function_4100', 'CI_OnlineResource_4094', 6); INSERT INTO est_inclus VALUES ('hoursOfService_4101', 'CI_Contact_4080', 4); INSERT INTO est_inclus VALUES ('contactInstructions_4102', 'CI_Contact_4080', 5); INSERT INTO est_inclus VALUES ('role_4103', 'CI_ResponsibleParty_2159', 5); INSERT INTO est_inclus VALUES ('title_4104', 'CI_Citation_2174', 1); INSERT INTO est_inclus VALUES ('alternateTitle_4105', 'CI_Citation_2174', 2); INSERT INTO est_inclus VALUES ('datec_4106', 'CI_Citation_2174', 3); INSERT INTO est_inclus VALUES ('CI_Date_4107', 'datec_4106', 0); INSERT INTO est_inclus VALUES ('date_4108', 'CI_Date_4107', 1); INSERT INTO est_inclus VALUES ('dateType_4109', 'CI_Date_4107', 2); INSERT INTO est_inclus VALUES ('edition_4110', 'CI_Citation_2174', 4); INSERT INTO est_inclus VALUES ('editionDate_4111', 'CI_Citation_2174', 5); INSERT INTO est_inclus VALUES ('identifier_4112', 'CI_Citation_2174', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_4113', 'identifier_4112', 0); INSERT INTO est_inclus VALUES ('authority_4114', 'MD_Identifier_4113', 1); INSERT INTO est_inclus VALUES ('code_4115', 'MD_Identifier_4113', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_4116', 'CI_Citation_2174', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_4117', 'citedResponsibleParty_4116', 0); INSERT INTO est_inclus VALUES ('presentationForm_4118', 'CI_Citation_2174', 8); INSERT INTO est_inclus VALUES ('series_4119', 'CI_Citation_2174', 9); INSERT INTO est_inclus VALUES ('CI_Series_4120', 'series_4119', 0); INSERT INTO est_inclus VALUES ('name_4121', 'CI_Series_4120', 1); INSERT INTO est_inclus VALUES ('issueIdentification_4122', 'CI_Series_4120', 2); INSERT INTO est_inclus VALUES ('page_4123', 'CI_Series_4120', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_4124', 'CI_Citation_2174', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_4125', 'CI_Citation_2174', 11); INSERT INTO est_inclus VALUES ('ISBN_4126', 'CI_Citation_2174', 12); INSERT INTO est_inclus VALUES ('ISSN_4127', 'CI_Citation_2174', 13); INSERT INTO est_inclus VALUES ('citation_936', 'MD_ServiceIdentification_69', 1); INSERT INTO est_inclus VALUES ('abstract_963', 'MD_ServiceIdentification_69', 2); INSERT INTO est_inclus VALUES ('CI_Citation_949', 'citation_936', 0); INSERT INTO est_inclus VALUES ('title_924', 'CI_Citation_949', 1); INSERT INTO est_inclus VALUES ('alternateTitle_925', 'CI_Citation_949', 2); INSERT INTO est_inclus VALUES ('datec_926', 'CI_Citation_949', 3); INSERT INTO est_inclus VALUES ('CI_Date_927', 'datec_926', 0); INSERT INTO est_inclus VALUES ('date_928', 'CI_Date_927', 1); INSERT INTO est_inclus VALUES ('dateType_929', 'CI_Date_927', 2); INSERT INTO est_inclus VALUES ('edition_930', 'CI_Citation_949', 4); INSERT INTO est_inclus VALUES ('editionDate_931', 'CI_Citation_949', 5); INSERT INTO est_inclus VALUES ('identifier_932', 'CI_Citation_949', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_933', 'identifier_932', 0); INSERT INTO est_inclus VALUES ('authority_934', 'MD_Identifier_933', 1); INSERT INTO est_inclus VALUES ('code_935', 'MD_Identifier_933', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_936', 'CI_Citation_949', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_937', 'citedResponsibleParty_936', 0); INSERT INTO est_inclus VALUES ('presentationForm_938', 'CI_Citation_949', 8); INSERT INTO est_inclus VALUES ('series_939', 'CI_Citation_949', 9); INSERT INTO est_inclus VALUES ('CI_Series_940', 'series_939', 0); INSERT INTO est_inclus VALUES ('name_941', 'CI_Series_940', 1); INSERT INTO est_inclus VALUES ('issueIdentification_942', 'CI_Series_940', 2); INSERT INTO est_inclus VALUES ('page_943', 'CI_Series_940', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_944', 'CI_Citation_949', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_945', 'CI_Citation_949', 11); INSERT INTO est_inclus VALUES ('ISBN_946', 'CI_Citation_949', 12); INSERT INTO est_inclus VALUES ('ISSN_947', 'CI_Citation_949', 13); INSERT INTO est_inclus VALUES ('purpose_937', 'MD_ServiceIdentification_69', 3); INSERT INTO est_inclus VALUES ('credit_938', 'MD_ServiceIdentification_69', 4); INSERT INTO est_inclus VALUES ('status_940', 'MD_ServiceIdentification_69', 5); INSERT INTO est_inclus VALUES ('pointOfContact_941', 'MD_ServiceIdentification_69', 6); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_950', 'pointOfContact_941', 0); INSERT INTO est_inclus VALUES ('individualName_948', 'CI_ResponsibleParty_950', 1); INSERT INTO est_inclus VALUES ('organisationName_949', 'CI_ResponsibleParty_950', 2); INSERT INTO est_inclus VALUES ('positionName_950', 'CI_ResponsibleParty_950', 3); INSERT INTO est_inclus VALUES ('contactInfo_951', 'CI_ResponsibleParty_950', 4); INSERT INTO est_inclus VALUES ('CI_Contact_952', 'contactInfo_951', 0); INSERT INTO est_inclus VALUES ('phone_953', 'CI_Contact_952', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_954', 'phone_953', 0); INSERT INTO est_inclus VALUES ('voice_955', 'CI_Telephone_954', 1); INSERT INTO est_inclus VALUES ('facsimile_956', 'CI_Telephone_954', 2); INSERT INTO est_inclus VALUES ('address_957', 'CI_Contact_952', 2); INSERT INTO est_inclus VALUES ('CI_Address_958', 'address_957', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_959', 'CI_Address_958', 1); INSERT INTO est_inclus VALUES ('city_960', 'CI_Address_958', 2); INSERT INTO est_inclus VALUES ('administrativeArea_961', 'CI_Address_958', 3); INSERT INTO est_inclus VALUES ('postalCode_962', 'CI_Address_958', 4); INSERT INTO est_inclus VALUES ('country_963', 'CI_Address_958', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_964', 'CI_Address_958', 6); INSERT INTO est_inclus VALUES ('onlineRessource_965', 'CI_Contact_952', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_966', 'onlineRessource_965', 0); INSERT INTO est_inclus VALUES ('linkage_967', 'CI_OnlineResource_966', 1); INSERT INTO est_inclus VALUES ('protocol_968', 'CI_OnlineResource_966', 2); INSERT INTO est_inclus VALUES ('applicationProfile_969', 'CI_OnlineResource_966', 3); INSERT INTO est_inclus VALUES ('name_970', 'CI_OnlineResource_966', 4); INSERT INTO est_inclus VALUES ('description_971', 'CI_OnlineResource_966', 5); INSERT INTO est_inclus VALUES ('function_972', 'CI_OnlineResource_966', 6); INSERT INTO est_inclus VALUES ('hoursOfService_973', 'CI_Contact_952', 4); INSERT INTO est_inclus VALUES ('contactInstructions_974', 'CI_Contact_952', 5); INSERT INTO est_inclus VALUES ('role_975', 'CI_ResponsibleParty_950', 5); INSERT INTO est_inclus VALUES ('descriptiveKeywords_942', 'MD_ServiceIdentification_69', 7); INSERT INTO est_inclus VALUES ('MD_Keywords_951', 'descriptiveKeywords_942', 0); INSERT INTO est_inclus VALUES ('keyword_952', 'MD_Keywords_951', 1); INSERT INTO est_inclus VALUES ('Type_953', 'MD_Keywords_951', 2); INSERT INTO est_inclus VALUES ('ThesaurusName_954', 'MD_Keywords_951', 3); INSERT INTO est_inclus VALUES ('CI_Citation_957', 'ThesaurusName_954', 0); INSERT INTO est_inclus VALUES ('title_976', 'CI_Citation_957', 1); INSERT INTO est_inclus VALUES ('alternateTitle_977', 'CI_Citation_957', 2); INSERT INTO est_inclus VALUES ('datec_978', 'CI_Citation_957', 3); INSERT INTO est_inclus VALUES ('CI_Date_979', 'datec_978', 0); INSERT INTO est_inclus VALUES ('date_980', 'CI_Date_979', 1); INSERT INTO est_inclus VALUES ('dateType_981', 'CI_Date_979', 2); INSERT INTO est_inclus VALUES ('edition_982', 'CI_Citation_957', 4); INSERT INTO est_inclus VALUES ('editionDate_983', 'CI_Citation_957', 5); INSERT INTO est_inclus VALUES ('identifier_984', 'CI_Citation_957', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_985', 'identifier_984', 0); INSERT INTO est_inclus VALUES ('authority_986', 'MD_Identifier_985', 1); INSERT INTO est_inclus VALUES ('code_987', 'MD_Identifier_985', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_988', 'CI_Citation_957', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_989', 'citedResponsibleParty_988', 0); INSERT INTO est_inclus VALUES ('presentationForm_990', 'CI_Citation_957', 8); INSERT INTO est_inclus VALUES ('series_991', 'CI_Citation_957', 9); INSERT INTO est_inclus VALUES ('CI_Series_992', 'series_991', 0); INSERT INTO est_inclus VALUES ('name_993', 'CI_Series_992', 1); INSERT INTO est_inclus VALUES ('issueIdentification_994', 'CI_Series_992', 2); INSERT INTO est_inclus VALUES ('page_995', 'CI_Series_992', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_996', 'CI_Citation_957', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_997', 'CI_Citation_957', 11); INSERT INTO est_inclus VALUES ('ISBN_998', 'CI_Citation_957', 12); INSERT INTO est_inclus VALUES ('ISSN_999', 'CI_Citation_957', 13); INSERT INTO est_inclus VALUES ('serviceType_925', 'MD_ServiceIdentification_69', 8); INSERT INTO est_inclus VALUES ('serviceTypeVersion_926', 'MD_ServiceIdentification_69', 9); INSERT INTO est_inclus VALUES ('accessProperties_930', 'MD_ServiceIdentification_69', 10); INSERT INTO est_inclus VALUES ('MD_StandardOrderProcess_931', 'accessProperties_930', 0); INSERT INTO est_inclus VALUES ('fees_964', 'MD_StandardOrderProcess_931', 1); INSERT INTO est_inclus VALUES ('plannedAvailableDateTime_965', 'MD_StandardOrderProcess_931', 2); INSERT INTO est_inclus VALUES ('orderingInstructions_966', 'MD_StandardOrderProcess_931', 3); INSERT INTO est_inclus VALUES ('turnaround_967', 'MD_StandardOrderProcess_931', 4); INSERT INTO est_inclus VALUES ('restrictions_932', 'MD_ServiceIdentification_69', 11); INSERT INTO est_inclus VALUES ('MD_Constraints_933', 'restrictions_932', 0); INSERT INTO est_inclus VALUES ('useLimitation_968', 'MD_Constraints_933', 1); INSERT INTO est_inclus VALUES ('CI_Citation_980', 'MD_Constraints_933', 2); INSERT INTO est_inclus VALUES ('title_1000', 'CI_Citation_980', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1001', 'CI_Citation_980', 2); INSERT INTO est_inclus VALUES ('datec_1002', 'CI_Citation_980', 3); INSERT INTO est_inclus VALUES ('CI_Date_1003', 'datec_1002', 0); INSERT INTO est_inclus VALUES ('date_1004', 'CI_Date_1003', 1); INSERT INTO est_inclus VALUES ('dateType_1005', 'CI_Date_1003', 2); INSERT INTO est_inclus VALUES ('edition_1006', 'CI_Citation_980', 4); INSERT INTO est_inclus VALUES ('editionDate_1007', 'CI_Citation_980', 5); INSERT INTO est_inclus VALUES ('identifier_1008', 'CI_Citation_980', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1009', 'identifier_1008', 0); INSERT INTO est_inclus VALUES ('authority_1010', 'MD_Identifier_1009', 1); INSERT INTO est_inclus VALUES ('code_1011', 'MD_Identifier_1009', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1012', 'CI_Citation_980', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1013', 'citedResponsibleParty_1012', 0); INSERT INTO est_inclus VALUES ('presentationForm_1014', 'CI_Citation_980', 8); INSERT INTO est_inclus VALUES ('series_1015', 'CI_Citation_980', 9); INSERT INTO est_inclus VALUES ('CI_Series_1016', 'series_1015', 0); INSERT INTO est_inclus VALUES ('name_1017', 'CI_Series_1016', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1018', 'CI_Series_1016', 2); INSERT INTO est_inclus VALUES ('page_1019', 'CI_Series_1016', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1020', 'CI_Citation_980', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1021', 'CI_Citation_980', 11); INSERT INTO est_inclus VALUES ('ISBN_1022', 'CI_Citation_980', 12); INSERT INTO est_inclus VALUES ('ISSN_1023', 'CI_Citation_980', 13); INSERT INTO est_inclus VALUES ('useLimitation_969', 'MD_LegalConstraints_955', 1); INSERT INTO est_inclus VALUES ('accessConstraints_970', 'MD_LegalConstraints_955', 2); INSERT INTO est_inclus VALUES ('useConstraints_971', 'MD_LegalConstraints_955', 3); INSERT INTO est_inclus VALUES ('otherConstraints_972', 'MD_LegalConstraints_955', 4); INSERT INTO est_inclus VALUES ('CI_Citation_979', 'MD_LegalConstraints_955', 5); INSERT INTO est_inclus VALUES ('title_1024', 'CI_Citation_979', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1025', 'CI_Citation_979', 2); INSERT INTO est_inclus VALUES ('datec_1026', 'CI_Citation_979', 3); INSERT INTO est_inclus VALUES ('CI_Date_1027', 'datec_1026', 0); INSERT INTO est_inclus VALUES ('date_1028', 'CI_Date_1027', 1); INSERT INTO est_inclus VALUES ('dateType_1029', 'CI_Date_1027', 2); INSERT INTO est_inclus VALUES ('edition_1030', 'CI_Citation_979', 4); INSERT INTO est_inclus VALUES ('editionDate_1031', 'CI_Citation_979', 5); INSERT INTO est_inclus VALUES ('identifier_1032', 'CI_Citation_979', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1033', 'identifier_1032', 0); INSERT INTO est_inclus VALUES ('authority_1034', 'MD_Identifier_1033', 1); INSERT INTO est_inclus VALUES ('code_1035', 'MD_Identifier_1033', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1036', 'CI_Citation_979', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1037', 'citedResponsibleParty_1036', 0); INSERT INTO est_inclus VALUES ('presentationForm_1038', 'CI_Citation_979', 8); INSERT INTO est_inclus VALUES ('series_1039', 'CI_Citation_979', 9); INSERT INTO est_inclus VALUES ('CI_Series_1040', 'series_1039', 0); INSERT INTO est_inclus VALUES ('name_1041', 'CI_Series_1040', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1042', 'CI_Series_1040', 2); INSERT INTO est_inclus VALUES ('page_1043', 'CI_Series_1040', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1044', 'CI_Citation_979', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1045', 'CI_Citation_979', 11); INSERT INTO est_inclus VALUES ('ISBN_1046', 'CI_Citation_979', 12); INSERT INTO est_inclus VALUES ('ISSN_1047', 'CI_Citation_979', 13); INSERT INTO est_inclus VALUES ('MD_LegalConstraints_955', 'restrictions_932', 0); INSERT INTO est_inclus VALUES ('MD_SecurityConstraints_956', 'restrictions_932', 0); INSERT INTO est_inclus VALUES ('useLimitation_973', 'MD_SecurityConstraints_956', 1); INSERT INTO est_inclus VALUES ('classification_974', 'MD_SecurityConstraints_956', 2); INSERT INTO est_inclus VALUES ('userNote_975', 'MD_SecurityConstraints_956', 3); INSERT INTO est_inclus VALUES ('classificationSystem_976', 'MD_SecurityConstraints_956', 4); INSERT INTO est_inclus VALUES ('handlingDescription_977', 'MD_SecurityConstraints_956', 5); INSERT INTO est_inclus VALUES ('CI_Citation_978', 'MD_SecurityConstraints_956', 6); INSERT INTO est_inclus VALUES ('title_1048', 'CI_Citation_978', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1049', 'CI_Citation_978', 2); INSERT INTO est_inclus VALUES ('datec_1050', 'CI_Citation_978', 3); INSERT INTO est_inclus VALUES ('CI_Date_1051', 'datec_1050', 0); INSERT INTO est_inclus VALUES ('date_1052', 'CI_Date_1051', 1); INSERT INTO est_inclus VALUES ('dateType_1053', 'CI_Date_1051', 2); INSERT INTO est_inclus VALUES ('edition_1054', 'CI_Citation_978', 4); INSERT INTO est_inclus VALUES ('editionDate_1055', 'CI_Citation_978', 5); INSERT INTO est_inclus VALUES ('identifier_1056', 'CI_Citation_978', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1057', 'identifier_1056', 0); INSERT INTO est_inclus VALUES ('authority_1058', 'MD_Identifier_1057', 1); INSERT INTO est_inclus VALUES ('code_1059', 'MD_Identifier_1057', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1060', 'CI_Citation_978', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1061', 'citedResponsibleParty_1060', 0); INSERT INTO est_inclus VALUES ('presentationForm_1062', 'CI_Citation_978', 8); INSERT INTO est_inclus VALUES ('series_1063', 'CI_Citation_978', 9); INSERT INTO est_inclus VALUES ('CI_Series_1064', 'series_1063', 0); INSERT INTO est_inclus VALUES ('name_1065', 'CI_Series_1064', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1066', 'CI_Series_1064', 2); INSERT INTO est_inclus VALUES ('page_1067', 'CI_Series_1064', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1068', 'CI_Citation_978', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1069', 'CI_Citation_978', 11); INSERT INTO est_inclus VALUES ('ISBN_1070', 'CI_Citation_978', 12); INSERT INTO est_inclus VALUES ('ISSN_1071', 'CI_Citation_978', 13); INSERT INTO est_inclus VALUES ('containsOperations_934', 'MD_ServiceIdentification_69', 11); INSERT INTO est_inclus VALUES ('SV_OperationMetadata_935', 'containsOperations_934', 0); INSERT INTO est_inclus VALUES ('operationName_943', 'SV_OperationMetadata_935', 1); INSERT INTO est_inclus VALUES ('DCP_944', 'SV_OperationMetadata_935', 2); INSERT INTO est_inclus VALUES ('operationDescription_945', 'SV_OperationMetadata_935', 3); INSERT INTO est_inclus VALUES ('invocationName_946', 'SV_OperationMetadata_935', 4); INSERT INTO est_inclus VALUES ('connectPoint_947', 'SV_OperationMetadata_935', 5); INSERT INTO est_inclus VALUES ('CI_OnlineResource_948', 'connectPoint_947', 0); INSERT INTO est_inclus VALUES ('linkage_958', 'CI_OnlineResource_948', 1); INSERT INTO est_inclus VALUES ('protocol_959', 'CI_OnlineResource_948', 2); INSERT INTO est_inclus VALUES ('applicationProfile_960', 'CI_OnlineResource_948', 3); INSERT INTO est_inclus VALUES ('name_961', 'CI_OnlineResource_948', 4); INSERT INTO est_inclus VALUES ('description_962', 'CI_OnlineResource_948', 5); INSERT INTO est_inclus VALUES ('function_963', 'CI_OnlineResource_948', 6); INSERT INTO est_inclus VALUES ('individualName_1072', 'CI_ResponsibleParty_937', 1); INSERT INTO est_inclus VALUES ('organisationName_1073', 'CI_ResponsibleParty_937', 2); INSERT INTO est_inclus VALUES ('positionName_1074', 'CI_ResponsibleParty_937', 3); INSERT INTO est_inclus VALUES ('contactInfo_1075', 'CI_ResponsibleParty_937', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1076', 'contactInfo_1075', 0); INSERT INTO est_inclus VALUES ('phone_1077', 'CI_Contact_1076', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1078', 'phone_1077', 0); INSERT INTO est_inclus VALUES ('voice_1079', 'CI_Telephone_1078', 1); INSERT INTO est_inclus VALUES ('facsimile_1080', 'CI_Telephone_1078', 2); INSERT INTO est_inclus VALUES ('address_1081', 'CI_Contact_1076', 2); INSERT INTO est_inclus VALUES ('CI_Address_1082', 'address_1081', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1083', 'CI_Address_1082', 1); INSERT INTO est_inclus VALUES ('city_1084', 'CI_Address_1082', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1085', 'CI_Address_1082', 3); INSERT INTO est_inclus VALUES ('postalCode_1086', 'CI_Address_1082', 4); INSERT INTO est_inclus VALUES ('country_1087', 'CI_Address_1082', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1088', 'CI_Address_1082', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1089', 'CI_Contact_1076', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1090', 'onlineRessource_1089', 0); INSERT INTO est_inclus VALUES ('linkage_1091', 'CI_OnlineResource_1090', 1); INSERT INTO est_inclus VALUES ('protocol_1092', 'CI_OnlineResource_1090', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1093', 'CI_OnlineResource_1090', 3); INSERT INTO est_inclus VALUES ('name_1094', 'CI_OnlineResource_1090', 4); INSERT INTO est_inclus VALUES ('description_1095', 'CI_OnlineResource_1090', 5); INSERT INTO est_inclus VALUES ('function_1096', 'CI_OnlineResource_1090', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1097', 'CI_Contact_1076', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1098', 'CI_Contact_1076', 5); INSERT INTO est_inclus VALUES ('role_1099', 'CI_ResponsibleParty_937', 5); INSERT INTO est_inclus VALUES ('individualName_1100', 'CI_ResponsibleParty_989', 1); INSERT INTO est_inclus VALUES ('organisationName_1101', 'CI_ResponsibleParty_989', 2); INSERT INTO est_inclus VALUES ('positionName_1102', 'CI_ResponsibleParty_989', 3); INSERT INTO est_inclus VALUES ('contactInfo_1103', 'CI_ResponsibleParty_989', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1104', 'contactInfo_1103', 0); INSERT INTO est_inclus VALUES ('phone_1105', 'CI_Contact_1104', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1106', 'phone_1105', 0); INSERT INTO est_inclus VALUES ('voice_1107', 'CI_Telephone_1106', 1); INSERT INTO est_inclus VALUES ('facsimile_1108', 'CI_Telephone_1106', 2); INSERT INTO est_inclus VALUES ('address_1109', 'CI_Contact_1104', 2); INSERT INTO est_inclus VALUES ('CI_Address_1110', 'address_1109', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1111', 'CI_Address_1110', 1); INSERT INTO est_inclus VALUES ('city_1112', 'CI_Address_1110', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1113', 'CI_Address_1110', 3); INSERT INTO est_inclus VALUES ('postalCode_1114', 'CI_Address_1110', 4); INSERT INTO est_inclus VALUES ('country_1115', 'CI_Address_1110', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1116', 'CI_Address_1110', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1117', 'CI_Contact_1104', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1118', 'onlineRessource_1117', 0); INSERT INTO est_inclus VALUES ('linkage_1119', 'CI_OnlineResource_1118', 1); INSERT INTO est_inclus VALUES ('protocol_1120', 'CI_OnlineResource_1118', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1121', 'CI_OnlineResource_1118', 3); INSERT INTO est_inclus VALUES ('name_1122', 'CI_OnlineResource_1118', 4); INSERT INTO est_inclus VALUES ('description_1123', 'CI_OnlineResource_1118', 5); INSERT INTO est_inclus VALUES ('function_1124', 'CI_OnlineResource_1118', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1125', 'CI_Contact_1104', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1126', 'CI_Contact_1104', 5); INSERT INTO est_inclus VALUES ('role_1127', 'CI_ResponsibleParty_989', 5); INSERT INTO est_inclus VALUES ('individualName_1128', 'CI_ResponsibleParty_1013', 1); INSERT INTO est_inclus VALUES ('organisationName_1129', 'CI_ResponsibleParty_1013', 2); INSERT INTO est_inclus VALUES ('positionName_1130', 'CI_ResponsibleParty_1013', 3); INSERT INTO est_inclus VALUES ('contactInfo_1131', 'CI_ResponsibleParty_1013', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1132', 'contactInfo_1131', 0); INSERT INTO est_inclus VALUES ('phone_1133', 'CI_Contact_1132', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1134', 'phone_1133', 0); INSERT INTO est_inclus VALUES ('voice_1135', 'CI_Telephone_1134', 1); INSERT INTO est_inclus VALUES ('facsimile_1136', 'CI_Telephone_1134', 2); INSERT INTO est_inclus VALUES ('address_1137', 'CI_Contact_1132', 2); INSERT INTO est_inclus VALUES ('CI_Address_1138', 'address_1137', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1139', 'CI_Address_1138', 1); INSERT INTO est_inclus VALUES ('city_1140', 'CI_Address_1138', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1141', 'CI_Address_1138', 3); INSERT INTO est_inclus VALUES ('postalCode_1142', 'CI_Address_1138', 4); INSERT INTO est_inclus VALUES ('country_1143', 'CI_Address_1138', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1144', 'CI_Address_1138', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1145', 'CI_Contact_1132', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1146', 'onlineRessource_1145', 0); INSERT INTO est_inclus VALUES ('linkage_1147', 'CI_OnlineResource_1146', 1); INSERT INTO est_inclus VALUES ('protocol_1148', 'CI_OnlineResource_1146', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1149', 'CI_OnlineResource_1146', 3); INSERT INTO est_inclus VALUES ('name_1150', 'CI_OnlineResource_1146', 4); INSERT INTO est_inclus VALUES ('description_1151', 'CI_OnlineResource_1146', 5); INSERT INTO est_inclus VALUES ('function_1152', 'CI_OnlineResource_1146', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1153', 'CI_Contact_1132', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1154', 'CI_Contact_1132', 5); INSERT INTO est_inclus VALUES ('role_1155', 'CI_ResponsibleParty_1013', 5); INSERT INTO est_inclus VALUES ('individualName_1156', 'CI_ResponsibleParty_1037', 1); INSERT INTO est_inclus VALUES ('organisationName_1157', 'CI_ResponsibleParty_1037', 2); INSERT INTO est_inclus VALUES ('positionName_1158', 'CI_ResponsibleParty_1037', 3); INSERT INTO est_inclus VALUES ('contactInfo_1159', 'CI_ResponsibleParty_1037', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1160', 'contactInfo_1159', 0); INSERT INTO est_inclus VALUES ('phone_1161', 'CI_Contact_1160', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1162', 'phone_1161', 0); INSERT INTO est_inclus VALUES ('voice_1163', 'CI_Telephone_1162', 1); INSERT INTO est_inclus VALUES ('facsimile_1164', 'CI_Telephone_1162', 2); INSERT INTO est_inclus VALUES ('address_1165', 'CI_Contact_1160', 2); INSERT INTO est_inclus VALUES ('CI_Address_1166', 'address_1165', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1167', 'CI_Address_1166', 1); INSERT INTO est_inclus VALUES ('city_1168', 'CI_Address_1166', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1169', 'CI_Address_1166', 3); INSERT INTO est_inclus VALUES ('postalCode_1170', 'CI_Address_1166', 4); INSERT INTO est_inclus VALUES ('country_1171', 'CI_Address_1166', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1172', 'CI_Address_1166', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1173', 'CI_Contact_1160', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1174', 'onlineRessource_1173', 0); INSERT INTO est_inclus VALUES ('linkage_1175', 'CI_OnlineResource_1174', 1); INSERT INTO est_inclus VALUES ('protocol_1176', 'CI_OnlineResource_1174', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1177', 'CI_OnlineResource_1174', 3); INSERT INTO est_inclus VALUES ('name_1178', 'CI_OnlineResource_1174', 4); INSERT INTO est_inclus VALUES ('description_1179', 'CI_OnlineResource_1174', 5); INSERT INTO est_inclus VALUES ('function_1180', 'CI_OnlineResource_1174', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1181', 'CI_Contact_1160', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1182', 'CI_Contact_1160', 5); INSERT INTO est_inclus VALUES ('role_1183', 'CI_ResponsibleParty_1037', 5); INSERT INTO est_inclus VALUES ('individualName_1184', 'CI_ResponsibleParty_1061', 1); INSERT INTO est_inclus VALUES ('organisationName_1185', 'CI_ResponsibleParty_1061', 2); INSERT INTO est_inclus VALUES ('positionName_1186', 'CI_ResponsibleParty_1061', 3); INSERT INTO est_inclus VALUES ('contactInfo_1187', 'CI_ResponsibleParty_1061', 4); INSERT INTO est_inclus VALUES ('CI_Contact_1188', 'contactInfo_1187', 0); INSERT INTO est_inclus VALUES ('phone_1189', 'CI_Contact_1188', 1); INSERT INTO est_inclus VALUES ('CI_Telephone_1190', 'phone_1189', 0); INSERT INTO est_inclus VALUES ('voice_1191', 'CI_Telephone_1190', 1); INSERT INTO est_inclus VALUES ('facsimile_1192', 'CI_Telephone_1190', 2); INSERT INTO est_inclus VALUES ('address_1193', 'CI_Contact_1188', 2); INSERT INTO est_inclus VALUES ('CI_Address_1194', 'address_1193', 0); INSERT INTO est_inclus VALUES ('deliveryPoint_1195', 'CI_Address_1194', 1); INSERT INTO est_inclus VALUES ('city_1196', 'CI_Address_1194', 2); INSERT INTO est_inclus VALUES ('administrativeArea_1197', 'CI_Address_1194', 3); INSERT INTO est_inclus VALUES ('postalCode_1198', 'CI_Address_1194', 4); INSERT INTO est_inclus VALUES ('country_1199', 'CI_Address_1194', 5); INSERT INTO est_inclus VALUES ('electronicMailAddress_1200', 'CI_Address_1194', 6); INSERT INTO est_inclus VALUES ('onlineRessource_1201', 'CI_Contact_1188', 3); INSERT INTO est_inclus VALUES ('CI_OnlineResource_1202', 'onlineRessource_1201', 0); INSERT INTO est_inclus VALUES ('linkage_1203', 'CI_OnlineResource_1202', 1); INSERT INTO est_inclus VALUES ('protocol_1204', 'CI_OnlineResource_1202', 2); INSERT INTO est_inclus VALUES ('applicationProfile_1205', 'CI_OnlineResource_1202', 3); INSERT INTO est_inclus VALUES ('name_1206', 'CI_OnlineResource_1202', 4); INSERT INTO est_inclus VALUES ('description_1207', 'CI_OnlineResource_1202', 5); INSERT INTO est_inclus VALUES ('function_1208', 'CI_OnlineResource_1202', 6); INSERT INTO est_inclus VALUES ('hoursOfService_1209', 'CI_Contact_1188', 4); INSERT INTO est_inclus VALUES ('contactInstructions_1210', 'CI_Contact_1188', 5); INSERT INTO est_inclus VALUES ('role_1211', 'CI_ResponsibleParty_1061', 5); INSERT INTO est_inclus VALUES ('extent_1011', 'MD_ServiceIdentification_69', 12); INSERT INTO est_inclus VALUES ('EX_Extent_981', 'extent_1011', 0); INSERT INTO est_inclus VALUES ('description_982', 'EX_Extent_981', 1); INSERT INTO est_inclus VALUES ('geographicElement_983', 'EX_Extent_981', 2); INSERT INTO est_inclus VALUES ('EX_GeographicBoundingBox_984', 'geographicElement_983', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_985', 'EX_GeographicBoundingBox_984', 1); INSERT INTO est_inclus VALUES ('westBoundLongitude_986', 'EX_GeographicBoundingBox_984', 2); INSERT INTO est_inclus VALUES ('eastBoundLongitude_987', 'EX_GeographicBoundingBox_984', 3); INSERT INTO est_inclus VALUES ('southBoundLatitude_988', 'EX_GeographicBoundingBox_984', 4); INSERT INTO est_inclus VALUES ('northBoundLatitude_989', 'EX_GeographicBoundingBox_984', 5); INSERT INTO est_inclus VALUES ('geographicElement_990', 'EX_Extent_981', 2); INSERT INTO est_inclus VALUES ('EX_GeographicDescription_991', 'geographicElement_990', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_992', 'EX_GeographicDescription_991', 1); INSERT INTO est_inclus VALUES ('geographicIdentifier_993', 'EX_GeographicDescription_991', 2); INSERT INTO est_inclus VALUES ('MD_Identifier_994', 'geographicIdentifier_993', 0); INSERT INTO est_inclus VALUES ('authority_1072', 'MD_Identifier_994', 1); INSERT INTO est_inclus VALUES ('CI_Citation_1073', 'authority_1072', 0); INSERT INTO est_inclus VALUES ('code_1074', 'MD_Identifier_994', 2); INSERT INTO est_inclus VALUES ('geographicElement_995', 'EX_Extent_981', 2); INSERT INTO est_inclus VALUES ('EX_BoundingPolygon_996', 'geographicElement_995', 0); INSERT INTO est_inclus VALUES ('extentTypeCode_997', 'EX_BoundingPolygon_996', 1); INSERT INTO est_inclus VALUES ('polygon_998', 'EX_BoundingPolygon_996', 2); INSERT INTO est_inclus VALUES ('temporalElement_999', 'EX_Extent_981', 3); INSERT INTO est_inclus VALUES ('EX_TemporalExtent_1000', 'temporalElement_999', 0); INSERT INTO est_inclus VALUES ('extent_1001', 'EX_TemporalExtent_1000', 1); INSERT INTO est_inclus VALUES ('TM_Period_1002', 'extent_1001', 0); INSERT INTO est_inclus VALUES ('begin_1003', 'TM_Period_1002', 1); INSERT INTO est_inclus VALUES ('end_1004', 'TM_Period_1002', 2); INSERT INTO est_inclus VALUES ('verticalElement_1005', 'EX_Extent_981', 4); INSERT INTO est_inclus VALUES ('Ex_VerticalExtent_1006', 'verticalElement_1005', 0); INSERT INTO est_inclus VALUES ('minimumValue_1007', 'Ex_VerticalExtent_1006', 1); INSERT INTO est_inclus VALUES ('maximumValue_1008', 'Ex_VerticalExtent_1006', 2); INSERT INTO est_inclus VALUES ('unitOfMeasure_1009', 'Ex_VerticalExtent_1006', 3); INSERT INTO est_inclus VALUES ('verticalDatum_1010', 'Ex_VerticalExtent_1006', 4); INSERT INTO est_inclus VALUES ('couplingType_1012', 'MD_ServiceIdentification_69', 13); INSERT INTO est_inclus VALUES ('coupledResource_1013', 'MD_ServiceIdentification_69', 14); INSERT INTO est_inclus VALUES ('SV_CoupledResource_1014', 'coupledResource_1013', 0); INSERT INTO est_inclus VALUES ('identifier_1015', 'SV_CoupledResource_1014', 1); INSERT INTO est_inclus VALUES ('operationName_1016', 'SV_CoupledResource_1014', 2); INSERT INTO est_inclus VALUES ('title_1215', 'CI_Citation_1073', 1); INSERT INTO est_inclus VALUES ('alternateTitle_1216', 'CI_Citation_1073', 2); INSERT INTO est_inclus VALUES ('datec_1217', 'CI_Citation_1073', 3); INSERT INTO est_inclus VALUES ('CI_Date_1218', 'datec_1217', 0); INSERT INTO est_inclus VALUES ('date_1219', 'CI_Date_1218', 1); INSERT INTO est_inclus VALUES ('dateType_1220', 'CI_Date_1218', 2); INSERT INTO est_inclus VALUES ('edition_1221', 'CI_Citation_1073', 4); INSERT INTO est_inclus VALUES ('editionDate_1222', 'CI_Citation_1073', 5); INSERT INTO est_inclus VALUES ('identifier_1223', 'CI_Citation_1073', 6); INSERT INTO est_inclus VALUES ('MD_Identifier_1224', 'identifier_1223', 0); INSERT INTO est_inclus VALUES ('authority_1225', 'MD_Identifier_1224', 1); INSERT INTO est_inclus VALUES ('code_1226', 'MD_Identifier_1224', 2); INSERT INTO est_inclus VALUES ('citedResponsibleParty_1227', 'CI_Citation_1073', 7); INSERT INTO est_inclus VALUES ('CI_ResponsibleParty_1228', 'citedResponsibleParty_1227', 0); INSERT INTO est_inclus VALUES ('presentationForm_1229', 'CI_Citation_1073', 8); INSERT INTO est_inclus VALUES ('series_1230', 'CI_Citation_1073', 9); INSERT INTO est_inclus VALUES ('CI_Series_1231', 'series_1230', 0); INSERT INTO est_inclus VALUES ('name_1232', 'CI_Series_1231', 1); INSERT INTO est_inclus VALUES ('issueIdentification_1233', 'CI_Series_1231', 2); INSERT INTO est_inclus VALUES ('page_1234', 'CI_Series_1231', 3); INSERT INTO est_inclus VALUES ('otherCitationDetails_1235', 'CI_Citation_1073', 10); INSERT INTO est_inclus VALUES ('collectiveTitle_1236', 'CI_Citation_1073', 11); INSERT INTO est_inclus VALUES ('ISBN_1237', 'CI_Citation_1073', 12); INSERT INTO est_inclus VALUES ('ISSN_1238', 'CI_Citation_1073', 13); -- -- Data for Name: fichier_image; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO fichier_image VALUES (2, 'EMO_CA', 'http://localhost/mdweb-demo16/images/simul_spot5_98.img.jpg', 'jpg', '9366', '2007-07-05', ''); -- -- Data for Name: fichier_ressource; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO fichier_ressource VALUES ('EMO_CA', 2, 0, 'simul_spot5_98.img', 'img', '1114909'); -- -- Data for Name: field_control; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO field_control VALUES (1, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (7, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (8, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (9, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (11, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (12, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (13, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (16, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (17, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (18, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (19, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (22, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (24, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (25, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (26, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (29, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (30, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (31, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (34, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (38, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (45, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (46, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (47, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (49, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (50, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (51, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (54, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (55, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (56, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (59, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (60, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (70, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (71, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (72, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (73, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (75, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (77, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (81, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (82, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (83, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (84, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (85, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (86, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (89, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (90, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (91, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (92, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (95, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (97, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (98, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (99, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (102, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (103, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (104, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (107, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (118, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (119, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (120, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (122, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (123, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (124, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (127, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (128, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (129, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (132, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (133, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (140, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (144, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (145, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (146, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (63, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (74, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (136, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (147, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (15, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (88, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (148, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (149, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (150, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (151, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (282, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (283, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (284, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (301, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (302, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (303, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (306, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (308, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (309, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (3013, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3014, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3017, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3019, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3021, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3024, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3025, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (401, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (402, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (403, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (406, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (408, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (413, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (414, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (417, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (419, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (421, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (424, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (425, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (427, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (428, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (208, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (210, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (213, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (214, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (215, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (216, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (217, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (218, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (220, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (221, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (222, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (223, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (224, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (227, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (229, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (230, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (231, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (234, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (235, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (236, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (239, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (243, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (250, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (251, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (252, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (254, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (255, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (256, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (259, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (260, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (264, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (265, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (268, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (272, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (273, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (274, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (275, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (276, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3037, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3038, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3040, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3041, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3042, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (579, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (580, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (581, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (582, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (583, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (584, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (585, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (586, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (587, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (588, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3126, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3127, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3164, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3134, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3135, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3136, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (4138, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4139, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4140, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4142, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (4144, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (4145, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (4148, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4149, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4150, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4154, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4155, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4156, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4157, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4159, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4160, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4161, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4163, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4164, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4165, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4166, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4167, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4168, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4169, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4170, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4177, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4179, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (4182, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4116, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4117, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4118, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4119, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4120, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4121, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4125, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (660, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (661, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (662, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (664, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (665, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (666, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (667, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (668, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (670, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (673, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (675, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (676, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3087, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3091, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3092, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3093, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3094, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3095, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3096, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3098, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3099, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3100, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3101, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3103, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3104, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3105, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3107, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3108, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3113, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3029, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3033, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3034, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3035, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3036, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3043, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3045, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3046, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3047, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3049, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3050, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3055, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3058, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3062, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3063, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3064, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3065, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3066, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3067, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3069, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3070, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3071, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3072, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3074, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3075, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3076, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3078, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3079, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3084, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (233, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (592, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (595, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (596, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (597, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (598, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (599, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (600, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (602, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (603, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (604, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (605, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (606, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (609, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (611, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (612, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (613, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (616, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (617, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (618, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (621, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (625, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (631, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (632, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (633, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (634, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (636, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (637, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (638, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (640, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (641, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (642, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (643, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (646, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (647, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (650, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (651, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (655, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (656, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (658, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3383, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3384, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3385, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3387, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3388, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3389, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3390, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3391, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3392, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3395, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3396, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (3398, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3283, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3284, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3285, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3287, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3288, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3289, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3290, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3291, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3292, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3295, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3296, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (3298, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3183, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3184, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3185, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3187, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3188, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3189, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3190, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3191, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3192, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3195, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3196, 1, 'testEnt', 'onKeyPress'); INSERT INTO field_control VALUES (3198, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (4126, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4127, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3165, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4134, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4135, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (4136, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (3138, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3139, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3140, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3142, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3144, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3145, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (3148, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3149, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3150, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3154, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3155, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3156, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3157, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3159, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3160, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3161, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3163, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3166, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3167, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3168, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3169, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3170, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3177, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3179, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (3182, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3116, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3117, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3118, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3119, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3120, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (3121, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3125, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (426, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (430, 1, 'testFlo', 'onKeyPress'); INSERT INTO field_control VALUES (108, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (35, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (240, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4181, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (622, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (3181, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (4184, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4183, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4185, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4187, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4188, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4189, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4190, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4191, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4192, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4193, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (4195, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4196, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4197, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4200, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4201, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4202, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4203, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4204, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4206, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4207, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4208, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4209, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4211, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4213, 1, 'testEnt', 'onChange'); INSERT INTO field_control VALUES (4215, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4216, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4217, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4218, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4198, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4220, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4221, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4222, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4223, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4224, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4225, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4226, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4227, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4228, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4210, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4229, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4230, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4232, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4234, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4235, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4236, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4237, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4239, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4240, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4242, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4243, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4244, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4246, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4247, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4248, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4249, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4250, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4251, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4252, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4253, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4255, 1, 'testEnt', 'onChange'); INSERT INTO field_control VALUES (4194, 1, 'testUrl', 'onChange'); INSERT INTO field_control VALUES (4214, 1, 'testUrl', 'onChange'); INSERT INTO field_control VALUES (4233, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4256, 1, 'testUrl', 'onChange'); INSERT INTO field_control VALUES (4257, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (4258, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4261, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (4259, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14277, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14286, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (14289, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14292, 1, 'testEmail', 'onChange'); INSERT INTO field_control VALUES (14301, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14305, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14306, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14309, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14314, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14335, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14336, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14327, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14329, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14330, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14328, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (14341, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14349, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14345, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14351, 1, 'longMax', 'onKeyPress'); INSERT INTO field_control VALUES (14354, 1, 'longMax', 'onChange'); INSERT INTO field_control VALUES (14332, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14334, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14337, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14338, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14339, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14340, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14344, 1, 'testUrl', 'onChange'); INSERT INTO field_control VALUES (14347, 1, 'testUrl', 'onChange'); INSERT INTO field_control VALUES (14359, 1, 'testFlo', 'onChange'); INSERT INTO field_control VALUES (14360, 1, 'testFlo', 'onChange'); INSERT INTO field_control VALUES (14361, 1, 'testFlo', 'onChange'); INSERT INTO field_control VALUES (14362, 1, 'testFlo', 'onChange'); INSERT INTO field_control VALUES (14364, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (14365, 1, 'verifDate', 'onChange'); INSERT INTO field_control VALUES (14363, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14353, 1, 'maxCar', 'onKeyPress'); INSERT INTO field_control VALUES (14357, 1, 'maxCar', 'onChange'); INSERT INTO field_control VALUES (14358, 1, 'maxCar', 'onChange'); -- -- Data for Name: field_elmnt; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO field_elmnt VALUES (1, 'base_geo', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (2, 'base_geo', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3, 'base_geo', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (4, 'base_geo', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (5, 'base_geo', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (7, 'base_geo', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (8, 'base_geo', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (9, 'base_geo', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (11, 'base_geo', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (12, 'base_geo', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (13, 'base_geo', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14, 'base_geo', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (15, 'base_geo', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (16, 'base_geo', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (17, 'base_geo', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (18, 'base_geo', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (19, 'base_geo', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (20, 'base_geo', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (21, 'base_geo', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (22, 'base_geo', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (23, 'base_geo', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (24, 'base_geo', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (25, 'base_geo', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (26, 'base_geo', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (27, 'base_geo', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (29, 'base_geo', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (30, 'base_geo', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (31, 'base_geo', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (32, 'base_geo', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (33, 'base_geo', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (34, 'base_geo', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (35, 'base_geo', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (36, 'base_geo', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (37, 'base_geo', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (38, 'base_geo', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (39, 'base_geo', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (40, 'base_geo', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (42, 'base_geo', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (43, 'base_geo', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (45, 'base_geo', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (46, 'base_geo', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (47, 'base_geo', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (48, 'base_geo', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (49, 'base_geo', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (50, 'base_geo', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (51, 'base_geo', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (52, 'base_geo', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (54, 'base_geo', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (55, 'base_geo', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (56, 'base_geo', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (58, 'base_geo', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (59, 'base_geo', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (60, 'base_geo', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (61, 'base_geo', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (62, 'base_geo', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (63, 'base_geo', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (68, 'base_geo', 'code_417', 'select', 0, 0); INSERT INTO field_elmnt VALUES (69, 'base_geo', 'spatialRepresentationType_58', 'select', 0, 0); INSERT INTO field_elmnt VALUES (70, 'base_geo', 'denominator_124', 'text', 20, 0); INSERT INTO field_elmnt VALUES (71, 'base_geo', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (72, 'base_geo', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (73, 'base_geo', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (74, 'base_geo', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (75, 'carte_num', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (76, 'carte_num', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (77, 'carte_num', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (78, 'carte_num', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (79, 'carte_num', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (81, 'carte_num', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (82, 'carte_num', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (83, 'carte_num', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (84, 'carte_num', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (85, 'carte_num', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (86, 'carte_num', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (87, 'carte_num', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (88, 'carte_num', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (89, 'carte_num', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (90, 'carte_num', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (91, 'carte_num', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (92, 'carte_num', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (93, 'carte_num', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (94, 'carte_num', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (95, 'carte_num', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (96, 'carte_num', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (97, 'carte_num', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (98, 'carte_num', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (99, 'carte_num', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (100, 'carte_num', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (102, 'carte_num', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (103, 'carte_num', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (104, 'carte_num', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (105, 'carte_num', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (106, 'carte_num', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (107, 'carte_num', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (108, 'carte_num', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (109, 'carte_num', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (110, 'carte_num', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (112, 'carte_num', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (113, 'carte_num', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (115, 'carte_num', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (116, 'carte_num', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (118, 'carte_num', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (119, 'carte_num', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (120, 'carte_num', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (121, 'carte_num', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (122, 'carte_num', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (123, 'carte_num', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (124, 'carte_num', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (125, 'carte_num', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (127, 'carte_num', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (128, 'carte_num', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (129, 'carte_num', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (131, 'carte_num', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (132, 'carte_num', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (133, 'carte_num', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (134, 'carte_num', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (135, 'carte_num', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (136, 'carte_num', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (140, 'carte_num', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (141, 'carte_num', 'code_417', 'select', 0, 0); INSERT INTO field_elmnt VALUES (142, 'carte_num', 'spatialRepresentationType_58', 'select', 0, 0); INSERT INTO field_elmnt VALUES (143, 'carte_num', 'denominator_124', 'text', 20, 0); INSERT INTO field_elmnt VALUES (144, 'carte_num', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (145, 'carte_num', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (146, 'carte_num', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (147, 'carte_num', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (148, 'base_geo', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (149, 'carte_num', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (150, 'base_geo', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (151, 'carte_num', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (152, 'carte_num', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (153, 'base_geo', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (154, 'carte_num', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (155, 'base_geo', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (208, 'carte_papier', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (209, 'carte_papier', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (210, 'carte_papier', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (211, 'carte_papier', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (212, 'carte_papier', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (213, 'carte_papier', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (214, 'carte_papier', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (215, 'carte_papier', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (216, 'carte_papier', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (217, 'carte_papier', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (218, 'carte_papier', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (219, 'carte_papier', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (220, 'carte_papier', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (221, 'carte_papier', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (222, 'carte_papier', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (223, 'carte_papier', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (224, 'carte_papier', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (225, 'carte_papier', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (226, 'carte_papier', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (227, 'carte_papier', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (228, 'carte_papier', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (229, 'carte_papier', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (230, 'carte_papier', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (231, 'carte_papier', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (232, 'carte_papier', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (233, 'carte_papier', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (234, 'carte_papier', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (235, 'carte_papier', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (236, 'carte_papier', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (237, 'carte_papier', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (238, 'carte_papier', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (239, 'carte_papier', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (240, 'carte_papier', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (241, 'carte_papier', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (242, 'carte_papier', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (243, 'carte_papier', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (244, 'carte_papier', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (247, 'carte_papier', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (248, 'carte_papier', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (250, 'carte_papier', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (251, 'carte_papier', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (252, 'carte_papier', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (253, 'carte_papier', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (254, 'carte_papier', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (255, 'carte_papier', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (256, 'carte_papier', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (257, 'carte_papier', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (259, 'carte_papier', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (260, 'carte_papier', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (263, 'carte_papier', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (264, 'carte_papier', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (265, 'carte_papier', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (266, 'carte_papier', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (267, 'carte_papier', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (268, 'carte_papier', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (269, 'carte_papier', 'code_417', 'select', 0, 0); INSERT INTO field_elmnt VALUES (271, 'carte_papier', 'denominator_124', 'text', 20, 0); INSERT INTO field_elmnt VALUES (272, 'carte_papier', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (273, 'carte_papier', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (274, 'carte_papier', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (275, 'carte_papier', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (276, 'carte_papier', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (282, 'carte_papier', 'ISBN_96', 'text', 20, 0); INSERT INTO field_elmnt VALUES (283, 'carte_papier', 'ISSN_97', 'text', 20, 0); INSERT INTO field_elmnt VALUES (284, 'carte_papier', 'name_81', 'text', 30, 0); INSERT INTO field_elmnt VALUES (301, 'couche_vecteur', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (302, 'couche_vecteur', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (303, 'couche_vecteur', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (304, 'couche_vecteur', 'date_86', 'select', 0, 0); INSERT INTO field_elmnt VALUES (305, 'couche_vecteur', 'denominator_124', 'text', 20, 0); INSERT INTO field_elmnt VALUES (306, 'couche_vecteur', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (308, 'couche_vecteur', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (309, 'couche_vecteur', 'geometricObjectCount_465', 'text', 20, 0); INSERT INTO field_elmnt VALUES (401, 'couche_raster', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (402, 'couche_raster', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (403, 'couche_raster', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (404, 'couche_raster', 'date_86', 'select', 0, 0); INSERT INTO field_elmnt VALUES (406, 'couche_raster', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (408, 'couche_raster', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (411, 'couche_raster', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (412, 'couche_raster', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (413, 'couche_raster', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (414, 'couche_raster', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (416, 'couche_raster', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (417, 'couche_raster', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (418, 'couche_raster', 'spatialRepresentationType_58', 'select', 0, 0); INSERT INTO field_elmnt VALUES (419, 'couche_raster', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (420, 'couche_raster', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (421, 'couche_raster', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (424, 'couche_raster', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (425, 'couche_raster', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (426, 'couche_raster', 'distance_122', 'text', 10, 0); INSERT INTO field_elmnt VALUES (427, 'couche_raster', 'numberOfDimensions_365', 'text', 10, 0); INSERT INTO field_elmnt VALUES (428, 'couche_raster', 'dimensionSize_369', 'text', 10, 0); INSERT INTO field_elmnt VALUES (429, 'couche_raster', 'dimensionName_368', 'select', 0, 0); INSERT INTO field_elmnt VALUES (430, 'couche_raster', 'resolution_370', 'text', 10, 0); INSERT INTO field_elmnt VALUES (431, 'couche_raster', 'transformationParameterAvailability_372', 'select', 0, 0); INSERT INTO field_elmnt VALUES (432, 'couche_raster', 'cellGeometry_371', 'select', 0, 0); INSERT INTO field_elmnt VALUES (433, 'couche_raster', 'code_417', 'select', 0, 0); INSERT INTO field_elmnt VALUES (579, 'carte_num', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (580, 'carte_num', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (581, 'carte_papier', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (582, 'couche_raster', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (583, 'couche_vecteur', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (584, 'base_geo', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (585, 'carte_papier', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (586, 'couche_raster', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (587, 'couche_vecteur', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (588, 'base_geo', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (592, 'base_alpha', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (593, 'base_alpha', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (594, 'base_alpha', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (595, 'base_alpha', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (596, 'base_alpha', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (597, 'base_alpha', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (598, 'base_alpha', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (599, 'base_alpha', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (600, 'base_alpha', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (601, 'base_alpha', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (602, 'base_alpha', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (603, 'base_alpha', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (604, 'base_alpha', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (605, 'base_alpha', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (606, 'base_alpha', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (607, 'base_alpha', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (608, 'base_alpha', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (609, 'base_alpha', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (610, 'base_alpha', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (611, 'base_alpha', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (612, 'base_alpha', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (613, 'base_alpha', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (614, 'base_alpha', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (616, 'base_alpha', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (617, 'base_alpha', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (618, 'base_alpha', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (619, 'base_alpha', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (620, 'base_alpha', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (621, 'base_alpha', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (622, 'base_alpha', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (623, 'base_alpha', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (624, 'base_alpha', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (625, 'base_alpha', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (626, 'base_alpha', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (627, 'base_alpha', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (629, 'base_alpha', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (630, 'base_alpha', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (631, 'base_alpha', 'extent_146', 'text', 20, 0); INSERT INTO field_elmnt VALUES (632, 'base_alpha', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (633, 'base_alpha', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (634, 'base_alpha', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (635, 'base_alpha', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (636, 'base_alpha', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (637, 'base_alpha', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (638, 'base_alpha', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (639, 'base_alpha', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (640, 'base_alpha', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (641, 'base_alpha', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (642, 'base_alpha', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (643, 'base_alpha', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (645, 'base_alpha', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (646, 'base_alpha', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (647, 'base_alpha', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (648, 'base_alpha', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (649, 'base_alpha', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (650, 'base_alpha', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (651, 'base_alpha', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (653, 'base_alpha', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (654, 'base_alpha', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (655, 'base_alpha', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (656, 'base_alpha', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (658, 'base_alpha', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (659, 'base_alpha', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (660, 'table_num', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (661, 'table_num', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (662, 'table_num', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (663, 'table_num', 'date_86', 'select', 0, 0); INSERT INTO field_elmnt VALUES (664, 'table_num', 'extent_146', 'text', 20, 0); INSERT INTO field_elmnt VALUES (665, 'table_num', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (666, 'table_num', 'beginPosition_502', 'text', 15, 0); INSERT INTO field_elmnt VALUES (667, 'table_num', 'endPosition_504', 'text', 15, 0); INSERT INTO field_elmnt VALUES (668, 'table_num', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (669, 'table_num', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (670, 'table_num', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (671, 'table_num', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (673, 'table_num', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (674, 'table_num', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (675, 'table_num', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (676, 'table_num', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (677, 'table_num', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (678, 'table_num', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (3010, 'couche_vecteur', 'geometricObjectType_464', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3011, 'couche_vecteur', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3012, 'couche_vecteur', 'level_442', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3013, 'couche_vecteur', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3014, 'couche_vecteur', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3016, 'couche_vecteur', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3017, 'couche_vecteur', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3018, 'couche_vecteur', 'spatialRepresentationType_58', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3019, 'couche_vecteur', 'statement_448', 'textarea', 70, 6); INSERT INTO field_elmnt VALUES (3020, 'couche_vecteur', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3021, 'couche_vecteur', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (3022, 'couche_vecteur', 'topologyLevel_397', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3024, 'couche_vecteur', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3025, 'couche_vecteur', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3026, 'couche_vecteur', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3027, 'couche_vecteur', 'code_417', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3028, 'couche_raster', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3029, 'couche_vecteur', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3030, 'couche_vecteur', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3031, 'couche_vecteur', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3032, 'couche_vecteur', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3033, 'couche_vecteur', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3034, 'couche_vecteur', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (3035, 'couche_vecteur', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3036, 'couche_vecteur', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3037, 'couche_vecteur', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3038, 'couche_vecteur', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3039, 'couche_vecteur', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3040, 'couche_vecteur', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3041, 'couche_vecteur', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3042, 'couche_vecteur', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3043, 'couche_vecteur', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3044, 'couche_vecteur', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3045, 'couche_vecteur', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3046, 'couche_vecteur', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3047, 'couche_vecteur', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3048, 'couche_vecteur', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3049, 'couche_vecteur', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3050, 'couche_vecteur', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3052, 'couche_vecteur', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3054, 'couche_vecteur', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3055, 'couche_vecteur', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3057, 'couche_vecteur', 'parentIdentifier_5', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3058, 'couche_raster', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3059, 'couche_raster', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3060, 'couche_raster', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3061, 'couche_raster', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3062, 'couche_raster', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3063, 'couche_raster', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (3064, 'couche_raster', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3065, 'couche_raster', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3066, 'couche_raster', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3067, 'couche_raster', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3068, 'couche_raster', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3069, 'couche_raster', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3070, 'couche_raster', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3071, 'couche_raster', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3072, 'couche_raster', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3073, 'couche_raster', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3074, 'couche_raster', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3075, 'couche_raster', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3076, 'couche_raster', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3077, 'couche_raster', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3078, 'couche_raster', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3079, 'couche_raster', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3081, 'couche_raster', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3083, 'couche_raster', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3084, 'couche_raster', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3086, 'couche_raster', 'parentIdentifier_5', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3087, 'table_num', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3088, 'table_num', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3089, 'table_num', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3090, 'table_num', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3091, 'table_num', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3092, 'table_num', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (3093, 'table_num', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3094, 'table_num', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3095, 'table_num', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3096, 'table_num', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3097, 'table_num', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3098, 'table_num', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3099, 'table_num', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3100, 'table_num', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3101, 'table_num', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3102, 'table_num', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3103, 'table_num', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3104, 'table_num', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3105, 'table_num', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3106, 'table_num', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3107, 'table_num', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3108, 'table_num', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3110, 'table_num', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3112, 'table_num', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3113, 'table_num', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3115, 'table_num', 'parentIdentifier_5', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3116, 'doc_texte_num', 'page_83', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3117, 'doc_texte_num', 'collectiveTitle_95', 'text', 40, 4); INSERT INTO field_elmnt VALUES (3118, 'doc_texte_num', 'edition_87', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3119, 'doc_texte_num', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3120, 'doc_texte_num', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3121, 'doc_texte_num', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (3122, 'doc_texte_num', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3123, 'doc_texte_num', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3124, 'doc_texte_num', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3125, 'doc_texte_num', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3126, 'doc_texte_num', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3127, 'doc_texte_num', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3128, 'doc_texte_num', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (3130, 'doc_texte_num', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3131, 'doc_texte_num', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3132, 'doc_texte_num', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3133, 'doc_texte_num', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (3134, 'doc_texte_num', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3135, 'doc_texte_num', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3136, 'doc_texte_num', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3137, 'doc_texte_num', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3138, 'doc_texte_num', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3139, 'doc_texte_num', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3140, 'doc_texte_num', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3142, 'doc_texte_num', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3144, 'doc_texte_num', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3145, 'doc_texte_num', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3147, 'doc_texte_num', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3148, 'doc_texte_num', 'ISBN_96', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3149, 'doc_texte_num', 'ISSN_97', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3150, 'doc_texte_num', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3152, 'doc_texte_num', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3153, 'doc_texte_num', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3154, 'doc_texte_num', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3155, 'doc_texte_num', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3156, 'doc_texte_num', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3157, 'doc_texte_num', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3158, 'doc_texte_num', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3159, 'doc_texte_num', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (3160, 'doc_texte_num', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (3161, 'doc_texte_num', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3163, 'doc_texte_num', 'name_81', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3164, 'doc_texte_num', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3165, 'doc_texte_num', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3166, 'doc_texte_num', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3167, 'doc_texte_num', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (3168, 'doc_texte_num', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3169, 'doc_texte_num', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3170, 'doc_texte_num', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3171, 'doc_texte_num', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3172, 'doc_texte_num', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3173, 'doc_texte_num', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3174, 'doc_texte_num', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3176, 'doc_texte_num', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3177, 'doc_texte_num', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (3178, 'doc_texte_num', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3179, 'doc_texte_num', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3180, 'doc_texte_num', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3181, 'doc_texte_num', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (3182, 'doc_texte_num', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3183, 'couche_vecteur', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3184, 'couche_vecteur', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3185, 'couche_vecteur', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3186, 'couche_vecteur', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3187, 'couche_vecteur', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3188, 'couche_vecteur', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3189, 'couche_vecteur', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3190, 'couche_vecteur', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3191, 'couche_vecteur', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3192, 'couche_vecteur', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3194, 'couche_vecteur', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3195, 'couche_vecteur', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3196, 'couche_vecteur', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3197, 'couche_vecteur', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3198, 'couche_vecteur', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3199, 'couche_vecteur', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3200, 'couche_vecteur', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (3201, 'couche_raster', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (3202, 'couche_vecteur', 'fileName_510', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3203, 'couche_raster', 'fileName_510', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (3204, 'couche_vecteur', 'fileType_511', 'readonly', 10, 0); INSERT INTO field_elmnt VALUES (3205, 'couche_raster', 'fileType_511', 'readonly', 10, 0); INSERT INTO field_elmnt VALUES (3283, 'couche_raster', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3284, 'couche_raster', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3285, 'couche_raster', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3286, 'couche_raster', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3287, 'couche_raster', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3288, 'couche_raster', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3289, 'couche_raster', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3290, 'couche_raster', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3291, 'couche_raster', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3292, 'couche_raster', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3294, 'couche_raster', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3295, 'couche_raster', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3296, 'couche_raster', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3297, 'couche_raster', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3298, 'couche_raster', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3299, 'couche_raster', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3383, 'table_num', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3384, 'table_num', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3385, 'table_num', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3386, 'table_num', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3387, 'table_num', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (3388, 'table_num', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (3389, 'table_num', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3390, 'table_num', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3391, 'table_num', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3392, 'table_num', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (3394, 'table_num', 'name_295', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3395, 'table_num', 'density_296', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3396, 'table_num', 'volumes_298', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3397, 'table_num', 'mediumFormat_299', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3398, 'table_num', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (3399, 'table_num', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (3400, 'table_num', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3401, 'table_num', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3402, 'table_num', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3403, 'table_num', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3404, 'doc_texte_num', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3405, 'doc_texte_num', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3406, 'doc_texte_num', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3407, 'doc_texte_num', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3408, 'refer_biblio', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3409, 'refer_biblio', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3410, 'refer_biblio', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3411, 'refer_biblio', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3412, 'base_alpha', 'westBoundLongitude_126', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3413, 'base_alpha', 'eastBoundLongitude_127', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3414, 'base_alpha', 'northBoundLatitude_129', 'text', 20, 0); INSERT INTO field_elmnt VALUES (3415, 'base_alpha', 'southBoundLatitude_128', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4116, 'refer_biblio', 'page_83', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4117, 'refer_biblio', 'collectiveTitle_95', 'text', 40, 4); INSERT INTO field_elmnt VALUES (4118, 'refer_biblio', 'edition_87', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4119, 'refer_biblio', 'name_221', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4120, 'refer_biblio', 'version_222', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4121, 'refer_biblio', 'abstract_70', 'textarea', 90, 7); INSERT INTO field_elmnt VALUES (4122, 'refer_biblio', 'accessConstraints_260', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4123, 'refer_biblio', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4124, 'refer_biblio', 'characterSet_61', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4125, 'refer_biblio', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4126, 'refer_biblio', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4127, 'refer_biblio', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4128, 'refer_biblio', 'code_133', 'readonly', 50, 0); INSERT INTO field_elmnt VALUES (4130, 'refer_biblio', 'country_182', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4131, 'refer_biblio', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4132, 'refer_biblio', 'country_331', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4133, 'refer_biblio', 'credit_49', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4134, 'refer_biblio', 'dataSetURI_268', 'web', 70, 3); INSERT INTO field_elmnt VALUES (4135, 'refer_biblio', 'date_79', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4136, 'refer_biblio', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (4137, 'refer_biblio', 'dateType_80', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4138, 'refer_biblio', 'deliveryPoint_178', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4139, 'refer_biblio', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4140, 'refer_biblio', 'deliveryPoint_327', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4142, 'refer_biblio', 'electronicMailAddress_183', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (4144, 'refer_biblio', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (4145, 'refer_biblio', 'electronicMailAddress_332', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (4147, 'refer_biblio', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (4148, 'refer_biblio', 'ISBN_96', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4149, 'refer_biblio', 'ISSN_97', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4150, 'refer_biblio', 'keyword_269', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4152, 'refer_biblio', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4153, 'refer_biblio', 'language_60', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4154, 'refer_biblio', 'linkage_185', 'web', 70, 3); INSERT INTO field_elmnt VALUES (4155, 'refer_biblio', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (4156, 'refer_biblio', 'linkage_300', 'web', 70, 3); INSERT INTO field_elmnt VALUES (4157, 'refer_biblio', 'linkage_456', 'web', 70, 3); INSERT INTO field_elmnt VALUES (4158, 'refer_biblio', 'maintenanceAndUpdateFrequency_238', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4159, 'refer_biblio', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (4160, 'refer_biblio', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (4161, 'refer_biblio', 'name_119', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4163, 'refer_biblio', 'name_81', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4164, 'refer_biblio', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4165, 'refer_biblio', 'organisationName_164', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4166, 'refer_biblio', 'organisationName_312', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (4167, 'refer_biblio', 'otherConstraints_262', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (4168, 'refer_biblio', 'postalCode_181', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4169, 'refer_biblio', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4170, 'refer_biblio', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4171, 'refer_biblio', 'presentationForm_92', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4172, 'refer_biblio', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4173, 'refer_biblio', 'role_167', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4174, 'refer_biblio', 'role_315', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4176, 'refer_biblio', 'status_50', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4177, 'refer_biblio', 'title_84', 'textarea', 70, 4); INSERT INTO field_elmnt VALUES (4178, 'refer_biblio', 'topicCategory_62', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4179, 'refer_biblio', 'transferSize_290', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4180, 'refer_biblio', 'useConstraints_261', 'select', 0, 0); INSERT INTO field_elmnt VALUES (4181, 'refer_biblio', 'useLimitation_259', 'textarea', 70, 5); INSERT INTO field_elmnt VALUES (4182, 'refer_biblio', 'version_120', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4183, 'refer_gab_iso19115', 'individualName_10', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4184, 'refer_gab_iso19115', 'organisationName_11', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4185, 'refer_gab_iso19115', 'positionName_12', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4186, 'refer_gab_iso19115', 'role_14', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4187, 'refer_gab_iso19115', 'voice_16', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4188, 'refer_gab_iso19115', 'facsimile_17', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4189, 'refer_gab_iso19115', 'deliveryPoint_19', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4190, 'refer_gab_iso19115', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4191, 'refer_gab_iso19115', 'administrativeArea_21', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4192, 'refer_gab_iso19115', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4193, 'refer_gab_iso19115', 'electronicMailAddress_24', 'mail', 30, 0); INSERT INTO field_elmnt VALUES (4194, 'refer_gab_iso19115', 'linkage_26', 'web', 60, 3); INSERT INTO field_elmnt VALUES (4195, 'refer_gab_iso19115', 'protocol_27', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4196, 'refer_gab_iso19115', 'applicationProfile_28', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4197, 'refer_gab_iso19115', 'name_29', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4198, 'refer_gab_iso19115', 'description_30', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4199, 'refer_gab_iso19115', 'function_31', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4200, 'refer_gab_iso19115', 'hoursOfService_32', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4201, 'refer_gab_iso19115', 'contactInstructions_33', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4202, 'refer_gab_iso19115', 'individualName_163', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4203, 'refer_gab_iso19115', 'organisationName_164', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4204, 'refer_gab_iso19115', 'positionName_165', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4205, 'refer_gab_iso19115', 'role_167', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4206, 'refer_gab_iso19115', 'voice_175', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4207, 'refer_gab_iso19115', 'facsimile_176', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4208, 'refer_gab_iso19115', 'deliveryPoint_178', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4209, 'refer_gab_iso19115', 'city_179', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4210, 'refer_gab_iso19115', 'administrativeArea_180', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4211, 'refer_gab_iso19115', 'postalCode_181', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4212, 'refer_gab_iso19115', 'country_182', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4213, 'refer_gab_iso19115', 'electronicMailAddress_183', 'mail', 30, 0); INSERT INTO field_elmnt VALUES (4214, 'refer_gab_iso19115', 'linkage_185', 'web', 60, 3); INSERT INTO field_elmnt VALUES (4215, 'refer_gab_iso19115', 'protocol_186', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4216, 'refer_gab_iso19115', 'applicationProfile_187', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4217, 'refer_gab_iso19115', 'name_188', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4218, 'refer_gab_iso19115', 'description_189', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4219, 'refer_gab_iso19115', 'function_190', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4220, 'refer_gab_iso19115', 'hoursOfService_172', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4221, 'refer_gab_iso19115', 'contactInstructions_173', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4222, 'refer_gab_iso19115', 'individualName_192', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4223, 'refer_gab_iso19115', 'organisationName_193', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4224, 'refer_gab_iso19115', 'positionName_194', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4225, 'refer_gab_iso19115', 'voice_204', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4226, 'refer_gab_iso19115', 'facsimile_205', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4227, 'refer_gab_iso19115', 'deliveryPoint_207', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4228, 'refer_gab_iso19115', 'city_208', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4229, 'refer_gab_iso19115', 'administrativeArea_209', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4230, 'refer_gab_iso19115', 'postalCode_210', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4231, 'refer_gab_iso19115', 'country_211', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4232, 'refer_gab_iso19115', 'electronicMailAddress_212', 'mail', 30, 0); INSERT INTO field_elmnt VALUES (4233, 'refer_gab_iso19115', 'linkage_214', 'web', 60, 3); INSERT INTO field_elmnt VALUES (4234, 'refer_gab_iso19115', 'protocol_215', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4235, 'refer_gab_iso19115', 'applicationProfile_216', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4236, 'refer_gab_iso19115', 'name_217', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4237, 'refer_gab_iso19115', 'description_218', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4238, 'refer_gab_iso19115', 'function_219', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4239, 'refer_gab_iso19115', 'hoursOfService_201', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4240, 'refer_gab_iso19115', 'contactInstructions_202', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4241, 'refer_gab_iso19115', 'role_196', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4242, 'refer_gab_iso19115', 'individualName_311', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4243, 'refer_gab_iso19115', 'organisationName_312', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4244, 'refer_gab_iso19115', 'positionName_313', 'text', 50, 0); INSERT INTO field_elmnt VALUES (4245, 'refer_gab_iso19115', 'role_315', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4246, 'refer_gab_iso19115', 'hoursOfService_320', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4247, 'refer_gab_iso19115', 'contactInstructions_321', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4248, 'refer_gab_iso19115', 'voice_325', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4249, 'refer_gab_iso19115', 'facsimile_326', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4250, 'refer_gab_iso19115', 'deliveryPoint_327', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4251, 'refer_gab_iso19115', 'city_328', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4252, 'refer_gab_iso19115', 'administrativeArea_329', 'text', 30, 0); INSERT INTO field_elmnt VALUES (4253, 'refer_gab_iso19115', 'postalCode_330', 'text', 20, 0); INSERT INTO field_elmnt VALUES (4254, 'refer_gab_iso19115', 'country_331', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4255, 'refer_gab_iso19115', 'electronicMailAddress_332', 'mail', 30, 0); INSERT INTO field_elmnt VALUES (4256, 'refer_gab_iso19115', 'linkage_456', 'web', 60, 3); INSERT INTO field_elmnt VALUES (4257, 'refer_gab_iso19115', 'protocol_457', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4258, 'refer_gab_iso19115', 'applicationProfile_458', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4259, 'refer_gab_iso19115', 'description_460', 'textarea', 70, 3); INSERT INTO field_elmnt VALUES (4260, 'refer_gab_iso19115', 'function_461', 'select', 20, 0); INSERT INTO field_elmnt VALUES (4261, 'refer_gab_iso19115', 'name_459', 'text', 40, 0); INSERT INTO field_elmnt VALUES (4262, 'refer_gab_iso19115', 'country_23', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14274, 'web_service_geo', 'characterSet_4', 'select', 0, 0); INSERT INTO field_elmnt VALUES (14277, 'web_service_geo', 'city_20', 'text', 30, 0); INSERT INTO field_elmnt VALUES (14281, 'web_service_geo', 'country_23', 'select', 0, 0); INSERT INTO field_elmnt VALUES (14286, 'web_service_geo', 'dateStamp_9', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (14289, 'web_service_geo', 'deliveryPoint_19', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (14292, 'web_service_geo', 'electronicMailAddress_24', 'mail', 50, 0); INSERT INTO field_elmnt VALUES (14294, 'web_service_geo', 'fileIdentifier_2', 'readonly', 30, 0); INSERT INTO field_elmnt VALUES (14298, 'web_service_geo', 'language_3', 'select', 0, 0); INSERT INTO field_elmnt VALUES (14301, 'web_service_geo', 'linkage_26', 'web', 70, 3); INSERT INTO field_elmnt VALUES (14305, 'web_service_geo', 'metadataStandardName_34', 'readonly', 20, 0); INSERT INTO field_elmnt VALUES (14306, 'web_service_geo', 'metadataStandardVersion_35', 'readonly', 40, 0); INSERT INTO field_elmnt VALUES (14309, 'web_service_geo', 'organisationName_11', 'textarea', 70, 2); INSERT INTO field_elmnt VALUES (14314, 'web_service_geo', 'postalCode_22', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14317, 'web_service_geo', 'role_14', 'select', 0, 0); INSERT INTO field_elmnt VALUES (14331, 'web_service_geo', 'status_940', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14335, 'web_service_geo', 'serviceType_925', 'text', 35, 0); INSERT INTO field_elmnt VALUES (14336, 'web_service_geo', 'serviceTypeVersion_926', 'text', 10, 0); INSERT INTO field_elmnt VALUES (14327, 'web_service_geo', 'title_924', 'textarea', 60, 2); INSERT INTO field_elmnt VALUES (14329, 'web_service_geo', 'abstract_963', 'textarea', 60, 5); INSERT INTO field_elmnt VALUES (14330, 'web_service_geo', 'credit_938', 'text', 40, 0); INSERT INTO field_elmnt VALUES (14328, 'web_service_geo', 'date_928', 'text', 25, 0); INSERT INTO field_elmnt VALUES (14341, 'web_service_geo', 'useLimitation_969', 'textarea', 50, 3); INSERT INTO field_elmnt VALUES (14342, 'web_service_geo', 'accessConstraints_970', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14343, 'web_service_geo', 'useConstraints_971', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14349, 'web_service_geo', 'name_961', 'text', 45, 0); INSERT INTO field_elmnt VALUES (14345, 'web_service_geo', 'keyword_952', 'text', 40, 0); INSERT INTO field_elmnt VALUES (14351, 'web_service_geo', 'operationName_943', 'text', 50, 0); INSERT INTO field_elmnt VALUES (14354, 'web_service_geo', 'invocationName_946', 'text', 50, 0); INSERT INTO field_elmnt VALUES (14332, 'web_service_geo', 'organisationName_949', 'text', 60, 0); INSERT INTO field_elmnt VALUES (14334, 'web_service_geo', 'electronicMailAddress_964', 'mail', 45, 0); INSERT INTO field_elmnt VALUES (14337, 'web_service_geo', 'fees_964', 'textarea', 50, 2); INSERT INTO field_elmnt VALUES (14338, 'web_service_geo', 'plannedAvailableDateTime_965', 'text', 30, 0); INSERT INTO field_elmnt VALUES (14339, 'web_service_geo', 'orderingInstructions_966', 'textarea', 50, 3); INSERT INTO field_elmnt VALUES (14340, 'web_service_geo', 'turnaround_967', 'textarea', 50, 3); INSERT INTO field_elmnt VALUES (14344, 'web_service_geo', 'linkage_300', 'textarea', 60, 2); INSERT INTO field_elmnt VALUES (14352, 'web_service_geo', 'DCP_944', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14347, 'web_service_geo', 'linkage_958', 'textarea', 60, 2); INSERT INTO field_elmnt VALUES (14356, 'web_service_geo', 'couplingType_1012', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14359, 'web_service_geo', 'westBoundLongitude_986', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14360, 'web_service_geo', 'eastBoundLongitude_987', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14361, 'web_service_geo', 'southBoundLatitude_988', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14362, 'web_service_geo', 'northBoundLatitude_989', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14333, 'web_service_geo', 'role_975', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14364, 'web_service_geo', 'begin_1003', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14365, 'web_service_geo', 'end_1004', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14363, 'web_service_geo', 'code_1074', 'text', 50, 0); INSERT INTO field_elmnt VALUES (14355, 'web_service_geo', 'dateType_929', 'select', 20, 0); INSERT INTO field_elmnt VALUES (14353, 'web_service_geo', 'operationDescription_945', 'textarea', 60, 3); INSERT INTO field_elmnt VALUES (14357, 'web_service_geo', 'identifier_1015', 'text', 20, 0); INSERT INTO field_elmnt VALUES (14358, 'web_service_geo', 'operationName_1016', 'text', 20, 0); -- -- Data for Name: gabarit_mtd; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO gabarit_mtd VALUES ('base_geo', '2003-05-20', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('carte_num', '2003-05-20', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('carte_papier', '2003-05-20', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('couche_raster', '2003-05-20', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('couche_vecteur', '2003-05-20', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('table_num', '2004-03-30', '2005-03-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('base_alpha', '2004-03-30', '2005-06-07', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('refer_biblio', '2004-06-02', '2005-06-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('doc_texte_num', '2004-06-02', '2005-06-01', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('refer_gab_iso19115', '2006-10-31', '2006-10-31', 'ISO 19115'); INSERT INTO gabarit_mtd VALUES ('web_service_geo', '2008-06-03', NULL, 'ISO 19115'); -- -- Data for Name: gabarit_parent; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO gabarit_parent VALUES ('couche_raster', 'carte_num'); INSERT INTO gabarit_parent VALUES ('couche_vecteur', 'carte_num'); INSERT INTO gabarit_parent VALUES ('couche_raster', 'base_geo'); INSERT INTO gabarit_parent VALUES ('couche_vecteur', 'base_geo'); INSERT INTO gabarit_parent VALUES ('table_num', 'base_alpha'); INSERT INTO gabarit_parent VALUES ('table_num', 'base_geo'); -- -- Data for Name: import_form; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO import_form VALUES ('EMO_CA', 2, 'MDweb', 'simul_spot5_98.img_1.xml', ''); -- -- Data for Name: index_search; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO index_search VALUES (3, 'EMO_CA', 3, 'Web Service Cartographique DEMIS', 'ce web service cartographique de demis offre une carte mondiale incluant les principales villes nationales et régionales, la topographie. ', '', 'web_service_geo', '9999-12-31', '0001-01-01 BC', 'false', 'Web Service Cartographique DEMIS', 'WMS DEMIS ', '2005-02-01', '2008-02-27', ' MDWeb_EMO_CA_web_service_geo_3 fra ISO 19115 FRA 1.0 Web service géographique 2008-06-03 Nom de l''organisme Adresse postale Ville Code postal France adresse@domain.com http://www.domain.com/ Web Service Cartographique DEMIS 2005-02-01 Ce Web service cartographique de DEMIS offre une carte mondiale incluant les principales villes nationales et régionales, la topographie. DEMIS contact@demis.nl Service Monde WMS 1.1.1 libre GetMap http://www.demis.nl/home/pages/wms/demiswms.htm DEMIS Products : web map server -190.4369 189.7314 -94.1749 101.9044 monde non connu non connu http://www.demis.nl/ ', '', 'http://wms.demis.nl/home/pages/wms/demiswms.htm'); INSERT INTO index_search VALUES (2, 'EMO_CA', 2, 'simulation spot 5 - vue de la maison de la teledetection', 'image de simulation du capteur multispectral spot 5 sur le site de la maison de la télédétection', '', 'couche_raster', '9999-12-31', '0001-01-01 BC', 'false', 'Simulation SPOT 5 - vue de la maison de la télédétection', 'simul_spot5_98.img_1', '2005-01-01', '2007-07-05', ' simul_spot5_98.img_1 fra ISO 19115 FRA 1.0 Image satellitale - Photos aér. 2007-07-05 Nom de l''organisme Adresse postale Ville Code postal France adresse@domain.com http://www.domain.com/ 002 646 2.5 449 2.5 false NTF Lambert II Carto Image de simulation du capteur multispectral SPOT 5 sur le site de la Maison de la Télédétection fra structure geoscientificInformation Image spot Simulation SPOT 5 - vue de la maison de la télédétection 2005-01-01 Nom de l''organisme Adresse postale Ville Code postal France adresse@domain.com http://www.domain.com/ 2.5 3.8761 3.8761 43.6103 43.6103 N_90_E_180_S_-90_E-180 Raster Dataset - IMG inconnu http://localhost/mdweb-demo16/images/simul_spot5_98.img.jpg jpg simul_spot5_98.img Image Nom de l''organisme Adresse postale Ville Code postal France adresse@domain.com http://www.domain.com/ 0,686 http://localhost/mdweb-demo16/ressources/EMO_CA_2.zip ', 'Raster Dataset - IMG', 'http://localhost/mdweb-demo16/ressources/EMO_CA_2.zip'); -- -- Data for Name: jeu_val_predef; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO jeu_val_predef VALUES (9, 'admin', '2007-03-26', NULL, 'table_num', 'classeur_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (21, 'admin', '2007-09-20', NULL, 'table_num', 'spreadsheet_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (1, 'admin', '2007-03-26', NULL, 'base_alpha', 'BD_relationnelle_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (13, 'admin', '2007-09-20', NULL, 'base_alpha', 'temporalDB-en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (2, 'admin', '2007-03-26', NULL, 'base_geo', 'BD_geographique_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (14, 'admin', '2007-09-20', NULL, 'base_geo', 'geographicalDB_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (3, 'admin', '2007-03-26', NULL, 'carte_num', 'carte_numerique_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (15, 'admin', '2007-09-20', NULL, 'carte_num', 'digitail map_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (4, 'admin', '2007-03-26', NULL, 'carte_papier', 'carte_papier_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (16, 'admin', '2007-09-20', NULL, 'carte_papier', 'hardcopy map_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (5, 'admin', '2007-03-26', NULL, 'couche_raster', 'theme_raster_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (17, 'admin', '2007-09-20', NULL, 'couche_raster', 'image aerial pict_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (6, 'admin', '2007-03-26', NULL, 'couche_vecteur', 'theme_vecteur_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (18, 'admin', '2007-09-20', NULL, 'couche_vecteur', 'vector layer_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (7, 'admin', '2007-03-26', NULL, 'doc_texte_num', 'presentation_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (19, 'admin', '2007-09-20', NULL, 'doc_texte_num', 'text documents_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (8, 'admin', '2007-03-26', NULL, 'refer_biblio', 'reference_biblio_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (20, 'admin', '2007-09-20', NULL, 'refer_biblio', 'bibliographical_en', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (12, 'admin', '2007-09-20', NULL, '', 'sample contact', 'false', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (11, 'admin', '2008-06-02', NULL, '', 'exemple contact', 'true', 'true', 'true'); INSERT INTO jeu_val_predef VALUES (22, 'admin', '2008-06-02', NULL, 'web_service_geo', 'service_web_fr', 'true', 'false', 'false'); INSERT INTO jeu_val_predef VALUES (23, 'admin', '2008-06-02', NULL, 'web_service_geo', 'web_service_en', 'false', 'false', 'false'); -- -- Data for Name: keywords; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- Data for Name: label; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO label VALUES ('onglet_catalog', 'message_interface', 'eng', 'catalog search', 'message', 'Catalogs?'); INSERT INTO label VALUES ('onglet_catalog', 'message_interface', 'fra', '', 'message', 'Catalogues?'); INSERT INTO label VALUES ('no_observatory', 'message_interface', 'eng', '', 'message', 'Observatory no identified'); INSERT INTO label VALUES ('data_type', 'liste_interface', 'fra', 'Etiquette ''type de données''', 'code', 'Type de données'); INSERT INTO label VALUES ('base_geo', 'gabarit_mtd', 'eng', 'Label ''Geographic database''', 'gabarit', 'Geographical DB'); INSERT INTO label VALUES ('base_geo', 'gabarit_mtd', 'fra', 'Etiquette ''Base géographique''', 'gabarit', 'BD Géographique'); INSERT INTO label VALUES ('carte_papier', 'gabarit_mtd', 'eng', 'Label ''Hardcopy map''', 'gabarit', 'Hardcopy map'); INSERT INTO label VALUES ('carte_papier', 'gabarit_mtd', 'fra', 'Etiquette ''Carte papier''', 'gabarit', 'Carte papier'); INSERT INTO label VALUES ('none_contacts', 'message_interface', 'eng', 'No preset contacts', 'message', 'No presets contacts'); INSERT INTO label VALUES ('none_predefs', 'message_interface', 'fra', 'Pas de valeurs prédéfinies', 'message', 'Pas de valeurs prédéfinies'); INSERT INTO label VALUES ('none_predefs', 'message_interface', 'eng', 'No preset values', 'message', 'No preset values'); INSERT INTO label VALUES ('confirm_suppr_obs', 'message_interface', 'eng', '', 'message', 'Are you sure that you want to delete the observatory '); INSERT INTO label VALUES ('incompatibilite_xml', 'message_interface', 'eng', 'XML sheetiIncomptaibilite avec MDweb', 'message', 'It is not a validate xml sheet for MDweb'); INSERT INTO label VALUES ('iso_lang_code_por', 'elmnt_liste_interface', 'fra', '', 'code', 'portugais'); INSERT INTO label VALUES ('confirm_import', 'message_interface', 'eng', '', 'message', 'The metadata sheet already exist : What do you want to do ?'); INSERT INTO label VALUES ('comm_format_quicklook', 'message_interface', 'fra', 'format des fichiers pour les quicklook', 'message', 'formats acceptés : gif, jpg, jpeg, png, bmp - volume max : 100 Ko'); INSERT INTO label VALUES ('bulle_change_title', 'message_interface', 'eng', '', 'bulle', 'Change sheet title'); INSERT INTO label VALUES ('bulle_change_private', 'message_interface', 'eng', '', 'bulle', 'Change the sheet confidentiality'); INSERT INTO label VALUES ('bulle_validate', 'message_interface', 'eng', '', 'bulle', 'Validate the sheet'); INSERT INTO label VALUES ('bulle_invalidate', 'message_interface', 'eng', '', 'bulle', 'Invalidate the sheet'); INSERT INTO label VALUES ('bulle_change_level', 'message_interface', 'eng', '', 'bulle', 'Change level metadata sheet'); INSERT INTO label VALUES ('bulle_insert_predef', 'message_interface', 'eng', '', 'bulle', 'Insert preset values into metadata sheet'); INSERT INTO label VALUES ('bulle_insert_contact', 'message_interface', 'eng', '', 'bulle', 'Insert default contact into metadata sheet'); INSERT INTO label VALUES ('bulle_admin', 'message_interface', 'eng', '', 'bulle', 'Administration page'); INSERT INTO label VALUES ('bulle_user', 'message_interface', 'eng', '', 'bulle', 'Home page'); INSERT INTO label VALUES ('bulle_help', 'message_interface', 'eng', '', 'bulle', 'Help'); INSERT INTO label VALUES ('bulle_exit', 'message_interface', 'eng', '', 'bulle', 'Exit MDweb'); INSERT INTO label VALUES ('bulle_attach_quicklook', 'message_interface', 'eng', '', 'bulle', 'Attach quicklook'); INSERT INTO label VALUES ('bulle_attach_children_sheet', 'message_interface', 'eng', '', 'bulle', 'Attach child'' sheet'); INSERT INTO label VALUES ('bulle_attach_parent_sheet', 'message_interface', 'eng', '', 'bulle', 'Attach parent''s sheet'); INSERT INTO label VALUES ('bulle_insert_country', 'message_interface', 'eng', '', 'bulle', 'Create new country'); INSERT INTO label VALUES ('bulle_change_default_contact', 'message_interface', 'eng', '', 'bulle', 'Choose this contact like default''s contact'); INSERT INTO label VALUES ('bulle_change_ default_predef', 'message_interface', 'eng', '', 'bulle', 'Choose this preset dataset like default dataset'); INSERT INTO label VALUES ('bulle_attach_archive', 'message_interface', 'eng', '', 'bulle', 'Attach archive zip'); INSERT INTO label VALUES ('nom_pays', 'message_interface', 'eng', 'Country Name', 'message', 'Country Name'); INSERT INTO label VALUES ('onglet_distributionInfo_41', 'message_interface', 'fra', 'Onglet ''Distribution''', 'message', 'Distribution'); INSERT INTO label VALUES ('nom_pays', 'message_interface', 'fra', 'Nom du pays', 'message', 'Nom du pays'); INSERT INTO label VALUES ('confirm_suppr_contact', 'message_interface', 'eng', 'Message for Javascript alert box to confirm contact deletion', 'message', 'Are you sure that you want to delete the contact'); INSERT INTO label VALUES ('maj_predef', 'message_interface', 'eng', 'Label ''update date contact''', 'message', 'Update preset values set date'); INSERT INTO label VALUES ('onglet_where', 'message_interface', 'fra', 'où', 'message', 'Où ?'); INSERT INTO label VALUES ('langue_por', 'elmnt_liste_interface', 'fra', 'Etiquette portugais', 'code', 'Portuguais'); INSERT INTO label VALUES ('langue_por', 'elmnt_liste_interface', 'eng', 'Label portugese', 'code', 'Portuguese'); INSERT INTO label VALUES ('onglet_when', 'message_interface', 'eng', 'when', 'message', 'When ?'); INSERT INTO label VALUES ('onglet_when', 'message_interface', 'fra', 'quand', 'message', 'Quand ?'); INSERT INTO label VALUES ('onglet_what', 'message_interface', 'eng', 'what', 'message', 'Which content ?'); INSERT INTO label VALUES ('onglet_what', 'message_interface', 'fra', 'quoi', 'message', 'Sur Quoi ?'); INSERT INTO label VALUES ('bt_attach', 'message_interface', 'por', 'submit button label', 'message', 'Anexar'); INSERT INTO label VALUES ('CountryCd', 'liste_interface', 'eng', '', 'message', 'Country'); INSERT INTO label VALUES ('gest_creer_desc', 'message_interface', 'eng', 'label description of create ', 'aide', 'To create a metadata entry in your catalog. two ways are possibles : the description of a dataserie (as relational database, geodatabase or digital map) or the description of a dataset (as vector layer, raster layer, etc.)'); INSERT INTO label VALUES ('doc_when', 'message_interface', 'eng', 'when', 'message', 'When ? : Choose a period (beginning date, ending date) within the datasets have been created.'); INSERT INTO label VALUES ('login', 'message_interface', 'fra', 'Etiquette login', 'message', 'Login'); INSERT INTO label VALUES ('login', 'message_interface', 'eng', 'Login label', 'message', 'Login'); INSERT INTO label VALUES ('nom', 'message_interface', 'fra', 'Etiquette nom', 'message', 'Nom'); INSERT INTO label VALUES ('nom', 'message_interface', 'eng', 'Name label', 'message', 'Name'); INSERT INTO label VALUES ('prenom', 'message_interface', 'fra', 'Etiquette prénom', 'message', 'Prénom'); INSERT INTO label VALUES ('prenom', 'message_interface', 'eng', 'Firstname label', 'message', 'Firstname'); INSERT INTO label VALUES ('email', 'message_interface', 'fra', 'Etiquette adresse email', 'message', 'Adresse email'); INSERT INTO label VALUES ('email', 'message_interface', 'eng', 'Email adress label', 'message', 'Email adress'); INSERT INTO label VALUES ('mdp', 'message_interface', 'fra', 'Etiquette mot de passe', 'message', 'Mot de passe'); INSERT INTO label VALUES ('mdp', 'message_interface', 'eng', 'Password label', 'message', 'Password'); INSERT INTO label VALUES ('conf_mdp', 'message_interface', 'eng', 'Confirm password label', 'message', 'Confirm password'); INSERT INTO label VALUES ('supprimer', 'message_interface', 'fra', 'Etiquette supprimer', 'message', 'Supprimer'); INSERT INTO label VALUES ('supprimer', 'message_interface', 'eng', 'Delete label', 'message', 'Delete'); INSERT INTO label VALUES ('modifier', 'message_interface', 'fra', 'Etiquette modifier', 'message', 'Modifier'); INSERT INTO label VALUES ('modifier', 'message_interface', 'eng', 'Update label', 'message', 'Update'); INSERT INTO label VALUES ('coulpref', 'liste_interface', 'fra', 'Etiquette couleur de MDweb', 'code', 'Couleur de MDweb'); INSERT INTO label VALUES ('coulpref', 'liste_interface', 'eng', 'MDWeb color label', 'code', 'Mdweb color'); INSERT INTO label VALUES ('nivacces_0', 'elmnt_liste_interface', 'fra', 'Etiquette rôle administration', 'code', 'administration'); INSERT INTO label VALUES ('nivacces_0', 'elmnt_liste_interface', 'eng', 'Administration role label', 'code', 'administration'); INSERT INTO label VALUES ('nivacces_1', 'elmnt_liste_interface', 'fra', 'Etiquette rôle validation', 'code', 'validation'); INSERT INTO label VALUES ('nivacces_1', 'elmnt_liste_interface', 'eng', 'Approval role label', 'code', 'approval'); INSERT INTO label VALUES ('nivacces_2', 'elmnt_liste_interface', 'fra', 'Etiquette rôle catalogage', 'code', 'catalogage'); INSERT INTO label VALUES ('nivacces_2', 'elmnt_liste_interface', 'eng', 'Cataloguing role label', 'code', 'cataloguing'); INSERT INTO label VALUES ('nivacces_3', 'elmnt_liste_interface', 'fra', 'Etiquette rôle consultation', 'code', 'consultation'); INSERT INTO label VALUES ('nivacces_3', 'elmnt_liste_interface', 'eng', 'Browsing role label', 'code', 'browsing'); INSERT INTO label VALUES ('coulpref_bleu', 'elmnt_liste_interface', 'fra', 'Etiquette couleur bleue', 'code', 'bleu'); INSERT INTO label VALUES ('coulpref_bleu', 'elmnt_liste_interface', 'eng', 'Blue color label', 'code', 'blue'); INSERT INTO label VALUES ('com_cellGeometry_371', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_CellGeometryCode)'); INSERT INTO label VALUES ('coulpref_marron', 'elmnt_liste_interface', 'fra', 'Etiquette couleur marron', 'code', 'marron'); INSERT INTO label VALUES ('coulpref_marron', 'elmnt_liste_interface', 'eng', 'Brown color label', 'code', 'brown'); INSERT INTO label VALUES ('coulpref_vert', 'elmnt_liste_interface', 'fra', 'Etiquette couleur vert', 'code', 'vert'); INSERT INTO label VALUES ('coulpref_vert', 'elmnt_liste_interface', 'eng', 'Green color label', 'code', 'green'); INSERT INTO label VALUES ('erreur_no_contacts', 'message_interface', 'eng', '', 'message', 'No contacts'); INSERT INTO label VALUES ('lbl_liste_keywords', 'message_interface', 'fra', '', 'message', 'Choix d''un mot clé'); INSERT INTO label VALUES ('zone_admin', 'message_interface', 'eng', 'Administration area label for the administrator pages title', 'message', 'Administration area'); INSERT INTO label VALUES ('ajouter', 'message_interface', 'fra', 'Etiquette ajouter', 'message', 'Ajouter'); INSERT INTO label VALUES ('ajouter', 'message_interface', 'eng', 'Add label', 'message', 'Add'); INSERT INTO label VALUES ('erreur_saisie_oblig', 'message_interface', 'fra', 'Message d''erreur pour la saisie d''un champ obligatoire', 'message', 'Veuillez saisir le champ obligatoire'); INSERT INTO label VALUES ('erreur_saisie_oblig', 'message_interface', 'eng', 'Error message for a mandatory field input', 'message', 'Please input the mandatory field'); INSERT INTO label VALUES ('erreur_saisie_entier', 'message_interface', 'fra', 'Message d''erreur pour la saisie d''un entier', 'message', 'Veuillez saisir un entier pour le champ'); INSERT INTO label VALUES ('erreur_saisie_entier', 'message_interface', 'eng', 'Error message for an integer input', 'message', 'Please input an integer for the field'); INSERT INTO label VALUES ('erreur_saisie_flottant', 'message_interface', 'fra', 'Message d''erreur pour la saisie d''un réel', 'message', 'Veuillez saisir une valeur numérique pour le champ'); INSERT INTO label VALUES ('erreur_saisie_flottant', 'message_interface', 'eng', 'Error message for a numeric value input', 'message', 'Please input a numeric value for the field'); INSERT INTO label VALUES ('erreur_saisie_email', 'message_interface', 'fra', 'Message d''erreur pour la saisie d''une adresse email', 'message', 'Veuillez saisir une adresse email valide pour le champ'); INSERT INTO label VALUES ('erreur_saisie_email', 'message_interface', 'eng', 'Error message for a valid email adress input', 'message', 'Please input a valid email adress for the field'); INSERT INTO label VALUES ('erreur_saisie_longueurMax', 'message_interface', 'fra', 'Message d''erreur pour la saisie de la longueur max d''un champ texte', 'message', 'Veuillez saisir moins de caractères pour le champ'); INSERT INTO label VALUES ('CountryCd', 'liste_interface', 'fra', '', 'message', 'Pays'); INSERT INTO label VALUES ('filtrer', 'message_interface', 'fra', '', 'message', 'Filtrer'); INSERT INTO label VALUES ('keywords_list', 'message_interface', 'fra', '', 'message', 'Liste des mots clés'); INSERT INTO label VALUES ('erreur_saisie_longueurMax', 'message_interface', 'eng', 'Error message for a max length text input ', 'message', 'Please input fewer caracters for the field'); INSERT INTO label VALUES ('erreur_saisie_longueurMin', 'message_interface', 'fra', 'Message d''erreur pour la saisie de la longueur min d''un champ texte', 'message', 'Veuillez saisir plus de caractères pour le champ'); INSERT INTO label VALUES ('erreur_saisie_longueurMin', 'message_interface', 'eng', 'Error message for a min length text input', 'message', 'Please input more caracters for the field'); INSERT INTO label VALUES ('erreur_saisie_dateValide', 'message_interface', 'fra', 'Message d''erreur pour la saisie d''une date valide', 'message', 'Veuillez saisir une date valide pour le champ'); INSERT INTO label VALUES ('erreur_saisie_dateValide', 'message_interface', 'eng', 'Error message for a valid date input.', 'message', 'Please input a valid date for the field'); INSERT INTO label VALUES ('erreur_saisie_formatDate', 'message_interface', 'fra', 'Message d''erreur pour la saisie du format d''une date', 'message', 'Veuillez respecter le format de date correct (JJ-MM-AAAA) pour le champ'); INSERT INTO label VALUES ('erreur_saisie_correspMdp', 'message_interface', 'fra', 'Message d''erreur pour la correspondance entre le mot de passe et sa confirmation', 'message', 'Le mot de passe et sa confirmation ne correspondent pas, veuillez les saisir à nouveau'); INSERT INTO label VALUES ('erreur_saisie_correspMdp', 'message_interface', 'eng', 'Error message if password don''t match with password confirmation', 'message', 'Password and confirmation don''t match, please input them again'); INSERT INTO label VALUES ('mess_ajout_base', 'message_interface', 'fra', 'Message de confirmation après ajout de valeurs dans la base', 'message', 'Les valeurs ont été ajoutées dans la base de données'); INSERT INTO label VALUES ('mess_modif_base', 'message_interface', 'fra', 'Message de confirmation après modification de valeurs dans la base', 'message', 'Les valeurs ont été modifiées dans la base de données'); INSERT INTO label VALUES ('mess_suppr_base', 'message_interface', 'fra', 'Message de confirmation après suppression de valeurs de la base', 'message', 'Les valeurs ont été supprimées de la base de données'); INSERT INTO label VALUES ('mess_suppr_base', 'message_interface', 'eng', 'Confirmation message after deletion of values from the database', 'message', 'Values deleted from the database'); INSERT INTO label VALUES ('mess_ajout_base', 'message_interface', 'eng', 'Confirmation message after addition of values in the database', 'message', 'Values added into the database'); INSERT INTO label VALUES ('mess_modif_base', 'message_interface', 'eng', 'Confirmation message after modification of values in the database', 'message', 'Values updated into the database'); INSERT INTO label VALUES ('erreur_aucune_modif', 'message_interface', 'fra', 'Message d''erreur pour indiquer qu''il n''y a rien à mettre à jour', 'message', 'Il n''y a aucun champ à mettre à jour'); INSERT INTO label VALUES ('erreur_aucune_modif', 'message_interface', 'eng', 'Error message to indicate there is nothing to update', 'message', 'There is no value to update'); INSERT INTO label VALUES ('erreur_doublon_cleprim', 'message_interface', 'fra', 'Message d''erreur pour empêcher l''insertion de doublons dans la clé primaire d''une table.', 'message', 'Attention! Veuillez saisir une autre valeur pour :'); INSERT INTO label VALUES ('erreur_doublon_cleprim', 'message_interface', 'eng', 'Error message to stop insertion of doubles in primary key of a table.', 'message', 'Warning! Please input another value for :'); INSERT INTO label VALUES ('titre_libelles', 'message_interface', 'fra', 'Etiquette libellés pour le titre des pages de l''admin', 'message', 'des libellés'); INSERT INTO label VALUES ('titre_libelles', 'message_interface', 'eng', 'Label labels for the administrator pages title', 'message', 'labels'); INSERT INTO label VALUES ('fiche', 'message_interface', 'fra', 'Etiquette saisie accueil creation fiche', 'message', 'Fiche'); INSERT INTO label VALUES ('fiche', 'message_interface', 'eng', 'label home create sheet', 'message', 'Fiche'); INSERT INTO label VALUES ('nivacces', 'liste_interface', 'fra', 'Etiquette rôle', 'code', 'Rôle'); INSERT INTO label VALUES ('nivacces', 'liste_interface', 'eng', 'Role label', 'code', 'Role'); INSERT INTO label VALUES ('iso_lang_code', 'liste_interface', 'fra', 'Etiquette langue', 'code', 'Langue'); INSERT INTO label VALUES ('confirm_suppr_util', 'message_interface', 'eng', 'Message for Javascript alert box to confirm user deletion', 'message', 'Are you sure that you want to delete the user'); INSERT INTO label VALUES ('liste_libelles', 'message_interface', 'fra', 'Titre figurant au-dessus de la liste des libellés.', 'message', 'Liste des libellés'); INSERT INTO label VALUES ('liste_libelles', 'message_interface', 'eng', 'Title printed at the top of the label list.', 'message', 'Label list'); INSERT INTO label VALUES ('id_foreign_table', 'message_interface', 'fra', 'Etiquette ''nom du libellé''', 'message', 'Nom du libellé'); INSERT INTO label VALUES ('id_foreign_table', 'message_interface', 'eng', 'Label ''name of the label''', 'message', 'Label name'); INSERT INTO label VALUES ('label', 'message_interface', 'fra', 'Etiquette ''contenu du libellé''', 'message', 'Texte du libellé'); INSERT INTO label VALUES ('label', 'message_interface', 'eng', 'Label ''text of the label''', 'message', 'Text of the label'); INSERT INTO label VALUES ('defn', 'message_interface', 'fra', 'Etiquette ''définition du libellé''', 'message', 'Définition du libellé'); INSERT INTO label VALUES ('defn', 'message_interface', 'eng', 'Label ''label definition''', 'message', 'Label definition'); INSERT INTO label VALUES ('type_label', 'liste_interface', 'fra', 'Etiquette ''type de libellé''', 'code', 'Type de libellé'); INSERT INTO label VALUES ('type_label_message', 'elmnt_liste_interface', 'fra', 'Etiquette ''messages des interfaces''', 'code', 'Messages des interfaces'); INSERT INTO label VALUES ('type_label_code', 'elmnt_liste_interface', 'fra', 'Etiquette ''liste prédéfinies des interfaces''', 'code', 'Liste prédéfinies des interfaces'); INSERT INTO label VALUES ('type_label_element', 'elmnt_liste_interface', 'fra', 'Etiquette ''éléments de la norme''', 'code', 'Eléments de la norme'); INSERT INTO label VALUES ('refer_biblio', 'gabarit_mtd', 'fra', '', 'gabarit', 'Référence bibliographique'); INSERT INTO label VALUES ('type_label_liste', 'elmnt_liste_interface', 'fra', 'Etiquette ''listes prédéfinies de la norme''', 'code', 'Listes prédéfinies de la norme'); INSERT INTO label VALUES ('confirm_suppr_util', 'message_interface', 'fra', 'Message pour la boîte Javascript de confirmation de la supression d''un utilisateur', 'message', 'Etes vous sûr de vouloir supprimer l''utilisateur'); INSERT INTO label VALUES ('confirm_suppr_label', 'message_interface', 'fra', 'Message pour la boîte Javascript de confirmation de la supression d''un libellé', 'message', 'Etes vous sûr de vouloir supprimer le libellé'); INSERT INTO label VALUES ('confirm_suppr_label', 'message_interface', 'eng', 'Message for Javascript alert box to confirm label deletion', 'message', 'Are you sure that you want to delete the label'); INSERT INTO label VALUES ('select_type_label', 'message_interface', 'fra', 'Message d''indication pour la sélection d''un type de label', 'message', 'Veuillez sélectionner ci-dessus un type de libellés'); INSERT INTO label VALUES ('select_type_label_ajout', 'message_interface', 'fra', 'Message d''indication pour la sélection d''un type de label et d''une langue', 'message', 'Veuillez sélectionner ci-dessus un type de libellés et une langue'); INSERT INTO label VALUES ('select_type_label_ajout', 'message_interface', 'eng', 'Information message to select a label type and a language', 'message', 'Please select a label type and a language in the lists above'); INSERT INTO label VALUES ('erreur_select_label', 'message_interface', 'eng', 'Error message for the search of a label list', 'message', 'There is no label matching with your criteria to'); INSERT INTO label VALUES ('erreur_select_label', 'message_interface', 'fra', 'Message d''erreur pour la recherche d''une liste de labels', 'message', 'Il n''y a aucun libellé correspondant aux critères choisis à'); INSERT INTO label VALUES ('zone_admin', 'message_interface', 'fra', 'Etiquette zone administration pour le titre des pages de l''admin', 'message', 'Zone administration'); INSERT INTO label VALUES ('sheet_title', 'message_interface', 'eng', 'Label ''sheet title''', 'message', 'Sheet title'); INSERT INTO label VALUES ('sheet_title', 'message_interface', 'fra', 'Etiquette ''titre de la fiche''', 'message', 'Titre de la fiche'); INSERT INTO label VALUES ('create_MD_title', 'message_interface', 'eng', 'Label ''create metadata sheet''', 'message', 'Create metadata sheet'); INSERT INTO label VALUES ('create_MD_title', 'message_interface', 'fra', 'Etiquette ''création d''une fiche de métadonnées''', 'message', 'Création d''une fiche de métadonnées'); INSERT INTO label VALUES ('yes', 'message_interface', 'eng', 'Label ''yes''', 'message', 'Yes'); INSERT INTO label VALUES ('yes', 'message_interface', 'fra', 'Etiquette ''oui''', 'message', 'Oui'); INSERT INTO label VALUES ('no', 'message_interface', 'eng', 'Label ''no''', 'message', 'No'); INSERT INTO label VALUES ('no', 'message_interface', 'fra', 'Etiquette ''non''', 'message', 'Non'); INSERT INTO label VALUES ('mod_creation_MD', 'message_interface', 'eng', 'Label for the creation mod of a metadata sheet', 'message', 'Create from an existing sheet?'); INSERT INTO label VALUES ('mod_creation_MD', 'message_interface', 'fra', 'Etiquette pour le mode de création d''une fiche de métadonnées', 'message', 'Créer à partir d''une fiche existante?'); INSERT INTO label VALUES ('update_MD_title', 'message_interface', 'fra', 'Etiquette ''mise à jour d''une fiche de métadonnées''', 'message', 'Modifier une fiche de métadonnées'); INSERT INTO label VALUES ('update_MD_title', 'message_interface', 'eng', 'Label ''update metadata sheet''', 'message', 'Modify a metadata sheet'); INSERT INTO label VALUES ('update_date', 'message_interface', 'eng', 'Label ''update date''', 'message', 'Update date'); INSERT INTO label VALUES ('update_date', 'message_interface', 'fra', 'Etiquette ''date de modification''', 'message', 'Date de modification'); INSERT INTO label VALUES ('type_label_gabarit', 'elmnt_liste_interface', 'fra', 'Etiquette ''nom des gabarits''', 'code', 'Type de ressource'); INSERT INTO label VALUES ('modif_crit', 'message_interface', 'eng', 'Label ''modify criteria''.', 'message', 'Modify criteria'); INSERT INTO label VALUES ('modif_crit', 'message_interface', 'fra', 'Etiquette ''changer les critères''.', 'message', 'Changer les critères'); INSERT INTO label VALUES ('use_template', 'message_interface', 'eng', 'Label ''use as template''.', 'message', 'Use as template'); INSERT INTO label VALUES ('use_template', 'message_interface', 'fra', 'Etiquette ''utiliser comme modèle''.', 'message', 'Utiliser comme modèle'); INSERT INTO label VALUES ('description_imagette', 'message_interface', 'eng', 'description label', 'message', 'Description of content of quicklook'); INSERT INTO label VALUES ('accueil_saisie_fiche', 'message_interface', 'eng', 'Label for home page of input interface.', 'message', 'Please select a section in the left menu to be able to enter your values.'); INSERT INTO label VALUES ('accueil_saisie_fiche', 'message_interface', 'fra', 'Etiquette pour la page d''accueil de l''interface de saisie.', 'message', 'Pour saisir les valeurs, veuillez sélectionner une section dans le menu gauche.'); INSERT INTO label VALUES ('login_sais', 'message_interface', 'eng', 'Label ''updated by''.', 'message', 'Updated by'); INSERT INTO label VALUES ('login_sais', 'message_interface', 'fra', 'Etiquette ''mise à jour par''.', 'message', 'Mise à jour par'); INSERT INTO label VALUES ('niv_valid', 'message_interface', 'eng', 'Label ''validation''.', 'message', 'Validation'); INSERT INTO label VALUES ('niv_valid', 'message_interface', 'fra', 'Etiquette ''validation''.', 'message', 'Validation'); INSERT INTO label VALUES ('date_valid', 'message_interface', 'eng', 'Label ''validation date''.', 'message', 'Validation date'); INSERT INTO label VALUES ('date_valid', 'message_interface', 'fra', 'Etiquette ''date de validation''.', 'message', 'Date de validation'); INSERT INTO label VALUES ('saisie_complete', 'message_interface', 'eng', 'Label ''input complete?''.', 'message', 'Input complete?'); INSERT INTO label VALUES ('saisie_complete', 'message_interface', 'fra', 'Etiquette ''saisie terminée?''.', 'message', 'Saisie terminée?'); INSERT INTO label VALUES ('terminee', 'message_interface', 'eng', 'Label ''input complete?''.', 'message', 'finished'); INSERT INTO label VALUES ('terminee', 'message_interface', 'fra', 'Etiquette ''saisie terminée?''.', 'message', 'terminée'); INSERT INTO label VALUES ('non_terminee', 'message_interface', 'eng', 'Label ''input complete?''.', 'message', 'not finished'); INSERT INTO label VALUES ('non_terminee', 'message_interface', 'fra', 'Etiquette ''saisie terminée?''.', 'message', 'non terminée'); INSERT INTO label VALUES ('niv_saisie_0', 'elmnt_liste_interface', 'eng', 'Label for the 1st input level', 'code', 'Basic'); INSERT INTO label VALUES ('niv_saisie_0', 'elmnt_liste_interface', 'fra', 'Etiquette pour le 1er niveau de saisie', 'code', 'Elémentaire'); INSERT INTO label VALUES ('niv_saisie_1', 'elmnt_liste_interface', 'eng', 'Label for the 2nd input level', 'code', 'Extended'); INSERT INTO label VALUES ('niv_saisie_1', 'elmnt_liste_interface', 'fra', 'Etiquette pour le 2ème niveau de saisie', 'code', 'Etendu'); INSERT INTO label VALUES ('niv_saisie_2', 'elmnt_liste_interface', 'eng', 'Label for the 3rd input level', 'code', 'Complete'); INSERT INTO label VALUES ('niv_saisie_2', 'elmnt_liste_interface', 'fra', 'Etiquette pour le 3ème niveau de saisie', 'code', 'Complet'); INSERT INTO label VALUES ('carte_num', 'gabarit_mtd', 'eng', 'Label ''Digital map''', 'gabarit', 'Digital map'); INSERT INTO label VALUES ('select_type_label', 'message_interface', 'eng', 'Information message for the selection of a label type', 'message', 'Please select a label type in the list above'); INSERT INTO label VALUES ('titre_val_predef', 'message_interface', 'fra', 'Etiquette valeurs prédéfinies pour le titre des pages de l''admin', 'message', 'des valeurs prédéfinies'); INSERT INTO label VALUES ('titre_val_predef', 'message_interface', 'eng', 'Preset values label for the administrator pages title', 'message', 'preset values'); INSERT INTO label VALUES ('titre_gabarits', 'message_interface', 'fra', 'Etiquette gabarits pour le titre des pages de l''admin', 'message', 'des gabarits'); INSERT INTO label VALUES ('titre_gabarits', 'message_interface', 'eng', 'Profiles label for the administrator pages title', 'message', 'profiles'); INSERT INTO label VALUES ('erreur_suppr_fiche_pere', 'message_interface', 'fra', 'Message d''erreur pour empêcher la suppression d''une fiche si elle est père d''une autre.', 'message', 'Suppression interdite : cette fiche est déjà liée à d''autres fiches.'); INSERT INTO label VALUES ('erreur_suppr_fiche_pere', 'message_interface', 'eng', 'Error message to stop deletion of a sheet linked with another sheets.', 'message', 'Deletion forbidden : this sheet is already linked with another sheets.'); INSERT INTO label VALUES ('mess_suppr_fiche', 'message_interface', 'fra', 'Message de confirmation pour la suppression d''une fiche.', 'message', 'La fiche et tous ses champs ont été supprimés de la base.'); INSERT INTO label VALUES ('mess_suppr_fiche', 'message_interface', 'eng', 'Confirmation message for sheet deletion.', 'message', 'The sheet and all it fields have been deleted from the database.'); INSERT INTO label VALUES ('parent_attach', 'message_interface', 'eng', 'Label ''link parent sheets''.', 'message', 'Link one or more parent sheet(s)'); INSERT INTO label VALUES ('parent_attach', 'message_interface', 'fra', 'Etiquette ''attacher fiche parent''.', 'message', 'Attacher une ou plusieurs fiche(s) parent(s)'); INSERT INTO label VALUES ('parent_type', 'message_interface', 'eng', 'Label ''parent type''.', 'message', 'Parent type'); INSERT INTO label VALUES ('parent_type', 'message_interface', 'fra', 'Etiquette ''type du parent''.', 'message', 'Type du parent'); INSERT INTO label VALUES ('parent_attach2', 'message_interface', 'eng', 'Label ''linked parent sheets''.', 'message', 'List of linked parent sheets'); INSERT INTO label VALUES ('parent_attach2', 'message_interface', 'fra', 'Etiquette ''fiche parent attachée''.', 'message', 'Liste des fiches parents attachées'); INSERT INTO label VALUES ('fils_attach', 'message_interface', 'eng', 'Label ''link son sheets''.', 'message', 'Link one or more son sheet(s)'); INSERT INTO label VALUES ('fils_attach', 'message_interface', 'fra', 'Etiquette ''attacher fiche fille''.', 'message', 'Attacher une ou plusieurs fiche(s) fille(s)'); INSERT INTO label VALUES ('fils_type', 'message_interface', 'eng', 'Label ''parent type''.', 'message', 'Son type'); INSERT INTO label VALUES ('fils_type', 'message_interface', 'fra', 'Etiquette ''type du fils''.', 'message', 'Type du fils'); INSERT INTO label VALUES ('fils_attach2', 'message_interface', 'eng', 'Label ''linked son sheets''.', 'message', 'List of linked son sheets'); INSERT INTO label VALUES ('fils_attach2', 'message_interface', 'fra', 'Etiquette ''fiche fille attachée''.', 'message', 'Liste des fiches filles attachées'); INSERT INTO label VALUES ('mess_select_parent', 'message_interface', 'eng', 'Label ''select parent sheet''.', 'message', 'Please select one or more parent sheet(s) to link.'); INSERT INTO label VALUES ('mess_select_parent', 'message_interface', 'fra', 'Etiquette ''sélectionner parent''.', 'message', 'Veuillez sélectionner une ou plusieurs fiche(s) parent(s) à attacher.'); INSERT INTO label VALUES ('mess_select_fils', 'message_interface', 'eng', 'Label ''select parent sheet''.', 'message', 'Please select one or more son sheet(s) to link.'); INSERT INTO label VALUES ('mess_select_fils', 'message_interface', 'fra', 'Etiquette ''sélectionner parent''.', 'message', 'Veuillez sélectionner une ou plusieurs fiche(s) fille(s) à attacher.'); INSERT INTO label VALUES ('selectionner', 'message_interface', 'eng', 'Label ''select''.', 'message', 'Select'); INSERT INTO label VALUES ('selectionner', 'message_interface', 'fra', 'Etiquette ''sélectionner''.', 'message', 'Sélectionner'); INSERT INTO label VALUES ('attacher', 'message_interface', 'eng', 'Label ''link''.', 'message', 'Link'); INSERT INTO label VALUES ('attacher', 'message_interface', 'fra', 'Etiquette ''attacher''.', 'message', 'Attacher'); INSERT INTO label VALUES ('mess_no_attach_fils', 'message_interface', 'eng', 'Label ''no son sheets to link''.', 'message', 'No son sheets to link'); INSERT INTO label VALUES ('mess_no_attach_fils', 'message_interface', 'fra', 'Etiquette ''pas de fiches filles à attacher''.', 'message', 'Il n''y a pas de fiches filles à attacher'); INSERT INTO label VALUES ('mess_no_attach_parent', 'message_interface', 'eng', 'Label ''no parent sheets to link''.', 'message', 'No parent sheets to link'); INSERT INTO label VALUES ('mess_no_attach_parent', 'message_interface', 'fra', 'Etiquette ''pas de fiches parents à attacher''.', 'message', 'Il n''y a pas de fiches parents à attacher'); INSERT INTO label VALUES ('detacher', 'message_interface', 'eng', 'Label ''unlink''.', 'message', 'Unlink'); INSERT INTO label VALUES ('detacher', 'message_interface', 'fra', 'Etiquette ''détacher''.', 'message', 'Détacher'); INSERT INTO label VALUES ('confirm_detach_parent', 'message_interface', 'eng', 'Label ''confirm unlink for parent sheet''.', 'message', 'Are you sure you want to unlink the parent sheet'); INSERT INTO label VALUES ('confirm_detach_parent', 'message_interface', 'fra', 'Etiquette de confirmation pour le détachement d''une fiche parent.', 'message', 'Etes-vous sûr de vouloir détacher la fiche parent'); INSERT INTO label VALUES ('confirm_detach_fils', 'message_interface', 'eng', 'Label ''confirm unlink for son sheet''.', 'message', 'Are you sure you want to unlink the son sheet'); INSERT INTO label VALUES ('confirm_detach_fils', 'message_interface', 'fra', 'Etiquette de confirmation pour le détachement d''une fiche fille.', 'message', 'Etes-vous sûr de vouloir détacher la fiche fille'); INSERT INTO label VALUES ('predef_name', 'message_interface', 'eng', 'name Contact label', 'message', 'Preset values set name'); INSERT INTO label VALUES ('carte_num', 'gabarit_mtd', 'fra', 'Etiquette ''Carte numérique''', 'gabarit', 'Carte numérique'); INSERT INTO label VALUES ('autre_recherche', 'message_interface', 'eng', 'Label new search', 'message', 'New search'); INSERT INTO label VALUES ('autre_recherche', 'message_interface', 'fra', 'Etiquette lancer une autre recherche', 'message', 'Lancer une nouvelle recherche'); INSERT INTO label VALUES ('retour', 'message_interface', 'eng', 'Label back', 'message', 'Back'); INSERT INTO label VALUES ('CoundryCd_1', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Algeria'); INSERT INTO label VALUES ('retour', 'message_interface', 'fra', 'Etiquette retour', 'message', 'Retour'); INSERT INTO label VALUES ('date_debut', 'message_interface', 'eng', 'Label beginning date', 'message', 'Beginning date'); INSERT INTO label VALUES ('date_debut', 'message_interface', 'fra', 'Etiquette date de début', 'message', 'Date de début'); INSERT INTO label VALUES ('date_fin', 'message_interface', 'eng', 'Label end date', 'message', 'End date'); INSERT INTO label VALUES ('date_fin', 'message_interface', 'fra', 'Etiquette date de fin', 'message', 'Date de fin'); INSERT INTO label VALUES ('tous', 'message_interface', 'eng', 'Label all', 'message', 'All'); INSERT INTO label VALUES ('tous', 'message_interface', 'fra', 'Etiquette tous', 'message', 'Tous'); INSERT INTO label VALUES ('reponses_a_sur', 'message_interface', 'eng', 'Label for results in search bar', 'message', 'Results XX to YY from ZZ'); INSERT INTO label VALUES ('reponses_a_sur', 'message_interface', 'fra', 'Etiquette pour les réponses dans la barre de recherche', 'message', 'Réponses XX à YY sur ZZ'); INSERT INTO label VALUES ('nouvelle_recherche', 'message_interface', 'eng', 'Label new search', 'message', 'New search'); INSERT INTO label VALUES ('nouvelle_recherche', 'message_interface', 'fra', 'Etiquette lancer une autre recherche', 'message', 'Lancer une autre recherche'); INSERT INTO label VALUES ('update_fiche', 'message_interface', 'eng', 'Label last update', 'message', 'Last update'); INSERT INTO label VALUES ('update_fiche', 'message_interface', 'fra', 'Etiquette fiche mise à jour', 'message', 'Fiche mise à jour le'); INSERT INTO label VALUES ('predef_default', 'message_interface', 'eng', 'default Contact label', 'message', 'default preset values set'); INSERT INTO label VALUES ('erreur_no_predef', 'message_interface', 'eng', 'no contact error message', 'message', 'No preset values'); INSERT INTO label VALUES ('fermer', 'message_interface', 'eng', 'Label for close button', 'message', 'Close'); INSERT INTO label VALUES ('fermer', 'message_interface', 'fra', 'Etiquette pour le bouton fermer', 'message', 'Fermer'); INSERT INTO label VALUES ('afficher', 'message_interface', 'fra', 'Etiquette pour le bouton afficher', 'message', 'Afficher'); INSERT INTO label VALUES ('fiches_attachees', 'message_interface', 'eng', 'Label for the button linked sheet', 'message', 'Linked sheets'); INSERT INTO label VALUES ('fiches_attachees', 'message_interface', 'fra', 'Etiquette pour le bouton fiches attachées', 'message', 'Fiches attachées'); INSERT INTO label VALUES ('afficher', 'message_interface', 'eng', 'Label for see button', 'message', 'See details'); INSERT INTO label VALUES ('periode_du_au', 'message_interface', 'eng', 'Label for period', 'message', 'Period from XX to YY'); INSERT INTO label VALUES ('periode_du_au', 'message_interface', 'fra', 'Etiquette pour la période', 'message', 'Période du XX au YY'); INSERT INTO label VALUES ('etat_niv_saisie', 'message_interface', 'eng', 'Label status of input levels', 'message', 'Status of input levels'); INSERT INTO label VALUES ('etat_niv_saisie', 'message_interface', 'fra', 'Etiquette état des niveaux de saisie', 'message', 'Etat des niveaux de saisie'); INSERT INTO label VALUES ('niv_complet', 'message_interface', 'eng', 'Label finished', 'message', 'finished'); INSERT INTO label VALUES ('niv_complet', 'message_interface', 'fra', 'Etiquette terminé', 'message', 'terminé'); INSERT INTO label VALUES ('niv_pas_complet', 'message_interface', 'eng', 'Label not finished', 'message', 'not finished'); INSERT INTO label VALUES ('niv_pas_complet', 'message_interface', 'fra', 'Etiquette non terminé', 'message', 'non terminé'); INSERT INTO label VALUES ('en_cours', 'message_interface', 'eng', 'Label in process', 'message', 'In process'); INSERT INTO label VALUES ('en_cours', 'message_interface', 'fra', 'Etiquette en cours', 'message', 'En cours'); INSERT INTO label VALUES ('effectuee', 'message_interface', 'eng', 'Label made', 'message', 'Made'); INSERT INTO label VALUES ('effectuee', 'message_interface', 'fra', 'Etiquette effectuée', 'message', 'Effectuée'); INSERT INTO label VALUES ('comm_format_quicklook', 'message_interface', 'por', 'commentaires sur le format des quicklook', 'message', 'formatos aceitados: gif jpg, jpeg, png, bmp - tamanho max : 100 Ko'); INSERT INTO label VALUES ('erreur_no_supp_predef', 'message_interface', 'eng', 'no delete contact default message', 'message', 'Delete forbbidden : It''s default preset values set'); INSERT INTO label VALUES ('mod_creation_predef', 'message_interface', 'eng', 'Label for the creation mod of a preset values set', 'message', 'Create from an existing preset values set?'); INSERT INTO label VALUES ('niv_saisie', 'liste_interface', 'eng', 'Label ''input level''', 'code', 'Input level'); INSERT INTO label VALUES ('niv_saisie', 'liste_interface', 'fra', 'Etiquette ''niveau de saisie''', 'code', 'Niveau de saisie'); INSERT INTO label VALUES ('data_type', 'liste_interface', 'eng', 'Label ''data type''', 'code', 'Data type'); INSERT INTO label VALUES ('publier', 'liste_interface', 'eng', 'Label publish', 'code', 'Validate'); INSERT INTO label VALUES ('publier', 'liste_interface', 'fra', 'Etiquette publier', 'code', 'Valider'); INSERT INTO label VALUES ('publier_0', 'elmnt_liste_interface', 'eng', 'Label not published', 'code', 'Not validated'); INSERT INTO label VALUES ('publier_0', 'elmnt_liste_interface', 'fra', 'Etiquette non publiee', 'code', 'Non validée'); INSERT INTO label VALUES ('publier_1', 'elmnt_liste_interface', 'eng', 'Label published', 'code', 'Validated'); INSERT INTO label VALUES ('publier_1', 'elmnt_liste_interface', 'fra', 'Etiquette publiee', 'code', 'Validée'); INSERT INTO label VALUES ('confidentialite', 'liste_interface', 'eng', 'Label confidentiality', 'code', 'Confidentiality'); INSERT INTO label VALUES ('confidentialite', 'liste_interface', 'fra', 'Etiquette confidentialité', 'code', 'Confidentialité'); INSERT INTO label VALUES ('confidentialite_0', 'elmnt_liste_interface', 'eng', 'Label not confidential', 'code', 'Not confidential'); INSERT INTO label VALUES ('confidentialite_0', 'elmnt_liste_interface', 'fra', 'Etiquette non confidentielle', 'code', 'Non confidentielle'); INSERT INTO label VALUES ('confidentialite_1', 'elmnt_liste_interface', 'eng', 'Label confidential', 'code', 'Confidential'); INSERT INTO label VALUES ('confidentialite_1', 'elmnt_liste_interface', 'fra', 'Etiquette confidentielle', 'code', 'Confidentielle'); INSERT INTO label VALUES ('polit_publi', 'liste_interface', 'eng', 'Label Publication rule', 'code', 'Validation rule'); INSERT INTO label VALUES ('polit_publi', 'liste_interface', 'fra', 'Etiquette Règle de publication', 'code', 'Règle de validation'); INSERT INTO label VALUES ('polit_publi_0', 'elmnt_liste_interface', 'eng', 'Label Automatic', 'code', 'Automatic'); INSERT INTO label VALUES ('polit_publi_0', 'elmnt_liste_interface', 'fra', 'Etiquette Automatique', 'code', 'Automatique'); INSERT INTO label VALUES ('polit_publi_1', 'elmnt_liste_interface', 'eng', 'Label Manual', 'code', 'Manual'); INSERT INTO label VALUES ('polit_publi_1', 'elmnt_liste_interface', 'fra', 'Etiquette Manuelle', 'code', 'Manuelle'); INSERT INTO label VALUES ('titre_param_outil', 'message_interface', 'eng', 'Label MDweb settings', 'message', 'MDweb settings'); INSERT INTO label VALUES ('titre_param_outil', 'message_interface', 'fra', 'Etiquette Paramétrage de MDweb', 'message', 'Paramétrage de MDweb'); INSERT INTO label VALUES ('version', 'message_interface', 'eng', 'Label MDweb version', 'message', 'MDweb version'); INSERT INTO label VALUES ('version', 'message_interface', 'fra', 'Etiquette Version de MDweb', 'message', 'Version de MDweb'); INSERT INTO label VALUES ('date_version', 'message_interface', 'eng', 'Label Date of version', 'message', 'Date of version'); INSERT INTO label VALUES ('date_version', 'message_interface', 'fra', 'Etiquette Date de la version', 'message', 'Date de la version'); INSERT INTO label VALUES ('langue', 'liste_interface', 'eng', 'Label Available languages', 'code', 'Available languages'); INSERT INTO label VALUES ('langue', 'liste_interface', 'fra', 'Etiquette Langues disponibles', 'code', 'Langues disponibles'); INSERT INTO label VALUES ('langue_eng', 'elmnt_liste_interface', 'eng', 'Label english', 'code', 'english'); INSERT INTO label VALUES ('langue_eng', 'elmnt_liste_interface', 'fra', 'Etiquette anglais', 'code', 'anglais'); INSERT INTO label VALUES ('langue_fra', 'elmnt_liste_interface', 'eng', 'Label french', 'code', 'french'); INSERT INTO label VALUES ('langue_fra', 'elmnt_liste_interface', 'fra', 'Etiquette français', 'code', 'français'); INSERT INTO label VALUES ('confirm_suppr_langue', 'message_interface', 'eng', 'Warning message to delete a language', 'message', 'Are you sure you want to delete XX language from MDweb ? WARNING : It will delete ALL labels of this language and change its users to english.'); INSERT INTO label VALUES ('confirm_suppr_langue', 'message_interface', 'fra', 'Message d''avertissement pour l''effacement d''une langue', 'message', 'Etes-vous sûr de vouloir supprimer la langue XX de MDweb ? ATTENTION : Cela effacera TOUS les libellés de cette langue et ses utilisateurs seront passés en anglais.'); INSERT INTO label VALUES ('mess_suppr_langue', 'message_interface', 'fra', 'Message de confirmation pour l''effacement d''une langue', 'message', 'La langue XX et tous ses libellés ont été supprimés de MDweb.'); INSERT INTO label VALUES ('mess_suppr_langue', 'message_interface', 'eng', 'Confirm message to delete a language', 'message', 'XX language and all its labels deleted from MDweb.'); INSERT INTO label VALUES ('mess_modif_polit_publi', 'message_interface', 'eng', 'Confirm message to update the publication rule', 'message', 'Publication rule updated.'); INSERT INTO label VALUES ('mess_modif_polit_publi', 'message_interface', 'fra', 'Message de confirmation pour la mise à jour de la règle de publication', 'message', 'La règle de publication a été modifiée.'); INSERT INTO label VALUES ('confirm_modif_polit_publi', 'message_interface', 'eng', 'Warning message to change publication rule', 'message', 'Are you sure you want to set publication rule to ''Automatic'' ? WARNING : It will publish ALL unpublished sheet.'); INSERT INTO label VALUES ('confirm_modif_polit_publi', 'message_interface', 'fra', 'Message d''avertissement pour le changement de la règle de publication', 'message', 'Etes-vous sûr de vouloir passer la règle de publication à ''Automatique'' ? ATTENTION : Cela publiera TOUTES les fiches non publiées.'); INSERT INTO label VALUES ('ajouter_langue', 'message_interface', 'eng', 'Label Add a new language', 'message', 'Add a new language'); INSERT INTO label VALUES ('ajouter_langue', 'message_interface', 'fra', 'Etiquette Ajouter une autre langue', 'message', 'Ajouter une autre langue'); INSERT INTO label VALUES ('verif_nouv_langue', 'message_interface', 'eng', 'Verification message for the creation of a language', 'message', 'Please input at least 5 characters for the name of language and exactly 3 characters for the code.'); INSERT INTO label VALUES ('verif_nouv_langue', 'message_interface', 'fra', 'Message de vérification pour la création d''une langue', 'message', 'Veuillez entrer au moins 5 lettres pour le nom de la langue et exactement 3 pour son code.'); INSERT INTO label VALUES ('code_langue', 'message_interface', 'eng', 'Label Code of language', 'message', 'Code of language (3 characters)'); INSERT INTO label VALUES ('code_langue', 'message_interface', 'fra', 'Etiquette Code de la langue', 'message', 'Code de la langue (3 lettres)'); INSERT INTO label VALUES ('nom_langue', 'message_interface', 'eng', 'Label Name of language', 'message', 'English name of language (at least 5 characters)'); INSERT INTO label VALUES ('nom_langue', 'message_interface', 'fra', 'Etiquette Nom de la langue', 'message', 'Nom de la langue en anglais (au moins 5 lettres)'); INSERT INTO label VALUES ('confirm_ajout_langue', 'message_interface', 'eng', 'Label New language added', 'message', 'New language added.'); INSERT INTO label VALUES ('confirm_ajout_langue', 'message_interface', 'fra', 'Etiquette Nouvelle langue ajoutée', 'message', 'La nouvelle langue a été ajoutée.'); INSERT INTO label VALUES ('erreur_ajout_langue', 'message_interface', 'eng', 'Error message : add language', 'message', 'Code of language already exist. Please choose another code for your new language.'); INSERT INTO label VALUES ('erreur_ajout_langue', 'message_interface', 'fra', 'Message d''erreur pour l''ajout d''une langue', 'message', 'Le code de langue existe déjà. Veuillez choisir un code différent pour votre nouvelle langue.'); INSERT INTO label VALUES ('predef', 'message_interface', 'por', 'label Contact', 'message', 'Manega seus valores pré-definidos'); INSERT INTO label VALUES ('preferences_title', 'message_interface', 'eng', 'Title of user''s preferences page', 'message', 'Change personnal preferences'); INSERT INTO label VALUES ('preferences_title', 'message_interface', 'fra', 'Titre de la page préférences utilisateur', 'message', 'Modification des préférences personnelles'); INSERT INTO label VALUES ('iso_lang_code', 'liste_interface', 'eng', 'Language label', 'code', 'Language'); INSERT INTO label VALUES ('mess_modif_prefer_util', 'message_interface', 'eng', 'Confirmation message for the update of personnal preferences', 'message', 'Personnal preferences updated.
Please exit and reconnect in order to use them.'); INSERT INTO label VALUES ('mess_modif_prefer_util', 'message_interface', 'fra', 'Message de confirmation pour la mise à jour des préférences personnelles', 'message', 'Les préférences personnelles ont été mises à jour.
Veuillez quitter et vous reconnecter pour les prendre en compte.'); INSERT INTO label VALUES ('page_non_disponible', 'message_interface', 'eng', 'Message for not available pages', 'message', 'Not available yet'); INSERT INTO label VALUES ('page_non_disponible', 'message_interface', 'fra', 'Message pour les pages non disponibles', 'message', 'Non disponible pour le moment'); INSERT INTO label VALUES ('inactif', 'message_interface', 'eng', 'Disabled Label', 'message', 'Disabled'); INSERT INTO label VALUES ('inactif', 'message_interface', 'fra', 'Label Inactif', 'message', 'Inactif'); INSERT INTO label VALUES ('thesaurus', 'message_interface', 'eng', 'Thesaurus Label', 'message', 'Thesaurus'); INSERT INTO label VALUES ('thesaurus', 'message_interface', 'fra', 'Label Thésaurus', 'message', 'Thésaurus'); INSERT INTO label VALUES ('domaine', 'message_interface', 'eng', 'Domain Label', 'message', 'Domain'); INSERT INTO label VALUES ('domaine', 'message_interface', 'fra', 'Label Domaine', 'message', 'Domaine'); INSERT INTO label VALUES ('theme', 'message_interface', 'eng', 'Theme Label', 'message', 'Theme'); INSERT INTO label VALUES ('theme', 'message_interface', 'fra', 'Label Thème', 'message', 'Thème'); INSERT INTO label VALUES ('terme', 'message_interface', 'eng', 'Term Label', 'message', 'Term'); INSERT INTO label VALUES ('terme', 'message_interface', 'fra', 'Label Terme', 'message', 'Terme'); INSERT INTO label VALUES ('select_list_below', 'message_interface', 'eng', 'Select in the list below Label', 'message', 'Select a XX in the list below'); INSERT INTO label VALUES ('select_list_below', 'message_interface', 'fra', 'Label choisir dans la liste ci-dessous', 'message', 'Choisissez un XX dans la liste ci-dessous'); INSERT INTO label VALUES ('EARTH_SCIENCE', 'thesaurus', 'eng', 'GCMD Earth Science Label', 'thesaurus', 'GCMD Earth Science'); INSERT INTO label VALUES ('predef_name', 'message_interface', 'fra', 'label nom Contact', 'message', 'Nom du jeu de valeurs prédéfinies'); INSERT INTO label VALUES ('bulle_change_private', 'message_interface', 'fra', '', 'bulle', 'Modifier la confidentialité de la fiche'); INSERT INTO label VALUES ('bt_modifier', 'message_interface', 'fra', 'Etiquette changer', 'message', 'Modifier'); INSERT INTO label VALUES ('CoundryCd_4', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Djibouti'); INSERT INTO label VALUES ('bt_modifier', 'message_interface', 'por', 'Etiquette changer', 'message', 'Mudar'); INSERT INTO label VALUES ('CoundryCd_2', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Burkina Faso'); INSERT INTO label VALUES ('update', 'message_interface', 'eng', '', 'code', 'update the sheet'); INSERT INTO label VALUES ('CoundryCd_10', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Mali'); INSERT INTO label VALUES ('lbl_', 'elmnt_liste_interface', 'fra', '', 'code', 'France'); INSERT INTO label VALUES ('bt_modifier', 'message_interface', 'eng', 'Label change', 'message', 'Modify'); INSERT INTO label VALUES ('CoundryCd_3', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Cape Verde'); INSERT INTO label VALUES ('bulle_validate', 'message_interface', 'fra', '', 'bulle', 'Valider la fiche'); INSERT INTO label VALUES ('maj_predef', 'message_interface', 'fra', 'Etiquette ''date maj prédéfinies''', 'message', 'Date de mise à jour du jeu de valeurs prédéfinies'); INSERT INTO label VALUES ('CoundryCd_5', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Egypt'); INSERT INTO label VALUES ('menu_gest_pref', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Préférences'); INSERT INTO label VALUES ('CoundryCd_6', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Ethiopia'); INSERT INTO label VALUES ('CoundryCd_7', 'elmnt_liste_interface', 'eng', NULL, 'message', 'France'); INSERT INTO label VALUES ('bulle_invalidate', 'message_interface', 'fra', '', 'bulle', 'Invalider la fiche'); INSERT INTO label VALUES ('predef_default', 'message_interface', 'fra', 'label Contact par défaut', 'message', 'Jeu de valeurs prédéfinies par défaut'); INSERT INTO label VALUES ('description_imagette', 'message_interface', 'por', 'Etiquette description', 'message', 'Descrição do conteudo do imagem'); INSERT INTO label VALUES ('mess_fic_attach', 'message_interface', 'eng', 'label attach resource', 'message', 'Warning : the max size for each file is'); INSERT INTO label VALUES ('menu_gest_contact_mod', 'message_interface', 'eng', 'label management menu', 'menu', 'Update'); INSERT INTO label VALUES ('CoundryCd_8', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Kenya'); INSERT INTO label VALUES ('menu_gest_jeu', 'message_interface', 'eng', 'label management menu', 'menu', 'Dataset'); INSERT INTO label VALUES ('CoundryCd_9', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Lybian Arab Jamahiriya'); INSERT INTO label VALUES ('CoundryCd_11', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Morocco'); INSERT INTO label VALUES ('lbl_text_add_key', 'message_interface', 'eng', '', 'message', 'Add keyword'); INSERT INTO label VALUES ('menu_gest_home', 'message_interface', 'eng', 'label management menu', 'menu', 'Management'); INSERT INTO label VALUES ('menu_gest_pref', 'message_interface', 'eng', 'label management menu', 'menu', 'Preferences'); INSERT INTO label VALUES ('titre_search_org', 'message_interface', 'fra', '', 'message', 'Par Institutions'); INSERT INTO label VALUES ('restants', 'message_interface', 'eng', 'Label remaining', 'message', 'remaining'); INSERT INTO label VALUES ('restants', 'message_interface', 'fra', 'Label restants', 'message', 'restant(s)'); INSERT INTO label VALUES ('export_effectue', 'message_interface', 'eng', 'XML Export done Label', 'message', 'XML export done !'); INSERT INTO label VALUES ('export_effectue', 'message_interface', 'fra', 'Export XML effectué Label', 'message', 'Export XML effectué !'); INSERT INTO label VALUES ('export_non_valide', 'message_interface', 'eng', 'XML Export impossible Label', 'message', 'XML export impossible for that sheet.'); INSERT INTO label VALUES ('export_non_valide', 'message_interface', 'fra', 'Export XML non valide Label', 'message', 'Fiche non valide pour l''exportation.'); INSERT INTO label VALUES ('mess_attente', 'message_interface', 'eng', 'Waiting message Label', 'message', 'Please wait a few seconds.'); INSERT INTO label VALUES ('mess_attente', 'message_interface', 'fra', 'Message d''attente Label', 'message', 'Veuillez patienter quelques instants.'); INSERT INTO label VALUES ('bout_telecharg_xml', 'message_interface', 'eng', 'Download XML Label', 'message', 'Download XML sheet'); INSERT INTO label VALUES ('bout_telecharg_xml', 'message_interface', 'fra', 'Télécharger XML Label', 'message', 'Télécharger fiche XML'); INSERT INTO label VALUES ('fiche_2', 'message_interface', 'eng', 'Sheet Label', 'message', 'Sheet'); INSERT INTO label VALUES ('fiche_2', 'message_interface', 'fra', 'Fiche Label', 'message', 'Fiche'); INSERT INTO label VALUES ('export_en_cours', 'message_interface', 'eng', 'XML Export in process Label', 'message', 'XML export in process.'); INSERT INTO label VALUES ('export_en_cours', 'message_interface', 'fra', 'Export XML en cours Label', 'message', 'Exportation XML en cours.'); INSERT INTO label VALUES ('update_MD_title', 'message_interface', 'por', 'Etiquette ''mise à jour d''une fiche de métadonnées''', 'message', 'Modificação duma ficha de metadados'); INSERT INTO label VALUES ('rech_fiche_export', 'message_interface', 'eng', 'Search sheets to export Label', 'message', 'Search sheets to export'); INSERT INTO label VALUES ('rech_fiche_export', 'message_interface', 'fra', 'Rechercher des fiches à exporter Label', 'message', 'Rechercher des fiches à exporter'); INSERT INTO label VALUES ('mots_titre', 'message_interface', 'eng', 'Word sheet title Label', 'message', 'Word(s) in sheet title'); INSERT INTO label VALUES ('mots_titre', 'message_interface', 'fra', 'Mot titre fiche Label', 'message', 'Mot(s) dans le titre des fiches'); INSERT INTO label VALUES ('telechargement', 'message_interface', 'eng', 'Download Label', 'message', 'Download'); INSERT INTO label VALUES ('telechargement', 'message_interface', 'fra', 'Label Téléchargement', 'message', 'Téléchargement'); INSERT INTO label VALUES ('lancer', 'message_interface', 'eng', 'Launch Label', 'message', 'Launch'); INSERT INTO label VALUES ('lancer', 'message_interface', 'fra', 'Label Lancer', 'message', 'Lancer'); INSERT INTO label VALUES ('export_date', 'message_interface', 'eng', 'Last export Label', 'message', 'Last export'); INSERT INTO label VALUES ('export_date', 'message_interface', 'fra', 'Label Date export', 'message', 'Fiche exportée le'); INSERT INTO label VALUES ('export_fiche_select', 'message_interface', 'eng', 'Export selected sheets Label', 'message', 'Export selected sheets'); INSERT INTO label VALUES ('export_fiche_select', 'message_interface', 'fra', 'Label Exporter fiches select', 'message', 'Exporter les fiches sélectionnées'); INSERT INTO label VALUES ('type_label_thesaurus', 'elmnt_liste_interface', 'fra', 'Etiquette Eléments de thésaurus', 'code', 'Eléments de thésaurus'); INSERT INTO label VALUES ('EARTH_SCIENCE', 'thesaurus', 'fra', 'GCMD Sciences de la Terre Label', 'thesaurus', 'Sciences de la Terre - GCMD'); INSERT INTO label VALUES ('bt_inserer', 'message_interface', 'fra', 'libellé bouton submit', 'message', 'Insérer'); INSERT INTO label VALUES ('bt_inserer', 'message_interface', 'eng', 'submit button label', 'message', 'Insert'); INSERT INTO label VALUES ('description_imagette', 'message_interface', 'fra', 'Etiquette description', 'message', 'Description du contenu de l''aperçu'); INSERT INTO label VALUES ('bt_inserer', 'message_interface', 'por', 'submit button label', 'message', 'Inserar'); INSERT INTO label VALUES ('confirm_envoi_fic_ress', 'message_interface', 'eng', 'Label to confirm sending ressource files', 'message', 'Are you sure you want to send these files ? Warning !! It will erase all files already linked to this sheet.'); INSERT INTO label VALUES ('confirm_suppr_predef', 'message_interface', 'fra', 'suppresion d''un jeu de valeurs prédéfinies défaut', 'message', 'Etes vous sûr de vouloir supprimer ce jeu de valeurs prédéfinies'); INSERT INTO label VALUES ('confirm_envoi_fic_ress', 'message_interface', 'fra', 'Etiquette de confirmation pour l''envoi des fichiers ressources', 'message', 'Etes-vous sûr de vouloir envoyer ces fichiers ? Attention!! Cela supprimera les fichiers déjà liés à cette fiche.'); INSERT INTO label VALUES ('sauv_fic_ress', 'message_interface', 'eng', 'Label ressource files saved', 'message', 'File(s) saved in a zip file.'); INSERT INTO label VALUES ('lbl_text_add_key', 'message_interface', 'fra', '', 'message', 'Ajouter un terme'); INSERT INTO label VALUES ('sauv_fic_ress', 'message_interface', 'fra', 'Etiquette pour la sauvegarde des fichiers ressources', 'message', 'Fichier(s) sauvegardé(s) dans une archive zip.'); INSERT INTO label VALUES ('import_image', 'message_interface', 'fra', 'Label', 'message', 'Rattacher un aperçu à une fiche de métadonnées'); INSERT INTO label VALUES ('contact', 'message_interface', 'eng', 'Contacts label', 'message', 'Manage your Address book'); INSERT INTO label VALUES ('voir_fiche_MD', 'message_interface', 'eng', 'Label ''see metadata sheet''', 'message', 'See metadata sheet'); INSERT INTO label VALUES ('voir_fiche_MD', 'message_interface', 'fra', 'Etiquette ''voir fiche métadonnées''', 'message', 'Voir la fiche de métadonnées'); INSERT INTO label VALUES ('archive_attachee', 'message_interface', 'eng', 'Label ''linked zip file''', 'message', 'Linked zip file'); INSERT INTO label VALUES ('archive_attachee', 'message_interface', 'fra', 'Etiquette ''archive zip attachée''', 'message', 'Archive zip attachée'); INSERT INTO label VALUES ('derniere_maj', 'message_interface', 'eng', 'Label ''Last update''', 'message', 'Last update'); INSERT INTO label VALUES ('derniere_maj', 'message_interface', 'fra', 'Etiquette ''Dernière mise à jour''', 'message', 'Dernière mise à jour'); INSERT INTO label VALUES ('nom_fichier', 'message_interface', 'eng', 'Label ''File name''', 'message', 'File name'); INSERT INTO label VALUES ('nom_fichier', 'message_interface', 'fra', 'Etiquette ''Nom du fichier''', 'message', 'Nom du fichier'); INSERT INTO label VALUES ('taille_decomp', 'message_interface', 'eng', 'Label ''Unzipped size''', 'message', 'Unzipped size'); INSERT INTO label VALUES ('telecharg', 'message_interface', 'eng', 'Label ''Upload''', 'message', 'Download'); INSERT INTO label VALUES ('telecharg', 'message_interface', 'fra', 'Etiquette ''Téléchargement''', 'message', 'Téléchargement'); INSERT INTO label VALUES ('public', 'message_interface', 'eng', 'Label ''Public''', 'message', 'Public'); INSERT INTO label VALUES ('public', 'message_interface', 'fra', 'Etiquette ''Public''', 'message', 'Public'); INSERT INTO label VALUES ('prive', 'message_interface', 'eng', 'Label ''Private''', 'message', 'Private'); INSERT INTO label VALUES ('prive', 'message_interface', 'fra', 'Etiquette ''Privé''', 'message', 'Privé'); INSERT INTO label VALUES ('date_interface_search', 'message_interface', 'eng', 'date of dataset creation', 'message', 'Date of dataset creation'); INSERT INTO label VALUES ('date_interface_search', 'message_interface', 'fra', 'date de creation du jeu de données', 'message', 'Date de création du jeu de données'); INSERT INTO label VALUES ('import', 'message_interface', 'eng', 'Import Label', 'message', 'Import'); INSERT INTO label VALUES ('import', 'message_interface', 'fra', 'Label Importer', 'message', 'Importer'); INSERT INTO label VALUES ('num_fiche_xml', 'message_interface', 'eng', 'Label', 'message', 'XML sheet n°'); INSERT INTO label VALUES ('num_fiche_xml', 'message_interface', 'fra', 'Label', 'message', 'Fiche XML n°'); INSERT INTO label VALUES ('nb_fiche_import', 'message_interface', 'eng', 'Label', 'message', 'Number of sheets to import'); INSERT INTO label VALUES ('nb_fiche_import', 'message_interface', 'fra', 'Label', 'message', 'Nombre de fiches à importer'); INSERT INTO label VALUES ('erreur_envoi_xml', 'message_interface', 'eng', 'Label', 'message', 'XML files upload error.'); INSERT INTO label VALUES ('erreur_envoi_xml', 'message_interface', 'fra', 'Label', 'message', 'Erreur de transmission des fichiers XML'); INSERT INTO label VALUES ('mess_fournir_precisions', 'message_interface', 'eng', 'Label', 'message', 'Please give the following informations'); INSERT INTO label VALUES ('mess_fournir_precisions', 'message_interface', 'fra', 'Label', 'message', 'Veuillez fournir les précisions suivantes'); INSERT INTO label VALUES ('mess_fiche_xml_valides', 'message_interface', 'eng', 'Label', 'message', 'All XML files checked and validated. Please click on button to start import. '); INSERT INTO label VALUES ('bulle_change_level', 'message_interface', 'fra', '', 'bulle', 'Modifier le niveau de saisie'); INSERT INTO label VALUES ('mess_avert_maj_xml', 'message_interface', 'eng', 'Label', 'message', 'Warning!! One or more sheet(s) already exist into database. They had been updated since last import. If you confirm import, you will erase these updates. '); INSERT INTO label VALUES ('mess_avert_maj_xml', 'message_interface', 'fra', 'Label', 'message', 'Attention!! Une ou plusieurs fiche(s) sont déjà présentes dans la base. Elles ont été mises à jour manuellement depuis la dernière importation. Si vous importez ces fiches, vous allez écraser ces modifications. '); INSERT INTO label VALUES ('confirm_import_xml', 'message_interface', 'eng', 'Label', 'message', 'Do you confirm import of following sheets? '); INSERT INTO label VALUES ('confirm_import_xml', 'message_interface', 'fra', 'Label', 'message', 'Souhaitez vous importer les fiches suivantes quand même? '); INSERT INTO label VALUES ('erreur_analyse_xml', 'message_interface', 'eng', 'Label', 'message', 'XML parse error, impossible to import XML sheet.'); INSERT INTO label VALUES ('erreur_analyse_xml', 'message_interface', 'fra', 'Label', 'message', 'Erreur lors de l''analyse du document, impossible d''importer la fiche XML.'); INSERT INTO label VALUES ('aucune_fiche_import', 'message_interface', 'eng', 'Label', 'message', 'No sheet left to import.'); INSERT INTO label VALUES ('aucune_fiche_import', 'message_interface', 'fra', 'Label', 'message', 'Il ne restait aucune fiche à importer.'); INSERT INTO label VALUES ('mess_autres_fiches_import', 'message_interface', 'eng', 'Label', 'message', 'Import more XML sheets'); INSERT INTO label VALUES ('mess_autres_fiches_import', 'message_interface', 'fra', 'Label', 'message', 'Importer d''autres fiches XML'); INSERT INTO label VALUES ('orig_fiche', 'liste_interface', 'eng', 'Label', 'code', 'Sheet provenance'); INSERT INTO label VALUES ('orig_fiche', 'liste_interface', 'fra', 'Label', 'code', 'Origine de la fiche'); INSERT INTO label VALUES ('orig_fiche_MDweb_local', 'elmnt_liste_interface', 'eng', 'Label', 'code', 'Local MDweb'); INSERT INTO label VALUES ('orig_fiche_MDweb_local', 'elmnt_liste_interface', 'fra', 'Label', 'code', 'MDweb local'); INSERT INTO label VALUES ('orig_fiche_import_XML', 'elmnt_liste_interface', 'eng', 'Label', 'code', 'XML import'); INSERT INTO label VALUES ('orig_fiche_import_XML', 'elmnt_liste_interface', 'fra', 'Label', 'code', 'Importation XML'); INSERT INTO label VALUES ('import_source', 'liste_interface', 'eng', 'Label', 'code', 'Import source'); INSERT INTO label VALUES ('import_source', 'liste_interface', 'fra', 'Label', 'code', 'Source de l''importation'); INSERT INTO label VALUES ('import_source_MDWeb', 'elmnt_liste_interface', 'eng', 'Label', 'code', 'MDweb'); INSERT INTO label VALUES ('import_source_MDWeb', 'elmnt_liste_interface', 'fra', 'Label', 'code', 'MDweb'); INSERT INTO label VALUES ('nom_fichier_xml', 'message_interface', 'eng', 'Label', 'code', 'Xml file name'); INSERT INTO label VALUES ('organisation', 'message_interface', 'fra', '', 'message', 'Nom du catalogue'); INSERT INTO label VALUES ('nom_fichier_xml', 'message_interface', 'fra', 'Label', 'code', 'Nom du fichier xml'); INSERT INTO label VALUES ('num_fichier', 'message_interface', 'eng', 'Label', 'code', 'File number'); INSERT INTO label VALUES ('num_fichier', 'message_interface', 'fra', 'Label', 'code', 'Numéro de la fiche'); INSERT INTO label VALUES ('statut', 'message_interface', 'eng', 'Label', 'code', 'Sheet state'); INSERT INTO label VALUES ('statut', 'message_interface', 'fra', 'Label', 'code', 'Statut de la fiche'); INSERT INTO label VALUES ('onglet_referenceSystemInfo_38', 'message_interface', 'eng', 'Tab ''Reference System''', 'message', 'Reference System'); INSERT INTO label VALUES ('onglet_referenceSystemInfo_38', 'message_interface', 'fra', 'Onglet ''Système de référence''', 'message', 'Système de référence'); INSERT INTO label VALUES ('onglet_dataQualityInfo_42', 'message_interface', 'eng', 'Tab ''Quality''', 'message', 'Quality'); INSERT INTO label VALUES ('onglet_dataQualityInfo_42', 'message_interface', 'fra', 'Onglet ''Qualité''', 'message', 'Qualité'); INSERT INTO label VALUES ('onglet_distributionInfo_41', 'message_interface', 'eng', 'Tab ''Distribution''', 'message', 'Distribution'); INSERT INTO label VALUES ('onglet_spatialRepresentationInfo_37', 'message_interface', 'eng', 'Tab ''Spatial representation''', 'message', 'Spataial Representation'); INSERT INTO label VALUES ('onglet_spatialRepresentationInfo_37', 'message_interface', 'fra', 'Onglet ''représentation spatiale''', 'message', 'Représentation Spatiale'); INSERT INTO label VALUES ('onglet_metadataExtensionInfo_39', 'message_interface', 'eng', 'Tab ''extension information''', 'message', 'Extension'); INSERT INTO label VALUES ('onglet_metadataExtensionInfo_39', 'message_interface', 'fra', 'Onglet ''information sur l''Extension des métadonnées''', 'message', 'Extension'); INSERT INTO label VALUES ('onglet_contentInfo_40', 'message_interface', 'eng', 'Tab ''content info''', 'message', 'Content Info'); INSERT INTO label VALUES ('onglet_MD_Metadata_453', 'message_interface', 'eng', 'Tab ''Metadata''', 'message', 'Metadata'); INSERT INTO label VALUES ('onglet_MD_Metadata_453', 'message_interface', 'fra', 'Onglet ''Métadonnées''', 'message', 'Métadonnées'); INSERT INTO label VALUES ('onglet_quicklook', 'message_interface', 'eng', 'Tab ''Quicklook''', 'message', 'Quicklook'); INSERT INTO label VALUES ('onglet_localisation', 'message_interface', 'eng', 'Tab ''Localisation''', 'message', 'Localisation'); INSERT INTO label VALUES ('onglet_localisation', 'message_interface', 'fra', 'Onglet ''Localisation''', 'message', 'Localisation'); INSERT INTO label VALUES ('onglet_contact', 'message_interface', 'eng', 'Tab ''contacts''', 'message', 'Contacts'); INSERT INTO label VALUES ('onglet_contact', 'message_interface', 'fra', 'Onglet ''contacts''', 'message', 'Contacts'); INSERT INTO label VALUES ('onglet_Metadata', 'message_interface', 'eng', 'Tab ''sheet informations''', 'message', 'Sheet informations'); INSERT INTO label VALUES ('onglet_Metadata', 'message_interface', 'fra', 'Onglet ''Informations sur la fiche de métadonnées''', 'message', 'Infos sur la fiche'); INSERT INTO label VALUES ('languages', 'message_interface', 'fra', 'Etiquette Langues', 'message', 'Langues'); INSERT INTO label VALUES ('languages', 'message_interface', 'eng', 'Language label', 'message', 'Languages'); INSERT INTO label VALUES ('params_gal', 'message_interface', 'fra', 'Etiquette paramètres généraux', 'message', 'Paramètres généraux'); INSERT INTO label VALUES ('params_gal', 'message_interface', 'eng', 'global settings label', 'message', 'Gloabl settings'); INSERT INTO label VALUES ('image', 'message_interface', 'eng', 'Label', 'message', 'Quicklook'); INSERT INTO label VALUES ('maj_contact', 'message_interface', 'eng', 'Label ''update date contact''', 'message', 'Update contacts date'); INSERT INTO label VALUES ('attacher_img_ress', 'message_interface', 'eng', 'Label ''link quicklook''', 'message', 'Link quicklook to the sheet'); INSERT INTO label VALUES ('image_attach', 'message_interface', 'eng', 'Label ''quicklook link''', 'message', 'Quicklook link'); INSERT INTO label VALUES ('import_source_SIEL', 'elmnt_liste_interface', 'eng', 'Label', 'code', 'ArcGIS'); INSERT INTO label VALUES ('liste_util', 'message_interface', 'fra', 'Titre figurant au-dessus de la liste des utilisateurs.', 'message', 'Liste des utilisateurs'); INSERT INTO label VALUES ('liste_util', 'message_interface', 'eng', 'Title printed at the top of the users list.', 'message', 'Users list'); INSERT INTO label VALUES ('no_ajout', 'message_interface', 'eng', 'attach default value label', 'code', 'no attach'); INSERT INTO label VALUES ('contact_name', 'message_interface', 'fra', 'label nom Contact', 'message', 'Nom du contact'); INSERT INTO label VALUES ('contact_name', 'message_interface', 'eng', 'name Contact label', 'message', 'Contact name'); INSERT INTO label VALUES ('contact_default', 'message_interface', 'fra', 'label Contact par défaut', 'message', 'Contact par défaut'); INSERT INTO label VALUES ('contact_default', 'message_interface', 'eng', 'default Contact label', 'message', 'default contact'); INSERT INTO label VALUES ('erreur_no_contact', 'message_interface', 'fra', 'message erreur pas de contact', 'message', 'Pas de contacts'); INSERT INTO label VALUES ('erreur_no_contact', 'message_interface', 'eng', 'no contact error message', 'message', 'No contacts'); INSERT INTO label VALUES ('erreur_no_supp_contact', 'message_interface', 'fra', 'message d''erreur suppression du contact', 'message', 'Impossible de supprimer ce contact : c''est le contact par défaut'); INSERT INTO label VALUES ('erreur_no_supp_contact', 'message_interface', 'eng', 'no delete contact default message', 'message', 'Delete forbbidden : It''s default contact'); INSERT INTO label VALUES ('no_image', 'message_interface', 'eng', 'no quicklook message', 'message', 'It is not a quicklook'); INSERT INTO label VALUES ('no_zip', 'message_interface', 'eng', 'no file zip message', 'message', 'It is not a zip file'); INSERT INTO label VALUES ('no_zip', 'message_interface', 'fra', 'message ''ce n''est pas une archive zip''', 'message', 'Ce n''est pas une archive zip'); INSERT INTO label VALUES ('mod_creation_contact', 'message_interface', 'eng', 'Label for the creation mod of a contact', 'message', 'Create from an existing contact?'); INSERT INTO label VALUES ('mod_creation_contact', 'message_interface', 'fra', 'Etiquette pour le mode de création d''un contact', 'message', 'Créer à partir d''un contact existant?'); INSERT INTO label VALUES ('back_modif', 'message_interface', 'eng', 'Button back update', 'message', 'Back Update'); INSERT INTO label VALUES ('back_modif', 'message_interface', 'fra', 'Boutton retour liste des fiches', 'message', 'Retour liste fiches'); INSERT INTO label VALUES ('data_type_model', 'message_interface', 'eng', '', 'message', 'Model data type'); INSERT INTO label VALUES ('data_type_model', 'message_interface', 'fra', '', 'message', 'Modèle de type de données'); INSERT INTO label VALUES ('predef_values', 'message_interface', 'fra', 'Etiquette valeurs prédéfinies', 'code', 'Valeurs par défaut'); INSERT INTO label VALUES ('predef_values', 'message_interface', 'eng', 'default value label', 'code', 'Preset values'); INSERT INTO label VALUES ('default_values', 'message_interface', 'fra', 'Etiquette valeurs prédéfinies', 'code', 'Valeurs par défaut'); INSERT INTO label VALUES ('default_values', 'message_interface', 'eng', 'default value label', 'code', 'Default values'); INSERT INTO label VALUES ('maj_default', 'message_interface', 'eng', 'Label ''update date default values''', 'message', 'Update default values date'); INSERT INTO label VALUES ('maj_default', 'message_interface', 'fra', 'Etiquette ''date maj valeurs prédéfinies''', 'message', 'Date de mise à jour des valeurs par défaut'); INSERT INTO label VALUES ('lbl_terme', 'message_interface', 'fra', '', 'message', 'terme'); INSERT INTO label VALUES ('titre_portail_standard', 'message_interface', 'fra', 'label bas de page ', 'accueil', 'Conception et Développement : US 166 - IRD'); INSERT INTO label VALUES ('titre_portail_demo', 'message_interface', 'por', 'label bandeau demo', 'accueil', 'MDweb demo'); INSERT INTO label VALUES ('code_organisme', 'message_interface', 'eng', 'Organisme code label', 'message', 'Organisme code'); INSERT INTO label VALUES ('pays', 'message_interface', 'fra', 'Etiquette pays', 'message', 'pays'); INSERT INTO label VALUES ('pays', 'message_interface', 'eng', 'Country label', 'message', 'pays'); INSERT INTO label VALUES ('mess_erreur_key_modif_base', 'message_interface', 'fra', 'Message d''erreur lors de la modification de valeurs de la base', 'message', 'Erreur de contraintes d''intégrités lors de la modification'); INSERT INTO label VALUES ('mess_erreur_key_modif_base', 'message_interface', 'eng', 'error message after update values from the database', 'message', 'Foreign keys error while update from the database'); INSERT INTO label VALUES ('mess_erreur_key_primaire_base', 'message_interface', 'fra', 'Message d''erreur lors insertion nouvel organisme', 'message', 'Valeurs déjà existantes'); INSERT INTO label VALUES ('mess_erreur_key_primaire_base', 'message_interface', 'eng', 'Error while insert new organisme', 'message', 'Values already exist'); INSERT INTO label VALUES ('mess_erreur_key_delete_base', 'message_interface', 'fra', 'Message d''erreur lors de la suppression de valeurs de la base', 'message', 'Erreur de contraintes d''intégrités lors de la suppression'); INSERT INTO label VALUES ('mess_erreur_key_delete_base', 'message_interface', 'eng', 'error message after delete values from the database', 'message', 'Foreign keys error while delete from the database'); INSERT INTO label VALUES ('bt_attach', 'message_interface', 'eng', 'label submit button', 'message', 'Attach'); INSERT INTO label VALUES ('onglet_keyword', 'message_interface', 'eng', 'Tab ''keywords''', 'message', 'Keywords'); INSERT INTO label VALUES ('onglet_keyword', 'message_interface', 'fra', 'Onglet ''mots clés''', 'message', 'Mots clés'); INSERT INTO label VALUES ('onglet_catalogs', 'message_interface', 'eng', 'Tab ''Catalogs''', 'message', 'Catalogs'); INSERT INTO label VALUES ('onglet_catalogs', 'message_interface', 'fra', 'Onglet ''catalogues''', 'message', 'Catalogues'); INSERT INTO label VALUES ('onglet_topic', 'message_interface', 'eng', 'Tab ''topics''', 'message', 'Topics'); INSERT INTO label VALUES ('onglet_topic', 'message_interface', 'fra', 'Onglet ''thèmes''', 'message', 'Thèmes'); INSERT INTO label VALUES ('onglet_topic_roselt', 'message_interface', 'eng', 'Tab ''topics''', 'message', 'Roselt Topics'); INSERT INTO label VALUES ('onglet_topic_roselt', 'message_interface', 'fra', 'Onglet ''thèmes''', 'message', 'Thèmes Roselt'); INSERT INTO label VALUES ('onglet_bounding_box', 'message_interface', 'eng', 'Tab ''bounding box''', 'message', 'Bounding box'); INSERT INTO label VALUES ('onglet_bounding_box', 'message_interface', 'fra', 'Onglet ''emprise géographiques''', 'message', 'Emprise géographique'); INSERT INTO label VALUES ('onglet_thesaurus', 'message_interface', 'eng', 'Tab ''thesaurus''', 'message', 'Thesaurus'); INSERT INTO label VALUES ('onglet_gabarit', 'message_interface', 'eng', 'Tab ''Catalogs''', 'message', 'Data type?'); INSERT INTO label VALUES ('doc_when', 'message_interface', 'fra', 'quoi', 'message', 'Quand ? : Choisissez une période (date de début, date de fin) durant laquelle les données que vous recherchez ont été crées.'); INSERT INTO label VALUES ('titre_accueil_gestion', 'message_interface', 'eng', 'label management homepage', 'message', 'Metadata sheet management Area'); INSERT INTO label VALUES ('onglet_where', 'message_interface', 'eng', 'where', 'message', 'Where ?'); INSERT INTO label VALUES ('confirm_suppr_predef', 'message_interface', 'eng', 'Message for Javascript alert box to confirm preset values set deletion', 'message', 'Are you sure that you want to delete the preset values set'); INSERT INTO label VALUES ('mod_creation_predef', 'message_interface', 'fra', 'Etiquette pour le mode de création d''un jeu de valeurs prédéfinies', 'message', 'Créer à partir d''un jeu de valeurs prédéfinies existant?'); INSERT INTO label VALUES ('erreur_no_predef', 'message_interface', 'fra', 'message erreur pas de contact', 'message', 'Pas de valeurs prédéfinies'); INSERT INTO label VALUES ('erreur_no_supp_predef', 'message_interface', 'fra', 'message d''erreur suppression des valeurs prédéfinies', 'message', 'Impossible de supprimer ces valeurs prédéfinies : c''est le jeu de valeurs prédéfinies par défaut'); INSERT INTO label VALUES ('titre_consultation', 'message_interface', 'fra', 'Titre de la page principale de la consultation.', 'message', 'Catalogue Régional de données ROSELT/OSS'); INSERT INTO label VALUES ('retour_acc_outil', 'message_interface', 'fra', 'Etiquette retour à l''accueil de MDweb', 'message', 'Accueil'); INSERT INTO label VALUES ('retour_acc_outil', 'message_interface', 'eng', 'Label back to MDweb home page', 'message', 'HomePage'); INSERT INTO label VALUES ('CoundryCd_12', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Mauritania'); INSERT INTO label VALUES ('titre_consultation', 'message_interface', 'eng', 'Label ''Metadata catalog search''', 'message', 'Regional ROSELT/OSS Data Catalog'); INSERT INTO label VALUES ('CoundryCd_13', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Niger'); INSERT INTO label VALUES ('crit_recherche', 'message_interface', 'eng', 'Label search criteria', 'message', 'Search criteria selected'); INSERT INTO label VALUES ('crit_recherche', 'message_interface', 'fra', 'Etiquette critères de recherche', 'message', 'Critères de recherche sélectionnés'); INSERT INTO label VALUES ('CoundryCd_14', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Uganda'); INSERT INTO label VALUES ('CoundryCd_15', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Senegal'); INSERT INTO label VALUES ('titre_portail_standard', 'message_interface', 'eng', 'label bas de page', 'accueil', 'Design and Implementation : US 166 - IRD'); INSERT INTO label VALUES ('CoundryCd_16', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Chad'); INSERT INTO label VALUES ('CoundryCd_17', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Tunisia'); INSERT INTO label VALUES ('CoundryCd_18', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Italy'); INSERT INTO label VALUES ('CoundryCd_19', 'elmnt_liste_interface', 'eng', NULL, 'message', 'United Kingdom'); INSERT INTO label VALUES ('CoundryCd_20', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Germany'); INSERT INTO label VALUES ('CoundryCd_21', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Canada'); INSERT INTO label VALUES ('CoundryCd_22', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Netherlands'); INSERT INTO label VALUES ('CoundryCd_23', 'elmnt_liste_interface', 'eng', NULL, 'message', 'France'); INSERT INTO label VALUES ('CoundryCd_24', 'elmnt_liste_interface', 'eng', NULL, 'message', 'United States'); INSERT INTO label VALUES ('CoundryCd_25', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Belgium'); INSERT INTO label VALUES ('CoundryCd_26', 'elmnt_liste_interface', 'eng', NULL, 'message', 'Espagne'); INSERT INTO label VALUES ('title_doctor', 'elmnt_liste_interface', 'eng', NULL, 'code', 'Doctor'); INSERT INTO label VALUES ('title_doctor', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Docteur'); INSERT INTO label VALUES ('title_professor', 'elmnt_liste_interface', 'eng', NULL, 'code', 'Professor'); INSERT INTO label VALUES ('title_professor', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Professeur'); INSERT INTO label VALUES ('title_mis', 'elmnt_liste_interface', 'eng', NULL, 'code', 'Miss'); INSERT INTO label VALUES ('title_mis', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Mademoiselle'); INSERT INTO label VALUES ('organisation', 'message_interface', 'eng', '', 'message', 'Organisation name'); INSERT INTO label VALUES ('titre_portail_standard', 'message_interface', 'por', 'label bas de page', 'accueil', 'US 166 - IRD'); INSERT INTO label VALUES ('code', 'message_interface', 'eng', '', 'message', 'Postal code'); INSERT INTO label VALUES ('url', 'message_interface', 'eng', '', 'message', 'Online Ressource (url)'); INSERT INTO label VALUES ('url', 'message_interface', 'fra', '', 'message', 'Url'); INSERT INTO label VALUES ('country', 'message_interface', 'eng', '', 'message', 'Country'); INSERT INTO label VALUES ('country', 'message_interface', 'fra', '', 'message', 'Pays'); INSERT INTO label VALUES ('city', 'message_interface', 'eng', '', 'message', 'City'); INSERT INTO label VALUES ('city', 'message_interface', 'fra', '', 'message', 'Ville'); INSERT INTO label VALUES ('title', 'liste_interface', 'eng', '', 'message', 'Title'); INSERT INTO label VALUES ('title', 'liste_interface', 'fra', '', 'message', 'Titre'); INSERT INTO label VALUES ('role', 'liste_interface', 'eng', '', 'message', 'Role'); INSERT INTO label VALUES ('postal_code', 'message_interface', 'eng', '', 'message', 'Postal code'); INSERT INTO label VALUES ('postal_code', 'message_interface', 'fra', '', 'message', 'Code postal'); INSERT INTO label VALUES ('address', 'message_interface', 'eng', '', 'message', 'Address'); INSERT INTO label VALUES ('address', 'message_interface', 'fra', '', 'message', 'Adresse'); INSERT INTO label VALUES ('lbl_no_keys', 'message_interface', 'fra', '', 'message', 'Aucun mot ne commence par cette chaine'); INSERT INTO label VALUES ('titre_search_org', 'message_interface', 'eng', '', 'message', 'By Institutions'); INSERT INTO label VALUES ('titre_search_multi', 'message_interface', 'fra', '', 'message', 'Recherche multi-critères'); INSERT INTO label VALUES ('no_login', 'message_interface', 'eng', '', 'message', 'Your email is not in the database. Please enter your exact email address'); INSERT INTO label VALUES ('no_login', 'message_interface', 'fra', '', 'message', 'Votre email n''est pas dans la base de données. Entrez votre adresse exacte svp.'); INSERT INTO label VALUES ('query_org', 'message_interface', 'fra', '', 'message', 'Recherche sur les Institutions'); INSERT INTO label VALUES ('body_loose_pass_1', 'message_interface', 'eng', '', 'mail', 'Yours new parameters for MDweb System are :'); INSERT INTO label VALUES ('new_user_send_mail', 'message_interface', 'eng', '', 'mail', 'A mail to MDweb Administrator will be send
You will receive a mail to confirm your registration.'); INSERT INTO label VALUES ('type_label_bulle', 'elmnt_liste_interface', 'fra', '', 'code', 'Infos bulle'); INSERT INTO label VALUES ('subject_conf_user', 'message_interface', 'eng', '', 'mail', 'Confirmation of your registration to MDweb System'); INSERT INTO label VALUES ('subject_new_user_1', 'message_interface', 'eng', '', 'mail', 'New user Mdweb'); INSERT INTO label VALUES ('phone', 'message_interface', 'eng', '', 'message', 'Phone'); INSERT INTO label VALUES ('phone', 'message_interface', 'fra', '', 'message', 'Téléphone'); INSERT INTO label VALUES ('new_user_no_send_mail', 'message_interface', 'eng', '', 'mail', 'Error in you registration'); INSERT INTO label VALUES ('subject_new_user_2', 'message_interface', 'eng', '', 'mail', 'Registration to MDweb System'); INSERT INTO label VALUES ('body_new_user_1', 'message_interface', 'eng', '', 'mail', 'Hi, Parameters from new user registration to MDweb System are :'); INSERT INTO label VALUES ('new_pass', 'message_interface', 'eng', '', 'mail', 'A mail with yours new connexion parameters have been send to you'); INSERT INTO label VALUES ('body_new_user_3', 'message_interface', 'eng', '', 'mail', 'You will receive a mail to confirm your registration with yous login and passsword.'); INSERT INTO label VALUES ('body_new_user_2', 'message_interface', 'eng', '', 'mail', 'Yours parameters from your registration to Mdweb System are :'); INSERT INTO label VALUES ('old_user_no_send_mail', 'message_interface', 'eng', '', 'mail', 'Error in the mail sending'); INSERT INTO label VALUES ('titre_search_type_data', 'message_interface', 'eng', '', 'message', 'By data type'); INSERT INTO label VALUES ('new_pass', 'message_interface', 'fra', '', 'mail', 'Un mail avec vos nouveaux paramètres de connexion vient de vous être envoyé'); INSERT INTO label VALUES ('password_forget', 'message_interface', 'eng', '', 'message', 'Forgot your password!'); INSERT INTO label VALUES ('titre_search_multi', 'message_interface', 'eng', '', 'message', 'Multi-criteria search'); INSERT INTO label VALUES ('system_md_pass', 'message_interface', 'eng', '', 'message', 'MDweb user account - Forgot your password ?'); INSERT INTO label VALUES ('system_md_pass', 'message_interface', 'fra', '', 'message', 'Compte utilisateur MDweb - votre mot de passe ?'); INSERT INTO label VALUES ('register_md', 'message_interface', 'eng', '', 'message', 'MDweb user Registration form'); INSERT INTO label VALUES ('bulle_insert_predef', 'message_interface', 'fra', '', 'bulle', 'Insérer les valeurs prédéfinies sélectionnées'); INSERT INTO label VALUES ('title_mme', 'elmnt_liste_interface', 'eng', NULL, 'code', 'Mme'); INSERT INTO label VALUES ('title_mme', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Mme'); INSERT INTO label VALUES ('title_mr', 'elmnt_liste_interface', 'eng', NULL, 'code', 'Mr'); INSERT INTO label VALUES ('title_mr', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Mr'); INSERT INTO label VALUES ('iso_lang_code_eng', 'elmnt_liste_interface', 'eng', NULL, 'code', 'English'); INSERT INTO label VALUES ('iso_lang_code_eng', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Anglais'); INSERT INTO label VALUES ('iso_lang_code_fra', 'elmnt_liste_interface', 'eng', NULL, 'code', 'French'); INSERT INTO label VALUES ('iso_lang_code_fra', 'elmnt_liste_interface', 'fra', NULL, 'code', 'Français'); INSERT INTO label VALUES ('bt_attach', 'message_interface', 'fra', 'libellé bouton submit', 'message', 'Attacher'); INSERT INTO label VALUES ('bulle_change_title', 'message_interface', 'fra', '', 'bulle', 'Modifier le titre de la fiche'); INSERT INTO label VALUES ('position', 'message_interface', 'eng', '', 'message', 'Position'); INSERT INTO label VALUES ('position', 'message_interface', 'fra', '', 'message', 'Fonction'); INSERT INTO label VALUES ('inscription', 'message_interface', 'eng', '', 'message', 'Registration'); INSERT INTO label VALUES ('inscription', 'message_interface', 'fra', '', 'message', 'Inscrivez - vous'); INSERT INTO label VALUES ('titre_manage_catalog', 'message_interface', 'fra', '', 'message', 'Gérez le catalogue'); INSERT INTO label VALUES ('bulle_insert_contact', 'message_interface', 'fra', '', 'bulle', 'Insérer les contacts séléctionnés'); INSERT INTO label VALUES ('bulle_admin', 'message_interface', 'fra', '', 'bulle', 'Administration page'); INSERT INTO label VALUES ('bulle_user', 'message_interface', 'fra', '', 'bulle', 'Page d''accueil'); INSERT INTO label VALUES ('bulle_help', 'message_interface', 'fra', '', 'bulle', 'Aide'); INSERT INTO label VALUES ('bulle_exit', 'message_interface', 'fra', '', 'bulle', 'Quitter MDweb'); INSERT INTO label VALUES ('bulle_attach_quicklook', 'message_interface', 'fra', '', 'bulle', 'Attacher une imagette'); INSERT INTO label VALUES ('titre_search_obs', 'message_interface', 'eng', '', 'message', 'By catalog'); INSERT INTO label VALUES ('bulle_attach_children_sheet', 'message_interface', 'fra', '', 'bulle', 'Attacher une fiche fille'' sheet'); INSERT INTO label VALUES ('bulle_attach_parent_sheet', 'message_interface', 'fra', '', 'bulle', 'Attacher une fiche parente''s sheet'); INSERT INTO label VALUES ('bulle_insert_country', 'message_interface', 'fra', '', 'bulle', 'Entrer un nouveau pays'); INSERT INTO label VALUES ('bulle_change_default_contact', 'message_interface', 'fra', '', 'bulle', 'Définir ce contact comme contact par défaut'); INSERT INTO label VALUES ('bulle_change_ default_predef', 'message_interface', 'fra', '', 'bulle', 'Définir ce jeu de valeurs prédéfinies comme jeu de valeurs par défaut'); INSERT INTO label VALUES ('bulle_attach_archive', 'message_interface', 'fra', '', 'bulle', 'Attacher une archive zip'); INSERT INTO label VALUES ('action', 'message_interface', 'eng', '', 'message', 'Choose'); INSERT INTO label VALUES ('new_sheet', 'message_interface', 'eng', '', 'message', 'Importing sheet'); INSERT INTO label VALUES ('old_sheet', 'message_interface', 'eng', '', 'message', 'Existing sheet'); INSERT INTO label VALUES ('type_label_mail', 'elmnt_liste_interface', 'fra', '', 'code', 'Message des mails'); INSERT INTO label VALUES ('type_label_catalog', 'elmnt_liste_interface', 'fra', '', 'code', 'Catalogue'); INSERT INTO label VALUES ('no_observatory', 'message_interface', 'fra', '', 'message', 'Observatoire non identifié'); INSERT INTO label VALUES ('titre_manage_catalog', 'message_interface', 'eng', '', 'message', 'Managing catalog'); INSERT INTO label VALUES ('titre_util', 'message_interface', 'fra', '', 'message', 'Utilitaires'); INSERT INTO label VALUES ('titre_util', 'message_interface', 'eng', '', 'message', 'Cataloging tools'); INSERT INTO label VALUES ('titre_propos', 'message_interface', 'fra', '', 'message', 'A propos de MDweb'); INSERT INTO label VALUES ('titre_propos', 'message_interface', 'eng', '', 'message', 'About MDweb'); INSERT INTO label VALUES ('admin_lib_desc', 'message_interface', 'por', 'description libellés', 'aide', 'Gerir as etiquetas das interfaces de MDweb. Este sub módulo permite modificar e acrescentar etiquetas das listas, das mensagens, dos menus e dos formulários.'); INSERT INTO label VALUES ('orig_fiche', 'liste_interface', 'por', 'Label code', 'code', 'Origem da ficha'); INSERT INTO label VALUES ('subject_loose_pass', 'message_interface', 'eng', '', 'mail', 'New password for MDweb System'); INSERT INTO label VALUES ('register_md', 'message_interface', 'fra', '', 'message', 'Formulaire d''enregistrement à MDweb'); INSERT INTO label VALUES ('query_multi_criteria', 'message_interface', 'eng', '', 'message', 'Multi-criteria search'); INSERT INTO label VALUES ('message_md_pass', 'message_interface', 'eng', '', 'message', 'Input your email address and submit. Your password will send to you at this address'); INSERT INTO label VALUES ('message_md_pass', 'message_interface', 'fra', '', 'message', 'saissisez votre email et envoyez. votre mot de passe vous sera envoyé à cette adresse'); INSERT INTO label VALUES ('message_md_register', 'message_interface', 'fra', '', 'message', 'Pour avoir un code d''accès nécessaire à la gestion du catalogue, entrez vos coordonnées et envoyer. Un email vous sera envoyé avec votre login et votre mot de passe ainsi que le rôle que vous aura attribué l''administrateur '); INSERT INTO label VALUES ('message_md_register', 'message_interface', 'eng', '', 'message', 'to have an user account to reference inside the data catalog, , fill the inscription form. An email will be send to your with your login and your password and the role given by the catalog administrator'); INSERT INTO label VALUES ('titre_organisation', 'message_interface', 'fra', '', 'message', 'Organisation'); INSERT INTO label VALUES ('titre_organisation', 'message_interface', 'eng', '', 'message', 'Organisation'); INSERT INTO label VALUES ('titre_catalogues_ligne', 'message_interface', 'fra', '', 'message', 'Les catalogues en ligne'); INSERT INTO label VALUES ('titre_catalogues_ligne', 'message_interface', 'eng', '', 'message', 'On line Catalog'); INSERT INTO label VALUES ('titre_search_data', 'message_interface', 'fra', '', 'message', 'Recherchez des données'); INSERT INTO label VALUES ('titre_search_data', 'message_interface', 'eng', '', 'message', 'Searching data'); INSERT INTO label VALUES ('titre_search_type_data', 'message_interface', 'fra', '', 'message', 'Par type de données'); INSERT INTO label VALUES ('query_last_ref', 'message_interface', 'eng', '', 'message', 'Searching News references'); INSERT INTO label VALUES ('query_org', 'message_interface', 'eng', '', 'message', 'Searching by Institutions'); INSERT INTO label VALUES ('no_user_valid', 'message_interface', 'eng', '', 'message', 'Your user account is not yet valid '); INSERT INTO label VALUES ('no_user_valid', 'message_interface', 'fra', '', 'message', 'Votre compte n''est pas encore valide'); INSERT INTO label VALUES ('title_present', 'message_interface', 'fra', '', 'message', 'Présentation MDweb : Outil d''indexation et de recherche de l''information environnementale'); INSERT INTO label VALUES ('title_present', 'message_interface', 'eng', '', 'message', 'Présentation MDweb : Outil d''indexation et de recherche de l''information environnementale -- à traduire'); INSERT INTO label VALUES ('text_present_top', 'message_interface', 'fra', '', 'message', 'MDweb : Outil d''indexation et de recherche de l''information environnementale'); INSERT INTO label VALUES ('old_user_no_send_mail', 'message_interface', 'fra', '', 'mail', 'Erreur dans l''envoi du mail'); INSERT INTO label VALUES ('titre_doc', 'message_interface', 'eng', '', 'message', 'Searching data help'); INSERT INTO label VALUES ('titre_doc', 'message_interface', 'fra', '', 'message', 'Aide à la consultation'); INSERT INTO label VALUES ('text_present_top', 'message_interface', 'eng', '', 'message', 'MDweb : Referencing and searching environmental information tool'); INSERT INTO label VALUES ('titre_search_last_ref', 'message_interface', 'eng', '', 'message', 'New references'); INSERT INTO label VALUES ('titre_search_last_ref', 'message_interface', 'fra', '', 'message', 'Nouvelles références'); INSERT INTO label VALUES ('bt_valid', 'message_interface', 'fra', 'etiquette ''valider''', 'message', 'Valider'); INSERT INTO label VALUES ('bt_valid', 'message_interface', 'eng', 'label ''validate''', 'message', 'Validate'); INSERT INTO label VALUES ('submit', 'message_interface', 'eng', 'Label ''Submit''', 'message', 'Submit'); INSERT INTO label VALUES ('submit', 'message_interface', 'fra', 'Etiquette ''Envoyer''.', 'message', 'Envoyer'); INSERT INTO label VALUES ('mess_fiche_xml_valides', 'message_interface', 'fra', 'Label', 'message', 'Toutes les fiches XML ont été vérifiées et sont valides.Cliquez sur le bouton pour lancer l''importation.'); INSERT INTO label VALUES ('mess_confirm_import', 'message_interface', 'fra', 'Label', 'message', 'Les fiches XML suivantes ont été importées dans le catalogue'); INSERT INTO label VALUES ('mess_confirm_import', 'message_interface', 'eng', 'Label', 'message', 'Following sheets imported into the catalog : '); INSERT INTO label VALUES ('import_ressources', 'message_interface', 'eng', 'Label', 'message', 'Attach dataset (files) to a metadata sheet'); INSERT INTO label VALUES ('onglet_identificationInfo_36', 'message_interface', 'eng', 'Tab ''Resource''', 'message', 'DataSet'); INSERT INTO label VALUES ('onglet_identificationInfo_36', 'message_interface', 'fra', 'Onglet ''Ressource''', 'message', 'Jeu de données'); INSERT INTO label VALUES ('onglet_contentInfo_40', 'message_interface', 'fra', 'Onglet ''info de contenu''', 'message', ' Contenu du jeu de données'); INSERT INTO label VALUES ('onglet_quicklook', 'message_interface', 'fra', 'Onglet ''Quicklook''', 'message', 'Aperçu'); INSERT INTO label VALUES ('import_image', 'message_interface', 'por', 'Label', 'message', 'Importar a vista rápida numa ficha de metadados'); INSERT INTO label VALUES ('maj_contact', 'message_interface', 'fra', 'Etiquette ''date maj contact''', 'message', 'Date de mise à jour des contacts'); INSERT INTO label VALUES ('doc_where', 'message_interface', 'fra', 'Ou', 'message', 'Où ? : à l''aide du bouton de sélection, sélectionnez une zone géographique sur laquelle portera la recherche. Validez ensuite la zone choisie avec le bouton Valider du formulaire Ou?'); INSERT INTO label VALUES ('doc_where', 'message_interface', 'eng', 'Où', 'message', 'Where ? : using the selection button, select the geographic area on which the search will take place. Validate the choosen selection with Validate button in the Where form'); INSERT INTO label VALUES ('nord', 'message_interface', 'eng', 'labecardinalités', 'message', 'N'); INSERT INTO label VALUES ('nord', 'message_interface', 'fra', 'labecardinalités', 'message', 'N'); INSERT INTO label VALUES ('est', 'message_interface', 'eng', 'labecardinalités', 'message', 'E'); INSERT INTO label VALUES ('est', 'message_interface', 'fra', 'labecardinalités', 'message', 'E'); INSERT INTO label VALUES ('sud', 'message_interface', 'eng', 'labecardinalités', 'message', 'S'); INSERT INTO label VALUES ('sud', 'message_interface', 'fra', 'labecardinalités', 'message', 'S'); INSERT INTO label VALUES ('ouest', 'message_interface', 'eng', 'label cardinalités', 'message', 'W'); INSERT INTO label VALUES ('ouest', 'message_interface', 'fra', 'label cardinalités', 'message', 'O'); INSERT INTO label VALUES ('conf_mdp', 'message_interface', 'fra', 'Etiquette confirmer mot de passe', 'message', 'Confirmer le mot de passe'); INSERT INTO label VALUES ('erreur_no_MD', 'message_interface', 'fra', 'Etiquette pour l''erreur quand il n''y a pas de métadonnées qui correspondent aux critères choisis.', 'message', 'Il n''y a aucune fiche de métadonnées qui correspond à vos critères.'); INSERT INTO label VALUES ('erreur_no_MD', 'message_interface', 'eng', 'Label for error when there is no metadata matching with selected criteria.', 'message', 'There is no metadata sheet matching with your criteria.'); INSERT INTO label VALUES ('confirm_suppr_fiche', 'message_interface', 'eng', 'Message for Javascript alert box to confirm sheet deletion', 'message', 'Are you sure that you want to delete the sheet ?'); INSERT INTO label VALUES ('confirm_suppr_fiche', 'message_interface', 'fra', 'Message pour la boîte Javascript de confirmation de la supression d''une fiche', 'message', 'Etes vous sûr de vouloir supprimer la fiche ?'); INSERT INTO label VALUES ('mess_ajout_parent', 'message_interface', 'eng', 'Label ''parent sheets linked''.', 'message', 'Parent sheets are linked'); INSERT INTO label VALUES ('mess_ajout_parent', 'message_interface', 'fra', 'Etiquette ''fiches parents attachées''.', 'message', 'La ou les fiches parents ont été attachées '); INSERT INTO label VALUES ('mess_detach_parent', 'message_interface', 'eng', 'Label ''parent sheet unlinked''.', 'message', 'Parent sheet are unlinked'); INSERT INTO label VALUES ('mess_detach_parent', 'message_interface', 'fra', 'Etiquette ''fiche parent détachée''.', 'message', 'La fiche parent a été détachée'); INSERT INTO label VALUES ('mess_ajout_fils', 'message_interface', 'fra', 'Etiquette ''fiches filles attachées''.', 'message', 'La ou les fiches filles ont été attachées '); INSERT INTO label VALUES ('mess_ajout_fils', 'message_interface', 'eng', 'Label ''son sheets linked''.', 'message', 'Son sheets are linked '); INSERT INTO label VALUES ('observatoire', 'message_interface', 'eng', 'Label catalog', 'message', 'Catalog'); INSERT INTO label VALUES ('observatoire', 'message_interface', 'fra', 'Etiquette catalogue', 'message', 'Catalogue'); INSERT INTO label VALUES ('erreur_envoi_fic_ress', 'message_interface', 'fra', 'Etiquette ''erreur envoi fichiers ressources''', 'message', 'Erreur lors de l''envoi des fichiers de données'); INSERT INTO label VALUES ('erreur_envoi_fic_ress', 'message_interface', 'eng', 'Label ''error sending ressource files''', 'message', 'Error while sending dataset files.'); INSERT INTO label VALUES ('telecharg_fic_ress', 'message_interface', 'fra', 'Etiquette ''télécharger fichiers ressources''', 'message', 'Télécharger les fichiers de données attachés'); INSERT INTO label VALUES ('telecharg_fic_ress', 'message_interface', 'eng', 'Label ''download ressource files''', 'message', 'Download linked dataset files'); INSERT INTO label VALUES ('taille_decomp', 'message_interface', 'fra', 'Etiquette ''Taille décompressé''', 'message', 'Taille décompressée'); INSERT INTO label VALUES ('provenance_obs', 'message_interface', 'fra', 'Label', 'message', 'Catalogue de destination'); INSERT INTO label VALUES ('provenance_obs', 'message_interface', 'eng', 'Label', 'message', 'Destination catalog'); INSERT INTO label VALUES ('image', 'message_interface', 'fra', 'Label', 'message', 'Aperçu'); INSERT INTO label VALUES ('ressources', 'message_interface', 'fra', 'Label', 'message', 'fichiers de données'); INSERT INTO label VALUES ('ressources', 'message_interface', 'eng', 'Label', 'message', 'Dataset files'); INSERT INTO label VALUES ('attacher_archive_ress', 'message_interface', 'fra', 'Etiquette ''attacher archive ressources''', 'message', 'Attacher les fichiers de données à la fiche'); INSERT INTO label VALUES ('attacher_archive_ress', 'message_interface', 'eng', 'Label ''link archive files''', 'message', 'Link a dataset files to the sheet'); INSERT INTO label VALUES ('attacher_img_ress', 'message_interface', 'fra', 'Etiquette ''attacher quicklook''', 'message', 'Attacher un aperçu à la fiche'); INSERT INTO label VALUES ('image_attach', 'message_interface', 'fra', 'Etiquette ''quicklook attaché''', 'message', 'Aperçu attaché'); INSERT INTO label VALUES ('no_image', 'message_interface', 'fra', 'message ''ce n''est pas un quicklook''', 'message', 'Ce n''est pas un aperçu'); INSERT INTO label VALUES ('titre_observatoires', 'message_interface', 'fra', 'Etiquette organisations pour le titre des pages de l''admin', 'message', 'des catalogues'); INSERT INTO label VALUES ('titre_observatoires', 'message_interface', 'eng', 'Organisations label for the administrator pages title', 'message', 'catalogs'); INSERT INTO label VALUES ('code_observatoire', 'liste_interface', 'eng', 'Label Catalog', 'code', 'Catalog'); INSERT INTO label VALUES ('code_observatoire', 'liste_interface', 'fra', 'Etiquette catalogue', 'code', 'Catalogue'); INSERT INTO label VALUES ('code_observatoire', 'message_interface', 'eng', 'Observatory code label', 'message', 'Catalog code'); INSERT INTO label VALUES ('code_observatoire', 'message_interface', 'fra', 'Etiquette code observatoire', 'message', 'code du catalogue'); INSERT INTO label VALUES ('onglet_date', 'message_interface', 'fra', 'Onglet ''dates''', 'message', 'Dates de validité'); INSERT INTO label VALUES ('onglet_date', 'message_interface', 'eng', 'Tab ''dates''', 'message', 'Validation dates'); INSERT INTO label VALUES ('onglet_thesaurus', 'message_interface', 'fra', 'Onglet ''thesaurus''', 'message', 'Thésaurus'); INSERT INTO label VALUES ('onglet_gabarit', 'message_interface', 'fra', 'Onglet ''catalogues''', 'message', 'Quel type de données ?'); INSERT INTO label VALUES ('doc_gabarit', 'message_interface', 'eng', '', 'message', 'Which type of dataset ? : select the type of dataset on which you want to search. By default, the search is based on all'); INSERT INTO label VALUES ('doc_catalog_suite', 'message_interface', 'fra', '', 'message', 'Vous pouvez sélectionnez plusieurs catalogues. Sélectionnez dans la liste ci-dessous, un catalogue puis validez. Exécutez la même opération pour les suivants.'); INSERT INTO label VALUES ('doc_catalog_suite', 'message_interface', 'eng', '', 'message', 'You can select one or more catalog. Select its in the list belows and validate validez. You do the same operation to select other catalog'); INSERT INTO label VALUES ('doc_gabarit', 'message_interface', 'fra', '', 'message', 'Quel type de données ? : Choisissez le type de données sur lequel doit porter la recherche. Par défaut, la recherche portera sur l''ensemble des types.'); INSERT INTO label VALUES ('nom_observatoire', 'message_interface', 'eng', 'Catalog name label', 'message', 'Catalog name'); INSERT INTO label VALUES ('nom_observatoire', 'message_interface', 'fra', 'Etiquette Nom du catalogue', 'message', 'Nom du catalogue'); INSERT INTO label VALUES ('nom_organisme', 'message_interface', 'eng', 'Organisme name label', 'message', 'Insitution name'); INSERT INTO label VALUES ('titre_portail_demo', 'message_interface', 'fra', 'label bandeau demo', 'accueil', 'Démonstrateur MDweb'); INSERT INTO label VALUES ('titre_search_obs', 'message_interface', 'fra', '', 'message', 'Par catalogue'); INSERT INTO label VALUES ('code', 'message_interface', 'fra', '', 'message', 'Code postal'); INSERT INTO label VALUES ('titre_portail_anmcv', 'message_interface', 'fra', 'label titre anmcv', 'accueil', 'Association Nationale des Municipalités du Cap-Vert'); INSERT INTO label VALUES ('role', 'liste_interface', 'fra', '', 'message', 'Rôle'); INSERT INTO label VALUES ('password_forget', 'message_interface', 'fra', '', 'message', 'Mot de passe oublié!'); INSERT INTO label VALUES ('system_md_entry', 'message_interface', 'eng', '', 'message', ' MDweb tool'); INSERT INTO label VALUES ('system_md_entry', 'message_interface', 'fra', '', 'message', ' MDweb'); INSERT INTO label VALUES ('none_contacts', 'message_interface', 'fra', 'Pas de contacts par défault', 'message', 'Pas de contacts prédéfinis'); INSERT INTO label VALUES ('query_obs', 'message_interface', 'eng', '', 'message', 'Searching by Catalog'); INSERT INTO label VALUES ('query_obs', 'message_interface', 'fra', '', 'message', 'Recherche sur les catalogues'); INSERT INTO label VALUES ('query_last_ref', 'message_interface', 'fra', '', 'message', 'Recherche des nouvelles références'); INSERT INTO label VALUES ('titre_base', 'message_interface', 'eng', '', 'message', 'Relational databases'); INSERT INTO label VALUES ('titre_map', 'message_interface', 'eng', '', 'message', 'Digital map'); INSERT INTO label VALUES ('titre_map', 'message_interface', 'fra', '', 'message', 'Carte numérique'); INSERT INTO label VALUES ('titre_bdgeo', 'message_interface', 'fra', 'label titre BD géo', 'message', 'BD Géographique'); INSERT INTO label VALUES ('titre_bdgeo', 'message_interface', 'eng', 'label geodatabase', 'message', 'Geodatabase'); INSERT INTO label VALUES ('titre_vecteur', 'message_interface', 'fra', 'label titre vecteur', 'message', 'Thème vecteur'); INSERT INTO label VALUES ('titre_vecteur', 'message_interface', 'eng', 'label vectpr title', 'message', 'Vector layer'); INSERT INTO label VALUES ('titre_raster', 'message_interface', 'fra', 'label titre raster', 'message', 'Image - Thème raster'); INSERT INTO label VALUES ('titre_raster', 'message_interface', 'eng', 'label title raster', 'message', 'Image - Raster layer'); INSERT INTO label VALUES ('titre_cartepapier', 'message_interface', 'fra', 'label titre carte papier', 'message', 'Carte papier'); INSERT INTO label VALUES ('titre_cartepapier', 'message_interface', 'eng', 'label hardcopy map', 'message', 'Hardcopy map'); INSERT INTO label VALUES ('query_doc', 'message_interface', 'eng', '', 'message', 'Searching slide show'); INSERT INTO label VALUES ('query_doc', 'message_interface', 'fra', '', 'message', 'Recherche des présentations'); INSERT INTO label VALUES ('titre_classeur', 'message_interface', 'fra', 'label titre classeur', 'message', 'Classeur - Table BD'); INSERT INTO label VALUES ('titre_classeur', 'message_interface', 'eng', 'label spreadsheet DB table', 'message', 'Spreadsheet - DB Table'); INSERT INTO label VALUES ('query_vecteur', 'message_interface', 'fra', 'label recherche vecteur', 'message', 'Recherche thème vecteur'); INSERT INTO label VALUES ('query_vecteur', 'message_interface', 'eng', 'label query vector', 'message', 'Searching vector layer'); INSERT INTO label VALUES ('query_bdgeo', 'message_interface', 'eng', 'label query BD geo', 'message', 'Searching geodatabase'); INSERT INTO label VALUES ('query_map', 'message_interface', 'fra', '', 'message', 'Recherche des cartes numériques'); INSERT INTO label VALUES ('query_map', 'message_interface', 'eng', '', 'message', 'Searching digital maps'); INSERT INTO label VALUES ('query_bdgeo', 'message_interface', 'fra', 'label recherche BD geo', 'message', 'Recherche des BD géographiques'); INSERT INTO label VALUES ('query_base', 'message_interface', 'fra', '', 'message', 'Recherche des BD relationnelles'); INSERT INTO label VALUES ('query_base', 'message_interface', 'eng', '', 'message', 'Searching relational DB'); INSERT INTO label VALUES ('query_raster', 'message_interface', 'eng', '', 'message', 'Searching Images raster layers'); INSERT INTO label VALUES ('query_raster', 'message_interface', 'fra', '', 'message', 'Recherche des Images - raster'); INSERT INTO label VALUES ('query_cartepapier', 'message_interface', 'fra', 'label recherche carte papier', 'message', 'Recherche des cartes papier'); INSERT INTO label VALUES ('query_cartepapier', 'message_interface', 'eng', 'label query hardcopy map', 'message', 'Searching hardcopy map'); INSERT INTO label VALUES ('query_classeur', 'message_interface', 'fra', 'label recherche classeur', 'message', 'Recherche des classeurs - tables BD'); INSERT INTO label VALUES ('query_classeur', 'message_interface', 'eng', 'label query spreadsheet', 'message', 'Searching spreadsheet - DB table'); INSERT INTO label VALUES ('titre_organisme', 'message_interface', 'fra', 'Etiquette organisations pour le titre des pages de l''admin', 'message', 'un catalogue'); INSERT INTO label VALUES ('titre_organisme', 'message_interface', 'eng', 'Organisations label for the administrator pages title', 'message', 'catalog'); INSERT INTO label VALUES ('titre_utilisateurs', 'message_interface', 'eng', 'Users label for the administrator pages title', 'message', 'user'); INSERT INTO label VALUES ('catalog_inida', 'elmnt_liste_interface', 'eng', 'nom catalogue', 'catalog', 'Data Catalog - Inida'); INSERT INTO label VALUES ('catalog_inida', 'elmnt_liste_interface', 'fra', 'nom catalogue', 'catalog', 'Catalogue de données - Inida'); INSERT INTO label VALUES ('catalog_all', 'elmnt_liste_interface', 'eng', '', 'catalog', 'All SIA Data Catalogs'); INSERT INTO label VALUES ('catalog_all', 'elmnt_liste_interface', 'fra', '', 'catalog', 'Tous les catalogues de données SIA'); INSERT INTO label VALUES ('import_source_SIEL', 'elmnt_liste_interface', 'fra', 'Label', 'code', 'ArcGIS'); INSERT INTO label VALUES ('no_ajout', 'message_interface', 'fra', 'Etiquette ajouter valeurs prédef', 'code', 'non ajoutée'); INSERT INTO label VALUES ('code_pays', 'message_interface', 'eng', 'country identifiant', 'message', 'Country Code (2 characters)'); INSERT INTO label VALUES ('code_pays', 'message_interface', 'fra', 'Code pays', 'message', 'Code Pays (2 caractères)'); INSERT INTO label VALUES ('body_new_user_3', 'message_interface', 'fra', '', 'mail', 'Vous allez recevoir un mail de confirmation de votre demande d''inscription avec votre login et votre mot de passe.'); INSERT INTO label VALUES ('authentif', 'message_interface', 'fra', 'libellé menu accueil', 'message', 'Authentification'); INSERT INTO label VALUES ('authentif', 'message_interface', 'eng', 'label home page menu', 'message', 'Authentification'); INSERT INTO label VALUES ('liste_fic_attach', 'message_interface', 'fra', 'libellé liste des fichiers attachés', 'message', 'Liste des fichiers attachés'); INSERT INTO label VALUES ('liste_fic_attach', 'message_interface', 'eng', 'label attach files list', 'message', 'List of attached files'); INSERT INTO label VALUES ('mess_accueil_saisie', 'message_interface', 'fra', 'libellé titre accueil saisie', 'message', 'Informations générales de votre fiche de métadonnées'); INSERT INTO label VALUES ('titre_portail_anmcv', 'message_interface', 'eng', 'label titre anmcv', 'accueil', 'National Association of Caboverdian Municipalities'); INSERT INTO label VALUES ('mess_accueil_saisie', 'message_interface', 'eng', 'label input homepage', 'message', 'Metadata sheet general informations'); INSERT INTO label VALUES ('confirm_import', 'message_interface', 'fra', 'libelle message module import xml', 'message', 'Les fiches suivantes existent déjà : Que voulez vous faire?'); INSERT INTO label VALUES ('menu_gest_collection', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Collection de données'); INSERT INTO label VALUES ('menu_gest_jeu', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Jeu de données'); INSERT INTO label VALUES ('menu_gest_modif', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_gest_consult', 'message_interface', 'fra', 'libellé menu gestion', 'menu', 'Consulter'); INSERT INTO label VALUES ('import_ressources', 'message_interface', 'por', 'message', 'message', 'Anexar dados (ficheiros) numa ficha de metadados'); INSERT INTO label VALUES ('gest_creer_desc', 'message_interface', 'fra', 'description créer', 'aide', 'Créer une référence dans le catalogue. Deux possibilités sont offertes: une référence de type collection de données (BD relationnelle, BD géographique ou Carte numérique) ou une référence jeu de données (Thème vecteur, image- grille raster, etc.)'); INSERT INTO label VALUES ('menu_gest_valpredef', 'message_interface', 'fra', 'libellé menu gestion', 'menu', 'Gérez vos valeurs prédéfinies'); INSERT INTO label VALUES ('gest_modif_desc', 'message_interface', 'fra', 'description modifier', 'aide', 'Modifier une référence existante. Ce sous-module vous permet d''accéder à une référence pour pouvoir en modifier son contenu et ses propriétés'); INSERT INTO label VALUES ('menu_gest_valpredef_ajout', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_gest_valpredef_mod', 'message_interface', 'fra', 'libellé menu gestion', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_gest_contact', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Gérez vos contacts'); INSERT INTO label VALUES ('menu_gest_contact_mod', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_gest_ajout', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_gest_aide', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Aide'); INSERT INTO label VALUES ('menu_gest_admin', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Administration'); INSERT INTO label VALUES ('menu_gest_exit', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Quitter'); INSERT INTO label VALUES ('menu_gest_home', 'message_interface', 'fra', 'libelle menu gestion', 'menu', 'Gestion'); INSERT INTO label VALUES ('menu_gest_compte', 'message_interface', 'fra', 'label menu gestion', 'menu', 'Mon compte'); INSERT INTO label VALUES ('menu_admin_para_gen', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Régle de publication'); INSERT INTO label VALUES ('menu_gest_compte', 'message_interface', 'eng', 'label management menu', 'menu', 'My account'); INSERT INTO label VALUES ('menu_admin_util_ajout', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_admin_util_mod', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_admin_util_sup', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Supprimer'); INSERT INTO label VALUES ('menu_admin_lib', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Libellés'); INSERT INTO label VALUES ('menu_admin_lib_ajout', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_admin_lib_modif', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_admin_lib_sup', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Supprimer'); INSERT INTO label VALUES ('nom_organisme', 'message_interface', 'fra', 'Nom de l''observatoire', 'message', 'Nom du catalogue'); INSERT INTO label VALUES ('titre_portail_mevrh', 'message_interface', 'por', 'label titre accueil', 'accueil', 'Ministério da Educação e Valorização dos Recursos Humanos '); INSERT INTO label VALUES ('titre_portail_mevrh', 'message_interface', 'fra', 'titre accueil', 'accueil', 'Ministère de l''Education et de la Valorisation des ressources Humaines'); INSERT INTO label VALUES ('lbl_type_keyword', 'message_interface', 'fra', '', 'message', 'Catégorie'); INSERT INTO label VALUES ('menu_admin_gab', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Gabarits'); INSERT INTO label VALUES ('menu_admin_gab_ajout', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_admin_gab_modif', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_admin_gab_sup', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Supprimer'); INSERT INTO label VALUES ('menu_admin_cat', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Catalogues'); INSERT INTO label VALUES ('menu_admin_cat_ajout', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Ajouter'); INSERT INTO label VALUES ('menu_admin_cat_modif', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Modifier'); INSERT INTO label VALUES ('menu_admin_cat_sup', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Supprimer'); INSERT INTO label VALUES ('type_label_menu', 'elmnt_liste_interface', 'fra', '', 'code', 'Eléments des menus'); INSERT INTO label VALUES ('menu_gest_valpredef', 'message_interface', 'eng', 'label management menu', 'menu', 'Manage yours preset values'); INSERT INTO label VALUES ('gest_consult_desc', 'message_interface', 'fra', 'description consulter', 'aide', 'Consulter les références du catalogue à l''aide du module d''interrogation multi-critères (Où ?; Quand ? Sur Quoi ? , Quelle type de données ? quelque soit son statut (privé, public)'); INSERT INTO label VALUES ('gest_pref_desc', 'message_interface', 'fra', 'description préférence', 'aide', 'Modifier les propriétés de votre compte MDweb, Gérez vos contacts et vos valeurs par défaut qui seront synchronisés avec vos références'); INSERT INTO label VALUES ('admin_para_desc', 'message_interface', 'fra', 'description option générales', 'aide', 'Vous permet de modifier la règle de publication des références, gérer les langues, les valeurs prédéfinies et les contacts des utilisateurs'); INSERT INTO label VALUES ('admin_util_desc', 'message_interface', 'fra', 'description compte utilisateur', 'aide', 'Gérer les comptes des utilisateurs MDweb. Ce sous-module permet notamment de définir les privilèges des utilisateurs (administrateur, validateur,..)'); INSERT INTO label VALUES ('admin_lib_desc', 'message_interface', 'fra', 'description libellés', 'aide', 'Gérer les libellés des interfaces de MDweb. Ce sous-module permet de modifier et ajouter des libéllés des listes, des messages, des menus, des formulaires'); INSERT INTO label VALUES ('predef', 'message_interface', 'eng', 'Contacts label', 'message', 'Management of yours preset values'); INSERT INTO label VALUES ('bt_creer', 'message_interface', 'eng', 'label bouton submit', 'message', 'Create'); INSERT INTO label VALUES ('sous_titre_contact_mod', 'message_interface', 'fra', 'libellé sous titre modifier contact', 'message', 'Modifier vos contacts'); INSERT INTO label VALUES ('admin_cat_desc', 'message_interface', 'fra', 'description catalogue', 'aide', 'Ajouter, supprimer un catalogue de MDweb'); INSERT INTO label VALUES ('menu_gest_creer', 'message_interface', 'fra', 'libellé elemnt creer', 'menu', 'Créer'); INSERT INTO label VALUES ('menu_gest_creer', 'message_interface', 'eng', 'label management menu', 'menu', 'Create'); INSERT INTO label VALUES ('menu_gest_modif', 'message_interface', 'eng', 'label management menu', 'menu', 'Update'); INSERT INTO label VALUES ('menu_gest_consult', 'message_interface', 'eng', 'label management menu', 'menu', 'Search'); INSERT INTO label VALUES ('menu_gest_valpredef_ajout', 'message_interface', 'eng', 'label management menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_gest_admin', 'message_interface', 'eng', 'label management menu', 'menu', 'Administration'); INSERT INTO label VALUES ('menu_gest_aide', 'message_interface', 'eng', 'label management menu', 'menu', 'Help'); INSERT INTO label VALUES ('menu_gest_exit', 'message_interface', 'eng', 'label management menu', 'menu', 'Exit'); INSERT INTO label VALUES ('menu_gest_import', 'message_interface', 'fra', 'libellé menu gestion', 'menu', 'Importer'); INSERT INTO label VALUES ('menu_gest_import', 'message_interface', 'eng', 'label management menu', 'menu', 'Import'); INSERT INTO label VALUES ('menu_gest_valpredef_mod', 'message_interface', 'eng', 'label management menu', 'menu', 'Update'); INSERT INTO label VALUES ('titre_doc_admin', 'message_interface', 'eng', 'label management menu', 'menu', 'Administration help'); INSERT INTO label VALUES ('menu_admin_cat', 'message_interface', 'eng', 'label admin menu', 'menu', 'Catalogs'); INSERT INTO label VALUES ('menu_admin_cat_ajout', 'message_interface', 'eng', 'label admin menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_admin_cat_modif', 'message_interface', 'eng', 'label admin menu', 'menu', 'Update'); INSERT INTO label VALUES ('menu_admin_cat_sup', 'message_interface', 'eng', 'label admin menu', 'menu', 'Delete'); INSERT INTO label VALUES ('menu_admin_gab', 'message_interface', 'eng', 'label admin menu', 'menu', 'Profiles'); INSERT INTO label VALUES ('menu_admin_gab_ajout', 'message_interface', 'eng', 'label admin menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_admin_gab_modif', 'message_interface', 'eng', 'label admin menu', 'menu', 'Update'); INSERT INTO label VALUES ('menu_admin_gab_sup', 'message_interface', 'eng', 'label admin menu', 'menu', 'Delete'); INSERT INTO label VALUES ('menu_admin_lib', 'message_interface', 'eng', 'label admin menu', 'menu', 'Labels'); INSERT INTO label VALUES ('menu_admin_lib_ajout', 'message_interface', 'eng', 'label admin menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_admin_lib_modif', 'message_interface', 'eng', 'label admin menu', 'menu', 'Update'); INSERT INTO label VALUES ('menu_admin_lib_sup', 'message_interface', 'eng', 'label admin menu', 'menu', 'Delete'); INSERT INTO label VALUES ('sous_titre_contact_mod', 'message_interface', 'eng', 'label of sub title of update contact', 'message', 'Update or Modify the entry of your address book'); INSERT INTO label VALUES ('menu_admin_para_gen', 'message_interface', 'eng', 'label admin menu', 'menu', 'Publication rules'); INSERT INTO label VALUES ('admin_cat_desc', 'message_interface', 'eng', 'label catalog description', 'aide', 'Add, Update and delete MDweb catalog'); INSERT INTO label VALUES ('code_organisme', 'message_interface', 'fra', 'Etiquette code organisme', 'message', 'code du catalogue'); INSERT INTO label VALUES ('menu_admin_util', 'message_interface', 'eng', 'label admin menu', 'menu', 'Users account'); INSERT INTO label VALUES ('menu_admin_util_ajout', 'message_interface', 'eng', 'label admin menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_admin_util_mod', 'message_interface', 'eng', 'label admin menu', 'menu', 'Update'); INSERT INTO label VALUES ('menu_admin_util_sup', 'message_interface', 'eng', 'label admin menu', 'menu', 'Delete'); INSERT INTO label VALUES ('menu_gest_ajout', 'message_interface', 'eng', 'label management menu', 'menu', 'Add'); INSERT INTO label VALUES ('menu_gest_collection', 'message_interface', 'eng', 'label management menu', 'menu', 'Data series'); INSERT INTO label VALUES ('menu_gest_contact', 'message_interface', 'eng', 'label management menu', 'menu', 'Manage yours contacts'); INSERT INTO label VALUES ('onglet_catalog', 'message_interface', 'por', 'label message', 'message', 'Catalogos ?'); INSERT INTO label VALUES ('confirm_import', 'message_interface', 'por', 'label message', 'message', 'As fichas seguintes já existem: que deseja fazer?'); INSERT INTO label VALUES ('titre_search_org', 'message_interface', 'por', 'label message', 'message', 'Por instituições'); INSERT INTO label VALUES ('data_type_model', 'message_interface', 'por', 'label message', 'message', 'Modelo de tipo de dados'); INSERT INTO label VALUES ('organisation', 'message_interface', 'por', 'label message', 'message', 'Nome do organismo'); INSERT INTO label VALUES ('url', 'message_interface', 'por', 'label message', 'message', 'Url'); INSERT INTO label VALUES ('country', 'message_interface', 'por', 'label message', 'message', 'País'); INSERT INTO label VALUES ('city', 'message_interface', 'por', 'label message', 'message', 'Cidade'); INSERT INTO label VALUES ('title', 'liste_interface', 'por', 'label message', 'message', 'Titulo'); INSERT INTO label VALUES ('postal_code', 'message_interface', 'por', 'label message', 'message', 'Código postal'); INSERT INTO label VALUES ('address', 'message_interface', 'por', 'label message', 'message', 'Endereço'); INSERT INTO label VALUES ('titre_portail_inida', 'message_interface', 'por', 'label titre accueil', 'accueil', 'Instituto Nacional de Investigação e Desenvolvimento Agrário'); INSERT INTO label VALUES ('countrycd', 'liste_interface', 'por', 'label message', 'message', 'País'); INSERT INTO label VALUES ('gest_modif_desc', 'message_interface', 'eng', 'label description of update area', 'aide', 'Update an existing metadata sheet. this sub module provide the updating of the content of metadata sheet and its properties (statut, publication)'); INSERT INTO label VALUES ('titre_portail_mevrh', 'message_interface', 'eng', 'titre accueil', 'accueil', 'Ministry of Education and Valorisation of Human Resources'); INSERT INTO label VALUES ('gest_consult_desc', 'message_interface', 'eng', 'label description of consult area', 'aide', 'Consult the metadata sheets of local catalog with multi-criteria search page (Where ?; When ? On which content? , What kind of data ? '); INSERT INTO label VALUES ('menu_admin_para_contact', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Contacts'); INSERT INTO label VALUES ('gest_pref_desc', 'message_interface', 'eng', 'label description preferences', 'aide', 'Set up the properties of your MDweb user account. Manage yours metadata contact section and your presey values. They will synchronise with yours medatata sheets to simplify the input'); INSERT INTO label VALUES ('menu_admin_para_contact', 'message_interface', 'eng', 'label admin menu', 'menu', 'Contacts'); INSERT INTO label VALUES ('admin_lib_desc', 'message_interface', 'eng', 'label description of label area', 'aide', 'Manage the labels of MDweb pages. This area provides to modify and add label of MDweb messages, lists , menus, help and input forms'); INSERT INTO label VALUES ('admin_para_desc', 'message_interface', 'eng', 'label description of setting of area', 'aide', 'Provides to modify the publication rule of metadata sheets, manage the MDweb language, users preset values and contacts section'); INSERT INTO label VALUES ('admin_util_desc', 'message_interface', 'eng', 'label description of user account', 'aide', 'Manage the MDweb users account. this area provides to define the MDweb user rights (administrator, validator,..)'); INSERT INTO label VALUES ('gest_import', 'message_interface', 'eng', 'label description of import section', 'aide', 'provide the ISO 19115 XML importation XML from others sources (ArcGis, etc.) to the MDweb catalog. It provide also the attachment of quicklook and data files to the imported metadata sheets'); INSERT INTO label VALUES ('gest_import', 'message_interface', 'fra', 'libellé section importer', 'aide', 'Assure l''importation des références XML ISO 19115 provenant d''autres sources (ArcGIS). Assure aussi le rattachement des aperçus et des fichiers aux références'); INSERT INTO label VALUES ('menu_admin_para_lang', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Langue'); INSERT INTO label VALUES ('menu_admin_para_valpredef', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Valeurs prédéfinies'); INSERT INTO label VALUES ('titre_search_multi', 'message_interface', 'por', 'label message', 'message', 'Pesquisa multi-critérios'); INSERT INTO label VALUES ('menu_admin_para_lang', 'message_interface', 'eng', 'label admin menu', 'menu', 'Language'); INSERT INTO label VALUES ('menu_admin_para_valpredef', 'message_interface', 'eng', 'label admin menu', 'menu', 'Preset values'); INSERT INTO label VALUES ('menu_admin_util', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Utilisateurs'); INSERT INTO label VALUES ('menu_admin_para', 'message_interface', 'fra', 'libelle menu admin', 'menu', 'Options'); INSERT INTO label VALUES ('menu_admin_para', 'message_interface', 'eng', 'label admin menu', 'menu', 'Settings'); INSERT INTO label VALUES ('no_login', 'message_interface', 'por', 'label message', 'message', 'O seu email não se encontra na base de dados. Introduza o seu endereço preciso sff'); INSERT INTO label VALUES ('titre_utilisateurs', 'message_interface', 'fra', 'label users page administration', 'message', 'utilisateur'); INSERT INTO label VALUES ('contacts', 'message_interface', 'fra', '', 'message', 'Gestion des contacts'); INSERT INTO label VALUES ('lbl_keyword', 'message_interface', 'eng', '', 'message', 'Keyword'); INSERT INTO label VALUES ('query_org', 'message_interface', 'por', 'label message', 'message', 'Pesquisa sobre as instituições'); INSERT INTO label VALUES ('phone', 'message_interface', 'por', 'label message', 'message', 'Telefone'); INSERT INTO label VALUES ('query_multi_criteria', 'message_interface', 'por', 'label message', 'message', 'Pesquisa multi-critérios'); INSERT INTO label VALUES ('system_md_pass', 'message_interface', 'por', 'label message', 'message', 'Conta de utilizador Mdweb - a sua palavra-passe?'); INSERT INTO label VALUES ('titre_portail_ingrh', 'message_interface', 'por', 'titre accueil', 'accueil', 'Instituto Nacional de Gestão dos Recursos Hidricos'); INSERT INTO label VALUES ('keywords_manager', 'message_interface', 'eng', '', 'message', 'Keywords manager'); INSERT INTO label VALUES ('menu_gest_keywords', 'message_interface', 'eng', '', 'menu', 'Keywords manager'); INSERT INTO label VALUES ('position', 'message_interface', 'por', 'label message', 'message', 'Função'); INSERT INTO label VALUES ('inscription', 'message_interface', 'por', 'label message', 'message', 'Inscreva-se'); INSERT INTO label VALUES ('titre_manage_catalog', 'message_interface', 'por', 'label message', 'message', 'Gerir o catálogo'); INSERT INTO label VALUES ('no_observatory', 'message_interface', 'por', 'label message', 'message', 'Observatório não identificado'); INSERT INTO label VALUES ('titre_util', 'message_interface', 'por', 'label message', 'message', 'Utilitários'); INSERT INTO label VALUES ('titre_propos', 'message_interface', 'por', 'label message', 'message', 'A propósito do Mdweb'); INSERT INTO label VALUES ('register_md', 'message_interface', 'por', 'label message', 'message', 'Formulário de registro na MDweb'); INSERT INTO label VALUES ('message_md_pass', 'message_interface', 'por', 'label message', 'message', 'Forneça o seu email. A sua palavra-passe será enviada para esse endereço'); INSERT INTO label VALUES ('message_md_register', 'message_interface', 'por', 'label message', 'message', 'para obter um código de acesso necessário à gestão do catálogo, introduza as suas coordenadas e envie. Um email lhe será enviado com o seu login e palavra-passe, bem como o papel que lhe será atribuido pelo administrador'); INSERT INTO label VALUES ('titre_organisation', 'message_interface', 'por', 'label message', 'message', 'Organização'); INSERT INTO label VALUES ('titre_catalogues_ligne', 'message_interface', 'por', 'label message', 'message', 'Os catálogos on line'); INSERT INTO label VALUES ('titre_search_data', 'message_interface', 'por', 'label message', 'message', 'Pesquisar os dados'); INSERT INTO label VALUES ('titre_search_type_data', 'message_interface', 'por', 'label message', 'message', 'Por tipo de dados'); INSERT INTO label VALUES ('no_user_valid', 'message_interface', 'por', 'label message', 'message', 'A sua conta ainda não é válida'); INSERT INTO label VALUES ('title_present', 'message_interface', 'por', 'label message', 'message', 'Apresentação MDweb: ferramenta de indexação e de pesquisa de informaçãom ambiental'); INSERT INTO label VALUES ('text_present_top', 'message_interface', 'por', 'label message', 'message', 'Mdweb: ferramenta de indexação e de pesquisa de informaçãom ambiental'); INSERT INTO label VALUES ('titre_doc', 'message_interface', 'por', 'label message', 'message', 'Ajuda à consulta'); INSERT INTO label VALUES ('titre_search_last_ref', 'message_interface', 'por', 'label message', 'message', 'Novas referencias'); INSERT INTO label VALUES ('polit_publi_0', 'elmnt_liste_interface', 'por', 'Etiquette Automatique', 'code', 'Automático'); INSERT INTO label VALUES ('doc_what_suite', 'message_interface', 'por', 'label message', 'message', 'Para cada lista proposta, poderá seleccionar mais temas ou palavras-chave. Seleccione numa das listas acima, um tema ou palavra-chave e a seguir valide. Execute a mesma operação para as seguintes'); INSERT INTO label VALUES ('doc_catalog_suite', 'message_interface', 'por', 'label message', 'message', 'Poderá seccionar vários catálogos. Seleccione na lista abaixo um catálogo e a seguir valide. Execute a mesma operação para os seguintes'); INSERT INTO label VALUES ('doc_gabarit', 'message_interface', 'por', 'label message', 'message', 'Que tipo de dados? Escolha o tipo de dados sobre o qual deverá realizar a pesquisa. Por defeito, a pesquisa se realizará sobre todos os tipos'); INSERT INTO label VALUES ('titre_search_obs', 'message_interface', 'por', 'label message', 'message', 'Por catálogo'); INSERT INTO label VALUES ('code', 'message_interface', 'por', 'label message', 'message', 'Código postal'); INSERT INTO label VALUES ('role', 'liste_interface', 'por', 'label message', 'message', 'Papel'); INSERT INTO label VALUES ('password_forget', 'message_interface', 'por', 'label message', 'message', 'Palavra-passe esquecida'); INSERT INTO label VALUES ('system_md_entry', 'message_interface', 'por', 'label message', 'message', 'MDweb'); INSERT INTO label VALUES ('query_obs', 'message_interface', 'por', 'label message', 'message', 'Pesquisa sobre os catálogos'); INSERT INTO label VALUES ('query_last_ref', 'message_interface', 'por', 'label message', 'message', 'Pesquisa de novas referências'); INSERT INTO label VALUES ('iso_lang_code_por', 'elmnt_liste_interface', 'eng', '', 'code', 'portuguese'); INSERT INTO label VALUES ('titre_map', 'message_interface', 'por', 'label message', 'message', 'Carta numérica'); INSERT INTO label VALUES ('query_doc', 'message_interface', 'por', 'label message', 'message', 'Pesquisa das apresentações'); INSERT INTO label VALUES ('query_map', 'message_interface', 'por', 'label message', 'message', 'Pesquisa de cartas numéricas'); INSERT INTO label VALUES ('query_base', 'message_interface', 'por', 'label message', 'message', 'Pesquisa de BD Relacionais'); INSERT INTO label VALUES ('query_raster', 'message_interface', 'por', 'label message', 'message', 'Pesquisa de Imagens raster'); INSERT INTO label VALUES ('bt_reset_all', 'message_interface', 'por', 'bouton reinitialisation totale', 'message', 'Reiniciar tudo'); INSERT INTO label VALUES ('back_modif', 'message_interface', 'por', 'Boutton retour liste des fiches', 'message', 'Voltar à lista de fichas'); INSERT INTO label VALUES ('code_pays', 'message_interface', 'por', 'Code pays', 'message', 'Código do país (consultar ISO 3166)'); INSERT INTO label VALUES ('date_interface_search', 'message_interface', 'por', 'date de creation du jeu de données', 'message', 'Data da criação do conjunto de dados'); INSERT INTO label VALUES ('email', 'message_interface', 'por', 'Etiquette adresse email', 'message', 'Endereço de email'); INSERT INTO label VALUES ('ajouter', 'message_interface', 'por', 'Etiquette ajouter', 'message', 'Adicionar'); INSERT INTO label VALUES ('ajouter_langue', 'message_interface', 'por', 'Etiquette Ajouter une autre langue', 'message', 'Adicionar uma outra lingua'); INSERT INTO label VALUES ('archive_attachee', 'message_interface', 'por', 'Etiquette ''archive zip attachée''', 'message', 'Arquivo zip anexado'); INSERT INTO label VALUES ('polit_publi_1', 'elmnt_liste_interface', 'por', 'Etiquette Manuelle', 'code', 'Manual'); INSERT INTO label VALUES ('langue', 'liste_interface', 'por', 'Etiquette Langues disponibles', 'code', 'Línguas disponíveis'); INSERT INTO label VALUES ('langue_eng', 'elmnt_liste_interface', 'por', 'Etiquette anglais', 'code', 'inglês'); INSERT INTO label VALUES ('attacher_archive_ress', 'message_interface', 'por', 'Etiquette ''attacher archive ressources''', 'message', 'Anexar os ficheiros de dados à ficha'); INSERT INTO label VALUES ('fils_attach', 'message_interface', 'por', 'Etiquette ''attacher fiche fille''.', 'message', 'Anexar uma ou mais fichas filhas'); INSERT INTO label VALUES ('parent_attach', 'message_interface', 'por', 'Etiquette ''attacher fiche parent''.', 'message', 'Anexar uma ou mais fichas de origem'); INSERT INTO label VALUES ('com_denominator_124', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Entier > 0. ce nombre correspond au dénominateur de la fraction.'); INSERT INTO label VALUES ('attacher_img_ress', 'message_interface', 'por', 'Etiquette ''attacher quicklook''', 'message', 'Anexar uma vista rápida à ficha'); INSERT INTO label VALUES ('attacher', 'message_interface', 'por', 'Etiquette ''attacher''.', 'message', 'Anexar'); INSERT INTO label VALUES ('observatoire', 'message_interface', 'por', 'Etiquette catalogue', 'message', 'Catálogo'); INSERT INTO label VALUES ('contact', 'message_interface', 'por', 'label Contact', 'message', 'Manega sus contactos (livro de endereço)'); INSERT INTO label VALUES ('modif_crit', 'message_interface', 'por', 'Etiquette ''changer les critères''.', 'message', 'Mudar os critérios'); INSERT INTO label VALUES ('code_langue', 'message_interface', 'por', 'Etiquette Code de la langue', 'message', 'Código da língua (3 letras)'); INSERT INTO label VALUES ('code_observatoire', 'message_interface', 'por', 'Etiquette code observatoire', 'message', 'Código do catálogo'); INSERT INTO label VALUES ('code_organisme', 'message_interface', 'por', 'Etiquette code organisme', 'message', 'código do organismo'); INSERT INTO label VALUES ('conf_mdp', 'message_interface', 'por', 'Etiquette confirmer mot de passe', 'message', 'Confirmar a palavra-passe'); INSERT INTO label VALUES ('label', 'message_interface', 'por', 'Etiquette ''contenu du libellé''', 'message', 'Texto da etiqueta'); INSERT INTO label VALUES ('create_MD_title', 'message_interface', 'por', 'Etiquette ''création d''une fiche de métadonnées''', 'message', 'Criação de uma ficha de metadados'); INSERT INTO label VALUES ('crit_recherche', 'message_interface', 'por', 'Etiquette critères de recherche', 'message', 'Critérios de pesquisa seleccionados'); INSERT INTO label VALUES ('date_debut', 'message_interface', 'por', 'Etiquette date de début', 'message', 'Data de inicio'); INSERT INTO label VALUES ('date_fin', 'message_interface', 'por', 'Etiquette date de fin', 'message', 'Data do fim'); INSERT INTO label VALUES ('date_version', 'message_interface', 'por', 'Etiquette Date de la version', 'message', 'Data da versão'); INSERT INTO label VALUES ('update_date', 'message_interface', 'por', 'Etiquette ''date de modification''', 'message', 'Data de modificação'); INSERT INTO label VALUES ('date_valid', 'message_interface', 'por', 'Etiquette ''date de validation''.', 'message', 'Data de validação'); INSERT INTO label VALUES ('maj_contact', 'message_interface', 'por', 'Etiquette ''date maj contact''', 'message', 'Data de actualização dos contactos'); INSERT INTO label VALUES ('maj_predef', 'message_interface', 'por', 'Etiquette ''date maj prédéfinies''', 'message', 'Data de actualização do conjunto de valores pré-definidos'); INSERT INTO label VALUES ('maj_default', 'message_interface', 'por', 'Etiquette ''date maj valeurs prédéfinies''', 'message', 'Data de actualização dos valores por defeito'); INSERT INTO label VALUES ('confirm_detach_fils', 'message_interface', 'por', 'Etiquette de confirmation pour le détachement d''une fiche fille.', 'message', 'Tem a certeza que quer desligar a ficha filha'); INSERT INTO label VALUES ('confirm_detach_parent', 'message_interface', 'por', 'Etiquette de confirmation pour le détachement d''une fiche parent.', 'message', 'Tem a certeza que quer desligar a ficha de origem'); INSERT INTO label VALUES ('confirm_envoi_fic_ress', 'message_interface', 'por', 'Etiquette de confirmation pour l''envoi des fichiers ressources', 'message', 'Tem a certeza que quer enviar estes ficheiros? ATENÇÃO!! Isto suprimirá os ficheiros já ligados a esta ficha'); INSERT INTO label VALUES ('defn', 'message_interface', 'por', 'Etiquette ''définition du libellé''', 'message', 'Definição da etiqueta'); INSERT INTO label VALUES ('derniere_maj', 'message_interface', 'por', 'Etiquette ''Dernière mise à jour''', 'message', 'Ultima actualização'); INSERT INTO label VALUES ('com_spatialRepresentationType_58', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_SpatialRepresentationTypeCode)'); INSERT INTO label VALUES ('detacher', 'message_interface', 'por', 'Etiquette ''détacher''.', 'message', 'Desligar'); INSERT INTO label VALUES ('effectuee', 'message_interface', 'por', 'Etiquette effectuée', 'message', 'Efectuado'); INSERT INTO label VALUES ('en_cours', 'message_interface', 'por', 'Etiquette en cours', 'message', 'A decorrer'); INSERT INTO label VALUES ('submit', 'message_interface', 'por', 'Etiquette ''Envoyer''.', 'message', 'Enviar'); INSERT INTO label VALUES ('erreur_envoi_fic_ress', 'message_interface', 'por', 'Etiquette ''erreur envoi fichiers ressources''', 'message', 'Erro aquando do envio dos ficheiros de dados'); INSERT INTO label VALUES ('etat_niv_saisie', 'message_interface', 'por', 'Etiquette état des niveaux de saisie', 'message', 'Estado dos níveis de preenchimento'); INSERT INTO label VALUES ('fils_attach2', 'message_interface', 'por', 'Etiquette ''fiche fille attachée''.', 'message', 'Lista de fichas filhas anexadas'); INSERT INTO label VALUES ('update_fiche', 'message_interface', 'por', 'Etiquette fiche mise à jour', 'message', 'Ficha actualizada o'); INSERT INTO label VALUES ('parent_attach2', 'message_interface', 'por', 'Etiquette ''fiche parent attachée''.', 'message', 'Lista das fichas de origem anexadas'); INSERT INTO label VALUES ('mess_detach_parent', 'message_interface', 'por', 'Etiquette ''fiche parent détachée''.', 'message', 'A ficha de origem foi desanexada'); INSERT INTO label VALUES ('mess_ajout_fils', 'message_interface', 'por', 'Etiquette ''fiches filles attachées''.', 'message', 'A ficha ou as fichas filha(s) foram anexadas'); INSERT INTO label VALUES ('mess_ajout_parent', 'message_interface', 'por', 'Etiquette ''fiches parents attachées''.', 'message', 'A ficha ou as fichas maiores foram anexadas'); INSERT INTO label VALUES ('import_ressources', 'message_interface', 'fra', 'message', 'message', 'Rattacher des données (fichiers) à une fiche de métadonnées'); INSERT INTO label VALUES ('titre_gabarits', 'message_interface', 'por', 'Etiquette gabarits pour le titre des pages de l''admin', 'message', 'Modelos'); INSERT INTO label VALUES ('autre_recherche', 'message_interface', 'por', 'Etiquette lancer une autre recherche', 'message', 'Começar uma nova pesquisa'); INSERT INTO label VALUES ('nouvelle_recherche', 'message_interface', 'por', 'Etiquette lancer une autre recherche', 'message', 'Começar outra pesquisa'); INSERT INTO label VALUES ('languages', 'message_interface', 'por', 'Etiquette Langues', 'message', 'Línguas'); INSERT INTO label VALUES ('titre_libelles', 'message_interface', 'por', 'Etiquette libellés pour le titre des pages de l''admin', 'message', 'Etiquetas'); INSERT INTO label VALUES ('login', 'message_interface', 'por', 'Etiquette login', 'message', 'Login'); INSERT INTO label VALUES ('contact', 'message_interface', 'fra', 'label Contact', 'message', 'Gestion de vos contacts (annuaire de coordonnées)'); INSERT INTO label VALUES ('login_sais', 'message_interface', 'por', 'Etiquette ''mise à jour par''.', 'message', 'Actualização por'); INSERT INTO label VALUES ('modifier', 'message_interface', 'por', 'Etiquette modifier', 'message', 'Modificar'); INSERT INTO label VALUES ('mdp', 'message_interface', 'por', 'Etiquette mot de passe', 'message', 'Palavra passe'); INSERT INTO label VALUES ('nom', 'message_interface', 'por', 'Etiquette nom', 'message', 'Apelido'); INSERT INTO label VALUES ('nom_langue', 'message_interface', 'por', 'Etiquette Nom de la langue', 'message', 'Nome da lingua em inglês (mínimo 5 letras)'); INSERT INTO label VALUES ('nom_observatoire', 'message_interface', 'por', 'Etiquette Nom du catalogue', 'message', 'Nome do catálogo'); INSERT INTO label VALUES ('nom_fichier', 'message_interface', 'por', 'Etiquette ''Nom du fichier''', 'message', 'Nome do ficheiro'); INSERT INTO label VALUES ('id_foreign_table', 'message_interface', 'por', 'Etiquette ''nom du libellé''', 'message', 'Nome da etiqueta'); INSERT INTO label VALUES ('no', 'message_interface', 'por', 'Etiquette ''non''', 'message', 'Não'); INSERT INTO label VALUES ('niv_pas_complet', 'message_interface', 'por', 'Etiquette non terminé', 'message', 'Não concluido'); INSERT INTO label VALUES ('confirm_ajout_langue', 'message_interface', 'por', 'Etiquette Nouvelle langue ajoutée', 'message', 'A nova língua foi adicionada'); INSERT INTO label VALUES ('titre_organisme', 'message_interface', 'por', 'Etiquette organisations pour le titre des pages de l''admin', 'message', 'das organizações'); INSERT INTO label VALUES ('titre_observatoires', 'message_interface', 'por', 'Etiquette organisations pour le titre des pages de l''admin', 'message', 'Catálogos'); INSERT INTO label VALUES ('yes', 'message_interface', 'por', 'Etiquette ''oui''', 'message', 'Sim'); INSERT INTO label VALUES ('titre_param_outil', 'message_interface', 'por', 'Etiquette Paramétrage de MDweb', 'message', 'Parametrização de Mdweb'); INSERT INTO label VALUES ('params_gal', 'message_interface', 'por', 'Etiquette paramètres généraux', 'message', 'Parâmetros gerais'); INSERT INTO label VALUES ('mess_no_attach_fils', 'message_interface', 'por', 'Etiquette ''pas de fiches filles à attacher''.', 'message', 'Não existem fichas filhas para anexar'); INSERT INTO label VALUES ('mess_no_attach_parent', 'message_interface', 'por', 'Etiquette ''pas de fiches parents à attacher''.', 'message', 'Não existem fichas de origem para anexar'); INSERT INTO label VALUES ('pays', 'message_interface', 'por', 'Etiquette pays', 'message', 'país'); INSERT INTO label VALUES ('accueil_saisie_fiche', 'message_interface', 'por', 'Etiquette pour la page d''accueil de l''interface de saisie.', 'message', 'Para preencher os valores seleccionar uma secção no menu da esquerda'); INSERT INTO label VALUES ('periode_du_au', 'message_interface', 'por', 'Etiquette pour la période', 'message', 'Periodo de XX a YY'); INSERT INTO label VALUES ('sauv_fic_ress', 'message_interface', 'por', 'Etiquette pour la sauvegarde des fichiers ressources', 'message', 'Ficheiros guardados num arquivo zip'); INSERT INTO label VALUES ('afficher', 'message_interface', 'por', 'Etiquette pour le bouton afficher', 'message', 'Gravar'); INSERT INTO label VALUES ('fermer', 'message_interface', 'por', 'Etiquette pour le bouton fermer', 'message', 'Fechar'); INSERT INTO label VALUES ('fiches_attachees', 'message_interface', 'por', 'Etiquette pour le bouton fiches attachées', 'message', 'Fichas anexadas'); INSERT INTO label VALUES ('mod_creation_contact', 'message_interface', 'por', 'Etiquette pour le mode de création d''un contact', 'message', 'Criar a partir de um contacto existênte?'); INSERT INTO label VALUES ('mod_creation_predef', 'message_interface', 'por', 'Etiquette pour le mode de création d''un jeu de valeurs prédéfinies', 'message', 'Criar a partir de um conjunto de valores existentes prédefinidos?'); INSERT INTO label VALUES ('mod_creation_MD', 'message_interface', 'por', 'Etiquette pour le mode de création d''une fiche de métadonnées', 'message', 'Criar a partir duma ficha existente'); INSERT INTO label VALUES ('erreur_no_MD', 'message_interface', 'por', 'Etiquette pour l''erreur quand il n''y a pas de métadonnées qui correspondent aux critères choisis.', 'message', 'Não há nenhuma ficha de metadados que corresponde aos seus critérios'); INSERT INTO label VALUES ('reponses_a_sur', 'message_interface', 'por', 'Etiquette pour les réponses dans la barre de recherche', 'message', 'Respostas XX a YY sobre ZZ'); INSERT INTO label VALUES ('prenom', 'message_interface', 'por', 'Etiquette prénom', 'message', 'Nome'); INSERT INTO label VALUES ('prive', 'message_interface', 'por', 'Etiquette ''Privé''', 'message', 'Privado'); INSERT INTO label VALUES ('public', 'message_interface', 'por', 'Etiquette ''Public''', 'message', 'Público'); INSERT INTO label VALUES ('image_attach', 'message_interface', 'por', 'Etiquette ''quicklook attaché''', 'message', 'Vista rápida anexada'); INSERT INTO label VALUES ('retour', 'message_interface', 'por', 'Etiquette retour', 'message', 'Voltar'); INSERT INTO label VALUES ('retour_acc_outil', 'message_interface', 'por', 'Etiquette retour à l''accueil de MDweb', 'message', 'Acolhimento'); INSERT INTO label VALUES ('fiche', 'message_interface', 'por', 'Etiquette saisie accueil creation fiche', 'message', 'Ficha'); INSERT INTO label VALUES ('saisie_complete', 'message_interface', 'por', 'Etiquette ''saisie terminée?''.', 'message', 'Preenchimento terminado ?'); INSERT INTO label VALUES ('terminee', 'message_interface', 'por', 'Etiquette ''saisie terminée?''.', 'message', 'Terminado'); INSERT INTO label VALUES ('non_terminee', 'message_interface', 'por', 'Etiquette ''saisie terminée?''.', 'message', 'Não terminado'); INSERT INTO label VALUES ('mess_select_parent', 'message_interface', 'por', 'Etiquette ''sélectionner parent''.', 'message', 'Queira seccionar uma ou mais ficha(s) de origem para anexar'); INSERT INTO label VALUES ('mess_select_fils', 'message_interface', 'por', 'Etiquette ''sélectionner parent''.', 'message', 'Queira seccionar uma ou mais ficha(s) filha(s) para anexar'); INSERT INTO label VALUES ('selectionner', 'message_interface', 'por', 'Etiquette ''sélectionner''.', 'message', 'Selecionar'); INSERT INTO label VALUES ('supprimer', 'message_interface', 'por', 'Etiquette supprimer', 'message', 'Suprimir'); INSERT INTO label VALUES ('taille_decomp', 'message_interface', 'por', 'Etiquette ''Taille décompressé''', 'message', 'Tamanho não comprimido'); INSERT INTO label VALUES ('telecharg', 'message_interface', 'por', 'Etiquette ''Téléchargement''', 'message', 'Download'); INSERT INTO label VALUES ('telecharg_fic_ress', 'message_interface', 'por', 'Etiquette ''télécharger fichiers ressources''', 'message', 'Fazer dowload dos ficheiros de dados anexados'); INSERT INTO label VALUES ('niv_complet', 'message_interface', 'por', 'Etiquette terminé', 'message', 'Concluido'); INSERT INTO label VALUES ('sheet_title', 'message_interface', 'por', 'Etiquette ''titre de la fiche''', 'message', 'Título da ficha'); INSERT INTO label VALUES ('tous', 'message_interface', 'por', 'Etiquette tous', 'message', 'Todos'); INSERT INTO label VALUES ('fils_type', 'message_interface', 'por', 'Etiquette ''type du fils''.', 'message', 'Tipo de filhos'); INSERT INTO label VALUES ('parent_type', 'message_interface', 'por', 'Etiquette ''type du parent''.', 'message', 'Tipo da ficha de origem'); INSERT INTO label VALUES ('titre_portail_demo', 'message_interface', 'eng', 'label bandeau demo', 'accueil', 'MDweb demo tool'); INSERT INTO label VALUES ('use_template', 'message_interface', 'por', 'Etiquette ''utiliser comme modèle''.', 'message', 'Utilizar como modelo'); INSERT INTO label VALUES ('titre_val_predef', 'message_interface', 'por', 'Etiquette valeurs prédéfinies pour le titre des pages de l''admin', 'message', 'Valores pré-definidos'); INSERT INTO label VALUES ('niv_valid', 'message_interface', 'por', 'Etiquette ''validation''.', 'message', 'Validação'); INSERT INTO label VALUES ('bt_valid', 'message_interface', 'por', 'etiquette ''valider''', 'message', 'Validar'); INSERT INTO label VALUES ('version', 'message_interface', 'por', 'Etiquette Version de MDweb', 'message', 'Versão do Mdweb'); INSERT INTO label VALUES ('voir_fiche_MD', 'message_interface', 'por', 'Etiquette ''voir fiche métadonnées''', 'message', 'Ver a ficha de metadados'); INSERT INTO label VALUES ('zone_admin', 'message_interface', 'por', 'Etiquette zone administration pour le titre des pages de l''admin', 'message', 'Zona da administração'); INSERT INTO label VALUES ('export_effectue', 'message_interface', 'por', 'Export XML effectué Label', 'message', 'Exportação XML efectuada'); INSERT INTO label VALUES ('export_en_cours', 'message_interface', 'por', 'Export XML en cours Label', 'message', 'Exportação XML a decorrer'); INSERT INTO label VALUES ('export_non_valide', 'message_interface', 'por', 'Export XML non valide Label', 'message', 'Ficha inválida para exportação'); INSERT INTO label VALUES ('fiche_2', 'message_interface', 'por', 'Fiche Label', 'message', 'Ficha'); INSERT INTO label VALUES ('com_denominator_124', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Integer > 0. This number is the denominator of the fraction'); INSERT INTO label VALUES ('nord', 'message_interface', 'por', 'labecardinalités', 'message', 'N'); INSERT INTO label VALUES ('est', 'message_interface', 'por', 'labecardinalités', 'message', 'E'); INSERT INTO label VALUES ('sud', 'message_interface', 'por', 'labecardinalités', 'message', 'S'); INSERT INTO label VALUES ('num_fiche_xml', 'message_interface', 'por', 'Label', 'message', 'Ficha XML nº'); INSERT INTO label VALUES ('nb_fiche_import', 'message_interface', 'por', 'Label', 'message', 'Numero de fichas a importar'); INSERT INTO label VALUES ('erreur_envoi_xml', 'message_interface', 'por', 'Label', 'message', 'Erro de transmissão dos ficheiros XML'); INSERT INTO label VALUES ('mess_fournir_precisions', 'message_interface', 'por', 'Label', 'message', 'Forneça as seguintes precisões'); INSERT INTO label VALUES ('mess_avert_maj_xml', 'message_interface', 'por', 'Label', 'message', 'ATENÇÃO!! Uma ou mais ficha(s) já se encontram na base'); INSERT INTO label VALUES ('aucune_fiche_import', 'message_interface', 'por', 'Label', 'message', 'não havia mais nenhuma ficha a importar'); INSERT INTO label VALUES ('mess_autres_fiches_import', 'message_interface', 'por', 'Label', 'message', 'importar outras fichas XML'); INSERT INTO label VALUES ('mess_fiche_xml_valides', 'message_interface', 'por', 'Label', 'message', 'Todas as fichas XML foram verificadas e são válidas. Clique sobre o botão para iniciar a importação'); INSERT INTO label VALUES ('mess_confirm_import', 'message_interface', 'por', 'Label', 'message', 'As fichas XML seguíntes foram importadas do catálogo'); INSERT INTO label VALUES ('provenance_obs', 'message_interface', 'por', 'Label', 'message', 'Catálogo de destino'); INSERT INTO label VALUES ('image', 'message_interface', 'por', 'Label', 'message', 'vista rápida'); INSERT INTO label VALUES ('ressources', 'message_interface', 'por', 'Label', 'message', 'Ficheiros de dados'); INSERT INTO label VALUES ('bt_reset', 'message_interface', 'por', 'label bouton reinit', 'message', 'Reiniciar'); INSERT INTO label VALUES ('ouest', 'message_interface', 'por', 'label cardinalités', 'message', 'O'); INSERT INTO label VALUES ('select_list_below', 'message_interface', 'por', 'Label choisir dans la liste ci-dessous', 'message', 'Escolha um XX na lista abaixo'); INSERT INTO label VALUES ('predef_default', 'message_interface', 'por', 'label Contact par défaut', 'message', 'Conjunto de valores pré-definidos por defeito'); INSERT INTO label VALUES ('contact_default', 'message_interface', 'por', 'label Contact par défaut', 'message', 'Contacto por defeito'); INSERT INTO label VALUES ('export_date', 'message_interface', 'por', 'Label Date export', 'message', 'Ficha exportada o'); INSERT INTO label VALUES ('domaine', 'message_interface', 'por', 'Label Domaine', 'message', 'Domínio'); INSERT INTO label VALUES ('export_fiche_select', 'message_interface', 'por', 'Label Exporter fiches select', 'message', 'Exportar as fichas selecionadas'); INSERT INTO label VALUES ('import', 'message_interface', 'por', 'Label Importer', 'message', 'Importar'); INSERT INTO label VALUES ('inactif', 'message_interface', 'por', 'Label Inactif', 'message', 'Inactivo'); INSERT INTO label VALUES ('lancer', 'message_interface', 'por', 'Label Lancer', 'message', 'Executar'); INSERT INTO label VALUES ('predef_name', 'message_interface', 'por', 'label nom Contact', 'message', 'Nome do conjunto de valores pré-definidos'); INSERT INTO label VALUES ('contact_name', 'message_interface', 'por', 'label nom Contact', 'message', 'Nome do contacto'); INSERT INTO label VALUES ('query_bdgeo', 'message_interface', 'por', 'label recherche BD geo', 'message', 'Pesquisa de BD Geográficas'); INSERT INTO label VALUES ('query_cartepapier', 'message_interface', 'por', 'label recherche carte papier', 'message', 'Pesquisa de mapas em papel'); INSERT INTO label VALUES ('query_classeur', 'message_interface', 'por', 'label recherche classeur', 'message', 'Pesquisa de classificadores - tabelas BD'); INSERT INTO label VALUES ('query_vecteur', 'message_interface', 'por', 'label recherche vecteur', 'message', 'Pesquisa Vector'); INSERT INTO label VALUES ('restants', 'message_interface', 'por', 'Label restants', 'message', 'Falta'); INSERT INTO label VALUES ('telechargement', 'message_interface', 'por', 'Label Téléchargement', 'message', 'Download'); INSERT INTO label VALUES ('terme', 'message_interface', 'por', 'Label Terme', 'message', 'Termo'); INSERT INTO label VALUES ('theme', 'message_interface', 'por', 'Label Thème', 'message', 'Tema'); INSERT INTO label VALUES ('thesaurus', 'message_interface', 'por', 'Label Thésaurus', 'message', 'Thesaurus'); INSERT INTO label VALUES ('iso_lang_code_por', 'elmnt_liste_interface', 'por', '', 'code', 'português'); INSERT INTO label VALUES ('titre_bdgeo', 'message_interface', 'por', 'label titre BD géo', 'message', 'BD Geográfica'); INSERT INTO label VALUES ('titre_cartepapier', 'message_interface', 'por', 'label titre carte papier', 'message', 'Carta em papel'); INSERT INTO label VALUES ('titre_classeur', 'message_interface', 'por', 'label titre classeur', 'message', 'Classificador - Tabela BD'); INSERT INTO label VALUES ('titre_raster', 'message_interface', 'por', 'label titre raster', 'message', 'Imagem - Raster'); INSERT INTO label VALUES ('titre_vecteur', 'message_interface', 'por', 'label titre vecteur', 'message', 'Vector'); INSERT INTO label VALUES ('authentif', 'message_interface', 'por', 'libellé menu accueil', 'message', 'Autenticação'); INSERT INTO label VALUES ('no_image', 'message_interface', 'por', 'message ''ce n''est pas un quicklook''', 'message', 'Não é uma vista rápida'); INSERT INTO label VALUES ('no_zip', 'message_interface', 'por', 'message ''ce n''est pas une archive zip''', 'message', 'Este não é um arquivo zip'); INSERT INTO label VALUES ('mess_attente', 'message_interface', 'por', 'Message d''attente Label', 'message', 'Espere alguns instantes'); INSERT INTO label VALUES ('confirm_modif_polit_publi', 'message_interface', 'por', 'Message d''avertissement pour le changement de la règle de publication', 'message', 'tem a certeza que quer passar a regra de publicação para "Automático"? ATENÇÃO: isto publicará todas as fichas não publicadas'); INSERT INTO label VALUES ('confirm_suppr_langue', 'message_interface', 'por', 'Message d''avertissement pour l''effacement d''une langue', 'message', 'Tem a certeza que pretende suprimir a lingua XX de MDweb? ATENÇÃO: isto poderá afectar todas as etiquetas nesta lingua e os seus utilizadores serão trocados por ingles'); INSERT INTO label VALUES ('mess_ajout_base', 'message_interface', 'por', 'Message de confirmation après ajout de valeurs dans la base', 'message', 'Os valores foram adicinados na base de dados'); INSERT INTO label VALUES ('mess_modif_base', 'message_interface', 'por', 'Message de confirmation après modification de valeurs dans la base', 'message', 'Os valores foram modificados na base de dados'); INSERT INTO label VALUES ('mess_suppr_base', 'message_interface', 'por', 'Message de confirmation après suppression de valeurs de la base', 'message', 'Os valores foram suprimidos da base de dados'); INSERT INTO label VALUES ('mess_modif_polit_publi', 'message_interface', 'por', 'Message de confirmation pour la mise à jour de la règle de publication', 'message', 'A regra de publicação foi modificada'); INSERT INTO label VALUES ('mess_modif_prefer_util', 'message_interface', 'por', 'Message de confirmation pour la mise à jour des préférences personnelles', 'message', 'As preferências pessoais foram actualizadas.
saia e reinicie para fazer efeito'); INSERT INTO label VALUES ('mess_suppr_fiche', 'message_interface', 'por', 'Message de confirmation pour la suppression d''une fiche.', 'message', 'A ficha e todos os seus campos foram suprimidas de base'); INSERT INTO label VALUES ('mess_suppr_langue', 'message_interface', 'por', 'Message de confirmation pour l''effacement d''une langue', 'message', 'A lingua XX e todas as suas etiquetas foram suprimidas do Mdweb'); INSERT INTO label VALUES ('verif_nouv_langue', 'message_interface', 'por', 'Message de vérification pour la création d''une langue', 'message', 'queira entrar com pelo menos 5 letras do nome da lingua e com exactamente 3 para o seu código'); INSERT INTO label VALUES ('mess_erreur_key_modif_base', 'message_interface', 'por', 'Message d''erreur lors de la modification de valeurs de la base', 'message', 'Erro de constrangimentos de intergração aquando da modificação'); INSERT INTO label VALUES ('mess_erreur_key_delete_base', 'message_interface', 'por', 'Message d''erreur lors de la suppression de valeurs de la base', 'message', 'Erro de constrangimentos de intergridade aquando da supressão'); INSERT INTO label VALUES ('mess_erreur_key_primaire_base', 'message_interface', 'por', 'Message d''erreur lors insertion nouvel organisme', 'message', 'Valores já existentes'); INSERT INTO label VALUES ('erreur_suppr_fiche_pere', 'message_interface', 'por', 'Message d''erreur pour empêcher la suppression d''une fiche si elle est père d''une autre.', 'message', 'Supressão interdita: esta ficha encontra-se ligada a outras fichas'); INSERT INTO label VALUES ('erreur_doublon_cleprim', 'message_interface', 'por', 'Message d''erreur pour empêcher l''insertion de doublons dans la clé primaire d''une table.', 'message', 'Atenção! Preencha outro valor para:'); INSERT INTO label VALUES ('erreur_aucune_modif', 'message_interface', 'por', 'Message d''erreur pour indiquer qu''il n''y a rien à mettre à jour', 'message', 'Não há nenhum campo a ser actualizado'); INSERT INTO label VALUES ('erreur_saisie_correspMdp', 'message_interface', 'por', 'Message d''erreur pour la correspondance entre le mot de passe et sa confirmation', 'message', 'A palavra passe e a sua confirmação não correspondem, preencha de novo'); INSERT INTO label VALUES ('erreur_select_label', 'message_interface', 'por', 'Message d''erreur pour la recherche d''une liste de labels', 'message', 'Não existe nenhuma etiqueta correspondente aos critérios escolhidos'); INSERT INTO label VALUES ('erreur_saisie_longueurMax', 'message_interface', 'por', 'Message d''erreur pour la saisie de la longueur max d''un champ texte', 'message', 'Preencha menos caracteres para o campo'); INSERT INTO label VALUES ('erreur_saisie_longueurMin', 'message_interface', 'por', 'Message d''erreur pour la saisie de la longueur min d''un champ texte', 'message', 'Preencha mais caracteres para o campo'); INSERT INTO label VALUES ('refer_biblio', 'gabarit_mtd', 'eng', '', 'gabarit', 'Bibliographical reference'); INSERT INTO label VALUES ('erreur_saisie_oblig', 'message_interface', 'por', 'Message d''erreur pour la saisie d''un champ obligatoire', 'message', 'Preencha o campo obrigatório'); INSERT INTO label VALUES ('erreur_saisie_entier', 'message_interface', 'por', 'Message d''erreur pour la saisie d''un entier', 'message', 'Preencha um valor inteiro no campo'); INSERT INTO label VALUES ('erreur_saisie_flottant', 'message_interface', 'por', 'Message d''erreur pour la saisie d''un réel', 'message', 'Preencha um valore numérico no campo'); INSERT INTO label VALUES ('erreur_saisie_email', 'message_interface', 'por', 'Message d''erreur pour la saisie d''une adresse email', 'message', 'Preencha um endereço email válido para o campo'); INSERT INTO label VALUES ('erreur_saisie_dateValide', 'message_interface', 'por', 'Message d''erreur pour la saisie d''une date valide', 'message', 'Preencha uma data válida para o campo'); INSERT INTO label VALUES ('erreur_ajout_langue', 'message_interface', 'por', 'Message d''erreur pour l''ajout d''une langue', 'message', 'O código da língua já existe. Escolha um código diferente para a sua nova'); INSERT INTO label VALUES ('erreur_no_supp_predef', 'message_interface', 'por', 'message d''erreur suppression des valeurs prédéfinies', 'message', 'Impossível suprimir estes valores prédefinidos: é um conjunto de valores prédefinidos por defeito'); INSERT INTO label VALUES ('langue_fra', 'elmnt_liste_interface', 'por', 'Etiquette français', 'code', 'francês'); INSERT INTO label VALUES ('erreur_no_supp_contact', 'message_interface', 'por', 'message d''erreur suppression du contact', 'message', 'Impossível suprimir este contacto: É o contacto por defeito'); INSERT INTO label VALUES ('select_type_label', 'message_interface', 'por', 'Message d''indication pour la sélection d''un type de label', 'message', 'Selecione um tipo de etiqueta acima'); INSERT INTO label VALUES ('select_type_label_ajout', 'message_interface', 'por', 'Message d''indication pour la sélection d''un type de label et d''une langue', 'message', 'Selecione um tipo de etiqueta e uma lingua, acima'); INSERT INTO label VALUES ('erreur_no_contact', 'message_interface', 'por', 'message erreur pas de contact', 'message', 'Não existem contactos'); INSERT INTO label VALUES ('erreur_no_predef', 'message_interface', 'por', 'message erreur pas de contact', 'message', 'Não existem valores prédefinidos'); INSERT INTO label VALUES ('confirm_suppr_label', 'message_interface', 'por', 'Message pour la boîte Javascript de confirmation de la supression d''un libellé', 'message', 'Tem a certeza que deseja suprimir a etiqueta'); INSERT INTO label VALUES ('confirm_suppr_util', 'message_interface', 'por', 'Message pour la boîte Javascript de confirmation de la supression d''un utilisateur', 'message', 'Tem a certeza que deseja suprimir o utilizador'); INSERT INTO label VALUES ('confirm_suppr_fiche', 'message_interface', 'por', 'Message pour la boîte Javascript de confirmation de la supression d''une fiche', 'message', 'Tem a certeza que quer suprimir a ficha'); INSERT INTO label VALUES ('page_non_disponible', 'message_interface', 'por', 'Message pour les pages non disponibles', 'message', 'Indisponivel no momento'); INSERT INTO label VALUES ('mots_titre', 'message_interface', 'por', 'Mot titre fiche Label', 'message', 'Palavra(s) no título das fichas'); INSERT INTO label VALUES ('nom_organisme', 'message_interface', 'por', 'Nom de l''observatoire', 'message', 'Nome do organismo'); INSERT INTO label VALUES ('nom_pays', 'message_interface', 'por', 'Nom du pays', 'message', 'Nome do país'); INSERT INTO label VALUES ('onglet_catalogs', 'message_interface', 'por', 'Onglet ''catalogues''', 'message', 'Catálogos'); INSERT INTO label VALUES ('onglet_gabarit', 'message_interface', 'por', 'Onglet ''catalogues''', 'message', 'Que tipo de dados?'); INSERT INTO label VALUES ('onglet_contact', 'message_interface', 'por', 'Onglet ''contacts''', 'message', 'Contactos'); INSERT INTO label VALUES ('onglet_date', 'message_interface', 'por', 'Onglet ''dates''', 'message', 'Datas de validade'); INSERT INTO label VALUES ('onglet_distributionInfo_41', 'message_interface', 'por', 'Onglet ''Distribution''', 'message', 'Distribuição'); INSERT INTO label VALUES ('onglet_bounding_box', 'message_interface', 'por', 'Onglet ''emprise géographiques''', 'message', 'Limites geográficas'); INSERT INTO label VALUES ('onglet_contentInfo_40', 'message_interface', 'por', 'Onglet ''info de contenu''', 'message', 'Conteúdo do conjunto de dados'); INSERT INTO label VALUES ('onglet_metadataExtensionInfo_39', 'message_interface', 'por', 'Onglet ''information sur l''Extension des métadonnées''', 'message', 'Extensão'); INSERT INTO label VALUES ('onglet_Metadata', 'message_interface', 'por', 'Onglet ''Informations sur la fiche de métadonnées''', 'message', 'Informações ficha'); INSERT INTO label VALUES ('onglet_localisation', 'message_interface', 'por', 'Onglet ''Localisation''', 'message', 'Localização'); INSERT INTO label VALUES ('onglet_MD_Metadata_453', 'message_interface', 'por', 'Onglet ''Métadonnées''', 'message', 'Metadados'); INSERT INTO label VALUES ('onglet_keyword', 'message_interface', 'por', 'Onglet ''mots clés''', 'message', 'Palavras-chave'); INSERT INTO label VALUES ('onglet_dataQualityInfo_42', 'message_interface', 'por', 'Onglet ''Qualité''', 'message', 'Qualidade'); INSERT INTO label VALUES ('onglet_quicklook', 'message_interface', 'por', 'Onglet ''Quicklook''', 'message', 'Vista rápida'); INSERT INTO label VALUES ('onglet_spatialRepresentationInfo_37', 'message_interface', 'por', 'Onglet ''représentation spatiale''', 'message', 'Representação espacial'); INSERT INTO label VALUES ('onglet_identificationInfo_36', 'message_interface', 'por', 'Onglet ''Ressource''', 'message', 'Conjunto de dados'); INSERT INTO label VALUES ('onglet_referenceSystemInfo_38', 'message_interface', 'por', 'Onglet ''Système de référence''', 'message', 'Sistema de referência'); INSERT INTO label VALUES ('onglet_topic', 'message_interface', 'por', 'Onglet ''thèmes''', 'message', 'Temas'); INSERT INTO label VALUES ('onglet_topic_roselt', 'message_interface', 'por', 'Onglet ''thèmes''', 'message', 'Temas roselt'); INSERT INTO label VALUES ('onglet_thesaurus', 'message_interface', 'por', 'Onglet ''thesaurus''', 'message', 'Thesaurus'); INSERT INTO label VALUES ('doc_where', 'message_interface', 'por', 'Ou', 'message', 'Onde? : Com ajuda do botão de selecção, escolha uma zona geográfica sobre a qual efectuará a pesquisa. Valide em seguida a zona escolhida com o botão validar do formulário Onde?'); INSERT INTO label VALUES ('onglet_where', 'message_interface', 'por', 'où', 'message', 'Onde?'); INSERT INTO label VALUES ('none_contacts', 'message_interface', 'por', 'Pas de contacts par défault', 'message', 'Não existem contactos prédefinidos'); INSERT INTO label VALUES ('none_predefs', 'message_interface', 'por', 'Pas de valeurs prédéfinies', 'message', 'Não existem valores prédefinidos'); INSERT INTO label VALUES ('onglet_when', 'message_interface', 'por', 'quand', 'message', 'Quando?'); INSERT INTO label VALUES ('onglet_what', 'message_interface', 'por', 'quoi', 'message', 'Sobre que?'); INSERT INTO label VALUES ('doc_when', 'message_interface', 'por', 'quoi', 'message', 'Quando? Escolha um período (data de início, data de término) durante o qual os dados que pesquisa foram criados'); INSERT INTO label VALUES ('rech_fiche_export', 'message_interface', 'por', 'Rechercher des fiches à exporter Label', 'message', 'Busca de fichas para exportar'); INSERT INTO label VALUES ('titre_utilisateurs', 'message_interface', 'por', 'Etiquette utilisateurs pour le titre des pages de l''admin', 'message', 'Utilizador'); INSERT INTO label VALUES ('bout_telecharg_xml', 'message_interface', 'por', 'Télécharger XML Label', 'message', 'Fazer download de ficha XML'); INSERT INTO label VALUES ('preferences_title', 'message_interface', 'por', 'Titre de la page préférences utilisateur', 'message', 'Modificação das preferencias pessoais'); INSERT INTO label VALUES ('titre_consultation', 'message_interface', 'por', 'Titre de la page principale de la consultation.', 'message', 'Catálogo regional de dados ROSELT/OSS'); INSERT INTO label VALUES ('liste_libelles', 'message_interface', 'por', 'Titre figurant au-dessus de la liste des libellés.', 'message', 'Lista de etiquetas'); INSERT INTO label VALUES ('liste_util', 'message_interface', 'por', 'Titre figurant au-dessus de la liste des utilisateurs.', 'message', 'Lista de utililizadores'); INSERT INTO label VALUES ('type_label_thesaurus', 'elmnt_liste_interface', 'por', 'Etiquette Eléments de thésaurus', 'code', 'Elementos de thésaurus'); INSERT INTO label VALUES ('menu_gest_creer', 'message_interface', 'por', 'menu gestion', 'menu', 'Criar'); INSERT INTO label VALUES ('menu_gest_collection', 'message_interface', 'por', 'menu gestion', 'menu', 'Colecção de dados'); INSERT INTO label VALUES ('menu_gest_jeu', 'message_interface', 'por', 'menu gestion', 'menu', 'Conjunto de dados'); INSERT INTO label VALUES ('menu_gest_modif', 'message_interface', 'por', 'menu gestion', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_gest_consult', 'message_interface', 'por', 'menu gestion', 'menu', 'Consultar'); INSERT INTO label VALUES ('menu_gest_pref', 'message_interface', 'por', 'menu gestion', 'menu', 'Preferencias'); INSERT INTO label VALUES ('menu_gest_valpredef', 'message_interface', 'por', 'menu gestion', 'menu', 'Gerar os seus valores prédefinidos'); INSERT INTO label VALUES ('menu_gest_valpredef_ajout', 'message_interface', 'por', 'menu gestion', 'menu', 'Adicionar'); INSERT INTO label VALUES ('menu_gest_valpredef_mod', 'message_interface', 'por', 'menu gestion', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_gest_contact', 'message_interface', 'por', 'menu gestion', 'menu', 'Gerar os seus contactos'); INSERT INTO label VALUES ('menu_gest_contact_mod', 'message_interface', 'por', 'menu gestion', 'menu', 'Modificar'); INSERT INTO label VALUES ('orig_fiche_MDweb_local', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Mdweb local'); INSERT INTO label VALUES ('menu_gest_aide', 'message_interface', 'por', 'menu gestion', 'menu', 'Ajuda'); INSERT INTO label VALUES ('menu_gest_admin', 'message_interface', 'por', 'menu gestion', 'menu', 'Administração'); INSERT INTO label VALUES ('menu_gest_exit', 'message_interface', 'por', 'menu gestion', 'menu', 'Sair'); INSERT INTO label VALUES ('menu_gest_home', 'message_interface', 'por', 'menu gestion', 'menu', 'Gestão'); INSERT INTO label VALUES ('orig_fiche_import_XML', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Importação XML'); INSERT INTO label VALUES ('menu_admin_para_gen', 'message_interface', 'por', 'menu administration', 'menu', 'Regra de publicação'); INSERT INTO label VALUES ('import_source', 'liste_interface', 'por', 'Label code', 'code', 'Fonte da importação'); INSERT INTO label VALUES ('import_source_MDWeb', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'MDweb'); INSERT INTO label VALUES ('nom_fichier_xml', 'message_interface', 'por', 'Label code', 'code', 'Nome do ficheiro XML'); INSERT INTO label VALUES ('num_fichier', 'message_interface', 'por', 'Label code', 'code', 'Numero da ficha'); INSERT INTO label VALUES ('menu_admin_util_ajout', 'message_interface', 'por', 'menu administration', 'menu', 'Adicionar'); INSERT INTO label VALUES ('menu_admin_util_mod', 'message_interface', 'por', 'menu administration', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_admin_util_sup', 'message_interface', 'por', 'menu administration', 'menu', 'Suprimir'); INSERT INTO label VALUES ('menu_admin_lib', 'message_interface', 'por', 'menu administration', 'menu', 'Etiquetas'); INSERT INTO label VALUES ('menu_admin_lib_ajout', 'message_interface', 'por', 'menu administration', 'menu', 'Adicionar'); INSERT INTO label VALUES ('menu_admin_lib_modif', 'message_interface', 'por', 'menu administration', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_admin_lib_sup', 'message_interface', 'por', 'menu administration', 'menu', 'Suprimir'); INSERT INTO label VALUES ('menu_admin_gab', 'message_interface', 'por', 'menu administration', 'menu', 'Modelo'); INSERT INTO label VALUES ('menu_admin_gab_ajout', 'message_interface', 'por', 'menu administration', 'menu', 'Adicionar'); INSERT INTO label VALUES ('menu_admin_gab_modif', 'message_interface', 'por', 'menu administration', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_admin_gab_sup', 'message_interface', 'por', 'menu administration', 'menu', 'Suprimir'); INSERT INTO label VALUES ('menu_admin_cat', 'message_interface', 'por', 'menu administration', 'menu', 'Catálogo'); INSERT INTO label VALUES ('menu_admin_cat_ajout', 'message_interface', 'por', 'menu administration', 'menu', 'Adicionar'); INSERT INTO label VALUES ('menu_admin_cat_modif', 'message_interface', 'por', 'menu administration', 'menu', 'Modificar'); INSERT INTO label VALUES ('menu_admin_cat_sup', 'message_interface', 'por', 'menu administration', 'menu', 'Suprimir'); INSERT INTO label VALUES ('body_new_user_1', 'message_interface', 'por', 'message mail', 'mail', 'Bom dia, os parâmetros de utilizadore para pedidos de inscrição no serviço de metadados Mdweb são:"'); INSERT INTO label VALUES ('body_sign', 'message_interface', 'por', 'message mail', 'mail', 'Administrador MDweb'); INSERT INTO label VALUES ('subject_new_user_1', 'message_interface', 'por', 'message mail', 'mail', 'Novo utilizador de MDweb'); INSERT INTO label VALUES ('body_new_user_2', 'message_interface', 'por', 'message mail', 'mail', 'Os seus parâmetros de inscrição para o serviço de metadados Mdweb são:'); INSERT INTO label VALUES ('new_pass', 'message_interface', 'por', 'message mail', 'mail', 'Um email com os seus novos parâmetros de conexão acaba de lhe ser enviado'); INSERT INTO label VALUES ('subject_new_user_2', 'message_interface', 'por', 'message mail', 'mail', 'Inscrição no serviço de metadados MDweb'); INSERT INTO label VALUES ('body_new_user_3', 'message_interface', 'por', 'message mail', 'mail', 'Irá receber um email de confirmação do seu pedido de inscrição com o seu login e palavra chave'); INSERT INTO label VALUES ('body_loose_pass_1', 'message_interface', 'por', 'message mail', 'mail', 'Os seus novos parâmetros de conexão para o serviço de metadados MDweb são'); INSERT INTO label VALUES ('body_conf_user_1', 'message_interface', 'por', 'message mail', 'mail', 'Bem-vindo ao serviço de metadados MDweb. A sua conta de utilizador é:'); INSERT INTO label VALUES ('subject_conf_user', 'message_interface', 'por', 'message mail', 'mail', 'Confirmação da sua inscrição no serviço de metadados MDweb'); INSERT INTO label VALUES ('old_user_no_send_mail', 'message_interface', 'por', 'message mail', 'mail', 'Erro durante o envio do email'); INSERT INTO label VALUES ('image_attachee', 'message_interface', 'fra', '', 'message', 'Aperçu attaché'); INSERT INTO label VALUES ('image_attachee', 'message_interface', 'por', '', 'message', 'Vista rápida annexado'); INSERT INTO label VALUES ('image_attachee', 'message_interface', 'eng', '', 'message', 'Linked quicklook'); INSERT INTO label VALUES ('base_geo', 'gabarit_mtd', 'por', 'Etiquette ''Base géographique''', 'gabarit', 'BD geográfica'); INSERT INTO label VALUES ('carte_papier', 'gabarit_mtd', 'por', 'Etiquette ''Carte papier''', 'gabarit', 'Mapa em papel'); INSERT INTO label VALUES ('do_nothing', 'message_interface', 'eng', '', 'code', 'Do nothing'); INSERT INTO label VALUES ('carte_num', 'gabarit_mtd', 'por', 'Etiquette ''Carte numérique''', 'gabarit', 'Mapa numérica'); INSERT INTO label VALUES ('contacts', 'message_interface', 'eng', '', 'message', 'Address book manager'); INSERT INTO label VALUES ('bulle_change_private', 'message_interface', 'por', 'infos bulle', 'bulle', 'Modificar a confidencialidade da ficha'); INSERT INTO label VALUES ('bulle_validate', 'message_interface', 'por', 'infos bulle', 'bulle', 'Validar a ficha'); INSERT INTO label VALUES ('bulle_invalidate', 'message_interface', 'por', 'infos bulle', 'bulle', 'Invalidar a ficha'); INSERT INTO label VALUES ('bulle_change_level', 'message_interface', 'por', 'infos bulle', 'bulle', 'Modificar o nível de preenchimento'); INSERT INTO label VALUES ('bulle_insert_predef', 'message_interface', 'por', 'infos bulle', 'bulle', 'Inserir os valores selecionados pré-definidos'); INSERT INTO label VALUES ('bt_creer', 'message_interface', 'por', 'label bouton submit', 'message', 'Criar'); INSERT INTO label VALUES ('bulle_change_title', 'message_interface', 'por', 'infos bulle', 'bulle', 'Modificar o título da ficha'); INSERT INTO label VALUES ('bulle_insert_contact', 'message_interface', 'por', 'infos bulle', 'bulle', 'Inserir os contactos selecionados'); INSERT INTO label VALUES ('bulle_admin', 'message_interface', 'por', 'infos bulle', 'bulle', 'Administração de página'); INSERT INTO label VALUES ('bulle_user', 'message_interface', 'por', 'infos bulle', 'bulle', 'Página de acolhimento'); INSERT INTO label VALUES ('bulle_help', 'message_interface', 'por', 'infos bulle', 'bulle', 'Ajuda'); INSERT INTO label VALUES ('bulle_exit', 'message_interface', 'por', 'infos bulle', 'bulle', 'Sair do MDweb'); INSERT INTO label VALUES ('bulle_attach_quicklook', 'message_interface', 'por', 'infos bulle', 'bulle', 'Anexar uma vista rapida'); INSERT INTO label VALUES ('bulle_attach_children_sheet', 'message_interface', 'por', 'infos bulle', 'bulle', 'Anexar uma ficha filha'); INSERT INTO label VALUES ('bulle_attach_parent_sheet', 'message_interface', 'por', 'infos bulle', 'bulle', 'Anexar uma ficha de origem'); INSERT INTO label VALUES ('bulle_insert_country', 'message_interface', 'por', 'infos bulle', 'bulle', 'Introduzir um país novo'); INSERT INTO label VALUES ('bulle_change_default_contact', 'message_interface', 'por', 'infos bulle', 'bulle', 'Definir este contacto como contacto por defeito'); INSERT INTO label VALUES ('bulle_change_ default_predef', 'message_interface', 'por', 'infos bulle', 'bulle', 'Definir este jogo de valores pre-definidos como jogo de valores por defeito'); INSERT INTO label VALUES ('bulle_attach_archive', 'message_interface', 'por', 'infos bulle', 'bulle', 'Anexar um arquivo zip'); INSERT INTO label VALUES ('catalog_all', 'elmnt_liste_interface', 'por', 'nom catalogue', 'catalog', 'Todos os catálogos de dados'); INSERT INTO label VALUES ('catalog_inida', 'elmnt_liste_interface', 'por', 'nom catalogue', 'catalog', 'Catálogo de dados - INIDA'); INSERT INTO label VALUES ('data_type', 'liste_interface', 'por', 'Etiquette ''type de données''', 'code', 'Tipo de dados'); INSERT INTO label VALUES ('langue_por', 'elmnt_liste_interface', 'por', 'Etiquette portugais', 'code', 'Português'); INSERT INTO label VALUES ('coulpref', 'liste_interface', 'por', 'Etiquette couleur de MDweb', 'code', 'Cor de MDweb'); INSERT INTO label VALUES ('nivacces_0', 'elmnt_liste_interface', 'por', 'Etiquette rôle administration', 'code', 'Administração'); INSERT INTO label VALUES ('nivacces_1', 'elmnt_liste_interface', 'por', 'Etiquette rôle validation', 'code', 'Validação'); INSERT INTO label VALUES ('nivacces_2', 'elmnt_liste_interface', 'por', 'Etiquette rôle catalogage', 'code', 'Catalogagem'); INSERT INTO label VALUES ('nivacces_3', 'elmnt_liste_interface', 'por', 'Etiquette rôle consultation', 'code', 'Consulta'); INSERT INTO label VALUES ('coulpref_bleu', 'elmnt_liste_interface', 'por', 'Etiquette couleur bleue', 'code', 'Azul'); INSERT INTO label VALUES ('coulpref_marron', 'elmnt_liste_interface', 'por', 'Etiquette couleur marron', 'code', 'Castanho'); INSERT INTO label VALUES ('coulpref_vert', 'elmnt_liste_interface', 'por', 'Etiquette couleur vert', 'code', 'Verde'); INSERT INTO label VALUES ('nivacces', 'liste_interface', 'por', 'Etiquette rôle', 'code', 'Papel'); INSERT INTO label VALUES ('iso_lang_code', 'liste_interface', 'por', 'Etiquette langue', 'code', 'Língua'); INSERT INTO label VALUES ('type_label', 'liste_interface', 'por', 'Etiquette ''type de libellé''', 'code', 'Tipo de etiqueta'); INSERT INTO label VALUES ('type_label_message', 'elmnt_liste_interface', 'por', 'Etiquette ''messages des interfaces''', 'code', 'Mensagens das interfaces'); INSERT INTO label VALUES ('type_label_code', 'elmnt_liste_interface', 'por', 'Etiquette ''liste prédéfinies des interfaces''', 'code', 'Lista pré-definida das interfaces'); INSERT INTO label VALUES ('type_label_element', 'elmnt_liste_interface', 'por', 'Etiquette ''éléments de la norme''', 'code', 'Elementos da norma'); INSERT INTO label VALUES ('type_label_liste', 'elmnt_liste_interface', 'por', 'Etiquette ''listes prédéfinies de la norme''', 'code', 'Listas pré-definida da norma'); INSERT INTO label VALUES ('type_label_gabarit', 'elmnt_liste_interface', 'por', 'Etiquette ''nom des gabarits''', 'code', 'Tipo de recurso'); INSERT INTO label VALUES ('niv_saisie_0', 'elmnt_liste_interface', 'por', 'Etiquette pour le 1er niveau de saisie', 'code', 'Elementar'); INSERT INTO label VALUES ('niv_saisie_1', 'elmnt_liste_interface', 'por', 'Etiquette pour le 2ème niveau de saisie', 'code', 'Intermediário'); INSERT INTO label VALUES ('niv_saisie_2', 'elmnt_liste_interface', 'por', 'Etiquette pour le 3ème niveau de saisie', 'code', 'Completo'); INSERT INTO label VALUES ('niv_saisie', 'liste_interface', 'por', 'Etiquette ''niveau de saisie''', 'code', 'Nível de preenchimento'); INSERT INTO label VALUES ('publier', 'liste_interface', 'por', 'Etiquette publier', 'code', 'Validar'); INSERT INTO label VALUES ('publier_0', 'elmnt_liste_interface', 'por', 'Etiquette non publiee', 'code', 'Não Validado'); INSERT INTO label VALUES ('publier_1', 'elmnt_liste_interface', 'por', 'Etiquette publiee', 'code', 'Validado'); INSERT INTO label VALUES ('confidentialite', 'liste_interface', 'por', 'Etiquette confidentialité', 'code', 'Confidencialidade'); INSERT INTO label VALUES ('confidentialite_0', 'elmnt_liste_interface', 'por', 'Etiquette non confidentielle', 'code', 'Não confidencial'); INSERT INTO label VALUES ('confidentialite_1', 'elmnt_liste_interface', 'por', 'Etiquette confidentielle', 'code', 'Confidencial'); INSERT INTO label VALUES ('polit_publi', 'liste_interface', 'por', 'Etiquette Règle de publication', 'code', 'Regra de validação'); INSERT INTO label VALUES ('titre_portail_anmcv', 'message_interface', 'por', 'label titre', 'accueil', 'Associação Nacional dos Municípios Caboverdianos'); INSERT INTO label VALUES ('titre_portail_inida', 'message_interface', 'fra', 'libellé titre accueil', 'accueil', 'Institut National de Recherche et de Développement Agraires'); INSERT INTO label VALUES ('titre_portail_ingrh', 'message_interface', 'fra', 'titre accueil', 'accueil', 'Institut National de Gestion des Ressources Hydriques'); INSERT INTO label VALUES ('titre_portail_sia', 'message_interface', 'por', 'titre accueil', 'accueil', 'Sistema de Informação Ambiental'); INSERT INTO label VALUES ('titre_portail_sia', 'message_interface', 'fra', 'libellé titre accueil', 'accueil', 'Système d''Information sur l''Environnement'); INSERT INTO label VALUES ('titre_portail_sia', 'message_interface', 'eng', 'libellé titre accueil', 'accueil', 'Environmental Information System'); INSERT INTO label VALUES ('titre_base', 'message_interface', 'por', 'label message', 'message', 'BD relacional'); INSERT INTO label VALUES ('gest_creer_desc', 'message_interface', 'por', 'description créer', 'aide', 'Criar uma referência no catalogo. Existem duas possibilidades: uma referência do tipo colecção de dados (BD relacional, BD geográfica ou mapa numérico) ou uma referência conjunto de dados (vector, imagem-raster, etc...)'); INSERT INTO label VALUES ('titre_portail_inida', 'message_interface', 'eng', 'libellé titre accueil', 'accueil', 'National Institute of Agrarian Research and Development'); INSERT INTO label VALUES ('gest_modif_desc', 'message_interface', 'por', 'description modifier', 'aide', 'Modificar uma referência existente. Este sub módulo lhe permite ter acesso a uma referência para modificar o seu conteúdo e a suas propriedades.'); INSERT INTO label VALUES ('statut', 'message_interface', 'por', 'Label code', 'code', 'Estatuto da ficha'); INSERT INTO label VALUES ('predef_values', 'message_interface', 'por', 'Label code', 'code', 'Valores por defeito'); INSERT INTO label VALUES ('default_values', 'message_interface', 'por', 'Label code', 'code', 'Valores por defeito'); INSERT INTO label VALUES ('title_doctor', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Doutor'); INSERT INTO label VALUES ('title_professor', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Professor'); INSERT INTO label VALUES ('title_mis', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Senhorita'); INSERT INTO label VALUES ('type_label_bulle', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Tips'); INSERT INTO label VALUES ('title_mme', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Senhora'); INSERT INTO label VALUES ('title_mr', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Senhor'); INSERT INTO label VALUES ('iso_lang_code_eng', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Inglês'); INSERT INTO label VALUES ('iso_lang_code_fra', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Francês'); INSERT INTO label VALUES ('type_label_mail', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Mensagens de emails'); INSERT INTO label VALUES ('type_label_catalog', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'Catálogo'); INSERT INTO label VALUES ('code_observatoire', 'liste_interface', 'por', 'Label code', 'code', 'Catálogo'); INSERT INTO label VALUES ('import_source_SIEL', 'elmnt_liste_interface', 'por', 'Label code', 'code', 'ArcGIS'); INSERT INTO label VALUES ('no_ajout', 'message_interface', 'por', 'Label code', 'code', 'Não adicionado'); INSERT INTO label VALUES ('menu_admin_util', 'message_interface', 'por', 'menu administration', 'menu', 'Utilizadores'); INSERT INTO label VALUES ('menu_admin_para_contact', 'message_interface', 'por', 'menu administration', 'menu', 'Contactos'); INSERT INTO label VALUES ('menu_admin_para_lang', 'message_interface', 'por', 'menu administration', 'menu', 'Língua'); INSERT INTO label VALUES ('menu_admin_para_valpredef', 'message_interface', 'por', 'menu administration', 'menu', 'Valores prédefinidos'); INSERT INTO label VALUES ('menu_admin_para', 'message_interface', 'por', 'menu administration', 'menu', 'Opções'); INSERT INTO label VALUES ('menu_gest_ajout', 'message_interface', 'por', 'menu gestion', 'menu', 'Adicionar'); INSERT INTO label VALUES ('titre_portail_ingrh', 'message_interface', 'eng', 'titre accueil', 'accueil', 'National Institute of Water Resource Management'); INSERT INTO label VALUES ('menu_gest_compte', 'message_interface', 'por', 'label menu gestion', 'menu', 'A minha conta'); INSERT INTO label VALUES ('keywords_manager', 'message_interface', 'fra', '', 'message', 'Gestionnaire des mots clés'); INSERT INTO label VALUES ('titre_doc_admin', 'message_interface', 'por', 'libelle menu gestion', 'menu', 'Ajuda à administração'); INSERT INTO label VALUES ('mess_accueil_saisie', 'message_interface', 'por', 'libellé titre accueil saisie', 'message', 'Informações gerais da sua ficha de metadados'); INSERT INTO label VALUES ('gest_consult_desc', 'message_interface', 'por', 'description consulter', 'aide', 'Consultar as referências do catálogo com o módulo de pesquisa multi-critérios (onde? Quando ? Sobre o que ?)'); INSERT INTO label VALUES ('gest_pref_desc', 'message_interface', 'por', 'description préférence', 'aide', 'Modificar as propriedades da sua conta MDweb, gerir os seus contactos e os seus valores por defeito que serão sincronizados com as suas referências.'); INSERT INTO label VALUES ('admin_para_desc', 'message_interface', 'por', 'description option générales', 'aide', 'Permite-lhe modificar a regra de publicação das referencias, gerir as línguas, os valores predefinidos e os contactos dos utilizadores.'); INSERT INTO label VALUES ('admin_util_desc', 'message_interface', 'por', 'description compte utilisateur', 'aide', 'Gerir as contas dos utilizadores MDweb. Este sub módulo lhe permite, em particular, definir os privilégios dos utilizadores (Administrador, validador...)'); INSERT INTO label VALUES ('titre_portail_dgoth', 'message_interface', 'fra', 'titre accueil', 'accueil', 'Direction Générale de l''aménagement du Territoire et de l''Habitat'); INSERT INTO label VALUES ('titre_portail_dgoth', 'message_interface', 'eng', 'titre accueil', 'accueil', 'General Direction of Land Planning and Habitat'); INSERT INTO label VALUES ('lbl_liste_keywords', 'message_interface', 'eng', '', 'message', 'Keyword choose'); INSERT INTO label VALUES ('keywords_list', 'message_interface', 'eng', '', 'message', 'Keywords list'); INSERT INTO label VALUES ('keyword_update', 'message_interface', 'eng', '', 'message', 'Keyword update'); INSERT INTO label VALUES ('keyword_update', 'message_interface', 'fra', '', 'message', 'Modifier le mot clé'); INSERT INTO label VALUES ('keywords_free', 'message_interface', 'eng', '', 'message', 'Keywords free'); INSERT INTO label VALUES ('bulle_add_keyword', 'message_interface', 'fra', '', 'bulle', 'Ajouter le mot clé'); INSERT INTO label VALUES ('bulle_add_keyword', 'message_interface', 'eng', '', 'bulle', 'Add keyword'); INSERT INTO label VALUES ('bulle_del_keyword', 'message_interface', 'eng', '', 'bulle', 'Delete keyword'); INSERT INTO label VALUES ('bulle_del_keyword', 'message_interface', 'fra', '', 'bulle', 'Supprimer le mot clé'); INSERT INTO label VALUES ('bulle_update_keyword', 'message_interface', 'eng', '', 'bulle', 'Update keyword'); INSERT INTO label VALUES ('bulle_update_keyword', 'message_interface', 'fra', '', 'bulle', 'Modifier le mot clé'); INSERT INTO label VALUES ('all_keywords', 'message_interface', 'eng', '', 'message', 'All keywords'); INSERT INTO label VALUES ('accueil_gestion_desc', 'message_interface', 'fra', 'description module de gestion ', 'aide', 'Le module de gestion de MDweb vous permet d''assurer la gestion de vos références, de vos contacts et de vos valeurs prédéfinies.
Les sous-modules proposés sont accessibles par le menu'); INSERT INTO label VALUES ('all_keywords', 'message_interface', 'fra', '', 'message', 'Tous les mots clés'); INSERT INTO label VALUES ('thesaurus_GCMD', 'message_interface', 'eng', '', 'message', 'GCMD Thesaurus'); INSERT INTO label VALUES ('accueil_gestion_desc', 'message_interface', 'por', 'description module de gestion', 'aide', 'O módulo de gestão de MDweb lhe permite assegurar a gestão das suas referências, dos seus contactos e dos seus valores predefinidos.
Os sub módulos propostos são acessíveis a partir do menu.'); INSERT INTO label VALUES ('admin_gab_desc', 'message_interface', 'por', 'description gabarits', 'aide', 'Não disponível no momento'); INSERT INTO label VALUES ('admin_cat_desc', 'message_interface', 'por', 'description catalogue', 'aide', 'Acrescentar, suprimir um catalogo de MDweb'); INSERT INTO label VALUES ('gest_import', 'message_interface', 'por', 'libellé section importer', 'aide', 'Assegura a importação das referencias XML ISO 19115 vindas de outras fontes (ArcGIS). Assegura também a ligação das vistas rápidas e dos ficheiros às referencias'); INSERT INTO label VALUES ('accueil_gestion_desc', 'message_interface', 'eng', 'label description of management area', 'aide', 'The MDweb management area provide the management of yours own metadata sheets, contacts and preset values to describe easier and quicker yours data.
The MDweb sub modules Les sub-modules proposed are avalaible with the top menu'); INSERT INTO label VALUES ('accueil_admin_desc', 'message_interface', 'fra', 'description admin', 'aide', 'Le module d''administration de MDweb vous permet de gérer les paramètres généraux de l''application, les comptes utilisateurs,
les libellés des interfaces, les catalogues et d''assurer les import/export XML avec les autres sources de métadonnées.'); INSERT INTO label VALUES ('accueil_admin_desc', 'message_interface', 'eng', 'label description of administration area', 'aide', 'MDweb Administration area provide to manage the general settings of the tool, the users accounts,
the interface labels, the catalogs and give some facilities to import and export in ISO 19115 XML format metadata from others sources.'); INSERT INTO label VALUES ('accueil_admin_desc', 'message_interface', 'por', 'description admin', 'aide', 'O módulo de administracão de MDweb lhe permite gerir os parâmetros gerais da aplicação, as contas de utilizadores,
as etiquetas das interfaces, os catálogos e assegurar as importações/exportações XML com as outras fontes de metadados.'); INSERT INTO label VALUES ('contact_R_default', 'message_interface', 'por', 'label gestion contact', 'message', 'Contactos por defeito
(Secção Ident. Dados)'); INSERT INTO label VALUES ('contact_M_default', 'message_interface', 'por', 'label gestion contact', 'message', 'Contactos por defeito
(Secção Ident. Metadados)'); INSERT INTO label VALUES ('contact_D_default', 'message_interface', 'por', 'label gestion contact', 'message', 'Contactos por defeito
(Secção Distribuição)'); INSERT INTO label VALUES ('contact_R_default', 'message_interface', 'fra', '', 'message', 'Contact par défaut
(Section Ident. Données)'); INSERT INTO label VALUES ('contact_M_default', 'message_interface', 'fra', 'label Contact par défaut', 'message', 'Contact par défaut
(Section Ident. Métadonnées)'); INSERT INTO label VALUES ('contact_D_default', 'message_interface', 'eng', '', 'message', 'Default contact
(Distribution section)'); INSERT INTO label VALUES ('titre_portail_dgoth', 'message_interface', 'por', 'titre accueil', 'accueil', 'Direcção Geral do Ordenamento do Território e Habitação '); INSERT INTO label VALUES ('keywords_categorie_list', 'message_interface', 'eng', '', 'message', 'Keyword type'); INSERT INTO label VALUES ('keywords_categorie_list', 'message_interface', 'fra', '', 'message', 'Type de mot-clé'); INSERT INTO label VALUES ('lbl_keyword', 'message_interface', 'fra', '', 'message', 'Mot clé'); INSERT INTO label VALUES ('lbl_type_keyword', 'message_interface', 'eng', '', 'message', 'Type'); INSERT INTO label VALUES ('erreur_no_contacts', 'message_interface', 'fra', '', 'message', 'Pas de contacts'); INSERT INTO label VALUES ('all_users', 'liste_interface', 'eng', '', 'message', 'All users'); INSERT INTO label VALUES ('bulle_select_user', 'message_interface', 'eng', '', 'bulle', 'User filter'); INSERT INTO label VALUES ('filtrer', 'message_interface', 'eng', '', 'message', 'To filter'); INSERT INTO label VALUES ('create', 'message_interface', 'eng', '', 'code', 'Create a new sheet'); INSERT INTO label VALUES ('no_keywords_result', 'message_interface', 'fra', '', 'message', 'Aucun résultats'); INSERT INTO label VALUES ('no_keywords_result', 'message_interface', 'eng', '', 'message', 'No keywords'); INSERT INTO label VALUES ('contact_M_default', 'message_interface', 'eng', 'Default contact label', 'message', 'Default contact
(Ident. Metadata section)'); INSERT INTO label VALUES ('contact_R_default', 'message_interface', 'eng', '', 'message', 'Default contact
(Ident. Data section)'); INSERT INTO label VALUES ('lbl_type_keyword', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Categorias'); INSERT INTO label VALUES ('contacts', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Gestão dos contactos'); INSERT INTO label VALUES ('contact_D_default', 'message_interface', 'fra', '', 'message', 'Contact par défaut
(Section Distribution)'); INSERT INTO label VALUES ('keyword_update', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Modificar a palavra chave'); INSERT INTO label VALUES ('bulle_add_keyword', 'message_interface', 'por', 'label gestion mot clé', 'bulle', 'Adicionar a palavra chave'); INSERT INTO label VALUES ('bulle_del_keyword', 'message_interface', 'por', 'label gestion mot clé', 'bulle', 'Suprimir a palavra chave'); INSERT INTO label VALUES ('bulle_update_keyword', 'message_interface', 'por', 'label gestion mot clé', 'bulle', 'Modificar a palavra chave'); INSERT INTO label VALUES ('all_keywords', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Todas as palavras chave'); INSERT INTO label VALUES ('lbl_text_add_key', 'message_interface', 'por', 'message interface ''ajouter un mot clé', 'message', 'Adicionar a palavra chave'); INSERT INTO label VALUES ('filtrer', 'message_interface', 'por', 'libellé du bouton filtrer du gestionnaire de mot clés', 'message', 'Filtrar'); INSERT INTO label VALUES ('menu_gest_keywords', 'message_interface', 'por', 'élément du menu gérez vos mots clés', 'menu', 'Gerar suas palavra chave'); INSERT INTO label VALUES ('keywords_manager', 'message_interface', 'por', 'label gestionnaire mot clé', 'message', 'Gestão das palavras chave'); INSERT INTO label VALUES ('keywords_categorie_list', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Tipo de palavra chave'); INSERT INTO label VALUES ('lbl_keyword', 'message_interface', 'por', 'label gestion mot clé', 'message', 'Palavra chave'); INSERT INTO label VALUES ('erreur_no_contacts', 'message_interface', 'por', 'label gestion contact', 'message', 'Não existem contactos'); INSERT INTO label VALUES ('keyword_type_1', 'elmnt_liste_interface', 'por', 'label gestion mot clé', 'code', 'Espacial'); INSERT INTO label VALUES ('keyword_type_2', 'elmnt_liste_interface', 'por', 'label gestion mot clé', 'code', 'Temporal'); INSERT INTO label VALUES ('keyword_type_3', 'elmnt_liste_interface', 'por', 'label gestion mot clé', 'code', 'Temático'); INSERT INTO label VALUES ('type_label_menu', 'elmnt_liste_interface', 'por', 'label gestion libellés', 'code', 'Elementos dos menus'); INSERT INTO label VALUES ('type_label_accueil', 'elmnt_liste_interface', 'por', 'label gestion libellés', 'code', 'Paginas de entrada'); INSERT INTO label VALUES ('type_label_aide', 'elmnt_liste_interface', 'por', 'label gestion libellés', 'code', 'Paginas de ajuda'); INSERT INTO label VALUES ('menu_gest_keywords', 'message_interface', 'fra', 'libéllé menu Préférences', 'menu', 'Gérer les mots clés'); INSERT INTO label VALUES ('keyword_type_1', 'elmnt_liste_interface', 'fra', '', 'code', 'Spatial'); INSERT INTO label VALUES ('do_nothing', 'message_interface', 'fra', 'label import xml', 'code', 'ne rien faire'); INSERT INTO label VALUES ('update', 'message_interface', 'fra', 'label import xml', 'code', 'mettre à jour la fiche'); INSERT INTO label VALUES ('create', 'message_interface', 'fra', 'label import xml', 'code', 'créer une nouvelle fiche'); INSERT INTO label VALUES ('keyword_type_1', 'elmnt_liste_interface', 'eng', '', 'code', 'Spatial'); INSERT INTO label VALUES ('keyword_type_2', 'elmnt_liste_interface', 'eng', '', 'code', 'Temporel'); INSERT INTO label VALUES ('keyword_type_3', 'elmnt_liste_interface', 'eng', '', 'code', 'Topic'); INSERT INTO label VALUES ('keyword_type_2', 'elmnt_liste_interface', 'fra', '', 'code', 'Temporel'); INSERT INTO label VALUES ('keyword_type_3', 'elmnt_liste_interface', 'fra', '', 'code', 'Thématique'); INSERT INTO label VALUES ('do_nothing', 'message_interface', 'por', 'label import xml', 'code', 'não fazer nada'); INSERT INTO label VALUES ('update', 'message_interface', 'por', 'label import xml', 'code', 'actualizar a ficha'); INSERT INTO label VALUES ('create', 'message_interface', 'por', 'label import xml', 'code', 'criar uma nova ficha'); INSERT INTO label VALUES ('type_label_accueil', 'elmnt_liste_interface', 'fra', '', 'code', 'Pages d''accueil'); INSERT INTO label VALUES ('type_label_aide', 'elmnt_liste_interface', 'fra', '', 'code', 'Pages d''aide'); INSERT INTO label VALUES ('confirm_suppr_predef', 'message_interface', 'por', 'suppresion d''un jeu de valeurs prédéfinies dé', 'message', ''); INSERT INTO label VALUES ('lbl_no_keys', 'message_interface', 'eng', '', 'message', 'No keywords beginnig with this string'); INSERT INTO label VALUES ('ontology_syscolag', 'message_interface', 'eng', '', 'message', 'Ontology'); INSERT INTO label VALUES ('titre_search_carto ', 'message_interface', 'eng', '', 'menu', 'Cartography search'); INSERT INTO label VALUES ('erreur_saisie_formatDate', 'message_interface', 'eng', 'Error message for the input of a right date format', 'message', 'Please follow the right date format (YYYY--MM-DD) for the field'); INSERT INTO label VALUES ('erreur_saisie_formatDate', 'message_interface', 'por', 'Message d''erreur pour la saisie du format d''une date', 'message', 'Respeite o formato correcto para a data (AAAA-MM-DD) no campo'); INSERT INTO label VALUES ('titre_search_refer_biblio', 'message_interface', 'fra', 'libellé type de données', 'message', 'Réf. bibliographique'); INSERT INTO label VALUES ('titre_search_refer_biblio', 'message_interface', 'eng', 'data type label', 'message', 'Bibliographical ref.'); INSERT INTO label VALUES ('titre_portail_bottom_2', 'message_interface', 'eng', '', 'message', '. . contact : syscolag-animation@cr-languedocroussillon.fr '); INSERT INTO label VALUES ('titre_portail_bottom_2', 'message_interface', 'por', 'bas de page ', 'accueil', '. . contact : syscolag-animation@cr-languedocroussillon.fr '); INSERT INTO label VALUES ('titre_portail_bottom_2', 'message_interface', 'fra', '', 'message', '.   contact : syscolag-animation@cr-languedocroussillon.fr '); INSERT INTO label VALUES ('titre_search_rapport', 'message_interface', 'eng', 'label message', 'message', 'Slide show'); INSERT INTO label VALUES ('titre_search_rapport', 'message_interface', 'fra', 'label message', 'message', 'Présentation'); INSERT INTO label VALUES ('titre_search_rapport', 'message_interface', 'por', 'label message', 'message', 'Apresentação'); INSERT INTO label VALUES ('titre_base', 'message_interface', 'fra', '', 'message', 'BD relationnelle'); INSERT INTO label VALUES ('bt_reset', 'message_interface', 'fra', 'label bouton reinit', 'message', 'Réinitialiser'); INSERT INTO label VALUES ('bt_reset', 'message_interface', 'eng', 'bouton reinit', 'message', 'Reset'); INSERT INTO label VALUES ('bt_reset_all', 'message_interface', 'fra', 'bouton reinitialisation totale', 'message', 'Réinitialiser tout'); INSERT INTO label VALUES ('bt_reset_all', 'message_interface', 'eng', 'bouton reinitialisation totale', 'message', 'Reset all'); INSERT INTO label VALUES ('titre_accueil_gestion', 'message_interface', 'fra', 'libellé accueil gestion', 'message', 'Module de gestion des fiches de métadonnées'); INSERT INTO label VALUES ('titre_accueil_gestion', 'message_interface', 'por', 'libellé accueil gestion', 'message', 'Módulo de gestão de fichas de metadados'); INSERT INTO label VALUES ('agrovoc', 'message_interface', 'eng', '', 'message', 'Agrovoc Thesaurus'); INSERT INTO label VALUES ('agrovoc', 'message_interface', 'fra', 'libellé thésaurus agrovoc', 'message', 'Thésaurus Agrovoc (FAO)'); INSERT INTO label VALUES ('sous_titre_contact_mod', 'message_interface', 'por', 'label of subtitle of update contact', 'message', 'Modificar seus contactos'); INSERT INTO label VALUES ('titre_accueil_admin', 'message_interface', 'eng', 'label administration homepage', 'message', 'MDweb Administration Area'); INSERT INTO label VALUES ('titre_accueil_admin', 'message_interface', 'fra', 'libelle accueil admin', 'message', 'Module d''administration MDweb'); INSERT INTO label VALUES ('titre_accueil_admin', 'message_interface', 'por', 'libelle accuiel admin', 'message', 'Módulo de administração MDweb'); INSERT INTO label VALUES ('bt_creer', 'message_interface', 'fra', 'label du bouton submit', 'message', 'Créer'); INSERT INTO label VALUES ('statut_fich', 'message_interface', 'fra', 'label bloc infos métadonnées', 'message', 'Statut de la fiche'); INSERT INTO label VALUES ('bulle_change_obs', 'message_interface', 'eng', '', 'bulle', 'Modify catalog name'); INSERT INTO label VALUES ('bulle_change_obs', 'message_interface', 'fra', '', 'bulle', 'Modifier le nom du catalogue'); INSERT INTO label VALUES ('statut_fich', 'message_interface', 'eng', 'label bloc métadonnées', 'message', 'State of sheet'); INSERT INTO label VALUES ('statut_fich', 'message_interface', 'por', 'label bloc métadonnées', 'message', 'Estado da ficha'); INSERT INTO label VALUES ('bulle_change_obs', 'message_interface', 'por', 'infos bulle', 'bulle', 'Modificar o nome do catalogo'); INSERT INTO label VALUES ('nv_contact', 'message_interface', 'fra', 'label bloc métadonnées', 'message', 'Nouveau contact'); INSERT INTO label VALUES ('nv_contact', 'message_interface', 'eng', 'label bloc métadonnées', 'message', 'New Address book entry'); INSERT INTO label VALUES ('nv_contact', 'message_interface', 'por', 'label bloc métadonnées', 'message', 'Novo contacto'); INSERT INTO label VALUES ('com_denominator_124', 'message_interface', 'por', 'metadata element comment', 'aide', 'Inteiro > 0. Este numero esta o denominator do fraccão'); INSERT INTO label VALUES ('mess_fic_attach', 'message_interface', 'fra', 'libellé bloc attaché ressource', 'message', 'Attention : la taille maximale de chaque fichier est de'); INSERT INTO label VALUES ('mess_fic_attach', 'message_interface', 'por', 'message d''alerte pour la taille des fichiers à télécharger', 'message', 'Aviso: o tamanho máximo para cada ficheiro é'); INSERT INTO label VALUES ('attacher_fic_ress', 'message_interface', 'fra', 'Etiquette ''attacher fichiers ressources''', 'message', 'Attacher le(s) fichier(s) du jeu de données à la fiche'); INSERT INTO label VALUES ('attacher_fic_ress', 'message_interface', 'por', 'Etiquette ''attacher fichiers ressources''', 'message', 'Anexar o(s) ficheiro(s) do conjunto de dados à ficha'); INSERT INTO label VALUES ('attacher_fic_ress', 'message_interface', 'eng', 'Label ''link ressource files''', 'message', 'Link dataset files to the sheet'); INSERT INTO label VALUES ('nb_fic_ress', 'message_interface', 'eng', 'Label ''Number of files''', 'message', 'Select the number of files that you want to attach'); INSERT INTO label VALUES ('nb_fic_ress', 'message_interface', 'fra', 'Etiquette ''Nombre de fichiers''', 'message', 'Choissisez le nombre de fichiers que vous souhaitez attacher'); INSERT INTO label VALUES ('com_beginPosition_502', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Formats de Date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('nb_fic_ress', 'message_interface', 'por', 'Etiquette ''Nombre de fichiers''', 'message', 'Selecionar o número das ficheiros que você quer anexar'); INSERT INTO label VALUES ('fichier', 'message_interface', 'eng', 'Label ''file''', 'message', 'File n°'); INSERT INTO label VALUES ('fichier', 'message_interface', 'fra', 'Etiquette ''fichier''', 'message', 'Fichier n°'); INSERT INTO label VALUES ('fichier', 'message_interface', 'por', 'Etiquette ''fichier''', 'message', 'Ficheiro n°'); INSERT INTO label VALUES ('comm_fic_attach', 'message_interface', 'fra', 'commentaire pour l''attachement des fichiers des jeux de données', 'message', 'Ce bloc vous permet d''attacher les fichiers correspondant au jeu de données décrit par la fiche. Lors de l''envoi, ils seront compressés.'); INSERT INTO label VALUES ('comm_fic_attach', 'message_interface', 'eng', 'commentaire pour l''attachement des fichiers au jeu de données', 'message', 'This block enables you to attach the files corresponding to the dataset describes by the sheet. They will be compressed during the upload'); INSERT INTO label VALUES ('comm_fic_attach', 'message_interface', 'por', 'commentaires pour l''attachement du jeu de données', 'message', 'Este bloco permite-o de anexar as ficheiros do conjunto de dados descreve pela ficha. Serão comprimidos durante o upload '); INSERT INTO label VALUES ('comm_format_quicklook', 'message_interface', 'eng', 'commentaire sur le format des quicklook ', 'message', 'accepted formats: gif, jpg, jpeg, png, bmp - max size : 100 Ko '); INSERT INTO label VALUES ('com_beginPosition_502', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_abstract_70', 'message_interface', 'eng', 'metadata element commentary', 'aide', 'Free text'); INSERT INTO label VALUES ('com_beginPosition_502', 'message_interface', 'por', 'metadata element comment', 'aide', 'formatos aceitados : DD-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_endPosition_504', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Formats Date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_endPosition_504', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Accepted format : AAAA-MM-DD, AAAA-MM, AAAA'); INSERT INTO label VALUES ('com_endPosition_504', 'message_interface', 'por', 'metadata element comment', 'aide', 'Formatos aceitados : DD-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_accessConstraints_260', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_accessConstraints_260', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_keyword_269', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Accèdez à une liste de termes en tapant la première lettre dans le champs de saisie, puis la 2ème….
Une liste de termes correspondants apparait. cliquez sur le terme choisi pour qu''il complète le champs mot-clé'); INSERT INTO label VALUES ('com_keyword_269', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Use the keywords list typing a first letter inside the keyword input field, the second… A list of relating term appears. Click on the choosen term to complete the keyword input field.'); INSERT INTO label VALUES ('com_keyword_269', 'message_interface', 'por', 'metadata element comment', 'aide', 'Usar a lista dos termos que datilografando uma primeira letra dentro do campo da entrada do palavra-chave, o segundo… Uma lista relacionando o termo aparece. Escolher o termo e cliquar para terminar o campo da entrada do palavra-chave. '); INSERT INTO label VALUES ('com_credit_49', 'message_interface', 'eng', 'metadata element comment', 'aide', 'format : Surname First name. Only one author by field.'); INSERT INTO label VALUES ('com_credit_49', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'format : Nom Prénom. 1 seul auteur par champ.'); INSERT INTO label VALUES ('com_credit_49', 'message_interface', 'por', 'metadata element comment', 'aide', 'formato : Sobrenome Primeiro nome. somente um autore pelo campo da entrada .'); INSERT INTO label VALUES ('com_date_79', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'format date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_79', 'message_interface', 'eng', 'metadata element comment', 'aide', 'date format accepted : YYYY-MM-DD, YYYY-MM, YYYY'); INSERT INTO label VALUES ('com_date_79', 'message_interface', 'por', 'metadata element comment', 'aide', 'formato aceitado : DD-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_accessConstraints_260', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_useConstraints_261', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_useConstraints_261', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_westBoundLongitude_126', 'message_interface', 'fra', 'commentaires sur les éléments de métadonnées', 'aide', 'Réel, domaine de valeur : -180.0 <> 180.0 en degrés décimaux ''d.ddddd'''); INSERT INTO label VALUES ('com_useConstraints_261', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_RestrictionCode)'); INSERT INTO label VALUES ('com_westBoundLongitude_126', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, Domain of value : -180.0 <> 180.0 in decimal degrees ''d.ddddd'''); INSERT INTO label VALUES ('com_westBoundLongitude_126', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, Domínio do valor : -180.0 <> 180.0 em graus decimais ''d.ddddd'' '); INSERT INTO label VALUES ('com_eastBoundLongitude_127', 'message_interface', 'eng', 'commentaires eastBoundLongitude_127', 'aide', 'Real, Domain of value : -180.0 <> 180.0 decimal degrees ''d.ddddd'''); INSERT INTO label VALUES ('com_eastBoundLongitude_127', 'message_interface', 'fra', 'commentaires eastBoundLongitude_127', 'aide', 'Réel, domaine de valeur : -180.0 <> 180.0 en degrés décimaux ''d.ddddd'''); INSERT INTO label VALUES ('com_eastBoundLongitude_127', 'message_interface', 'por', 'commentaires eastBoundLongitude_127', 'aide', 'Real, dominio do valor : -180.0 <> 180.0 graus decimais ''d.ddddd'''); INSERT INTO label VALUES ('com_northBoundLatitude_129', 'message_interface', 'fra', 'commentaires élément de métadonnées', 'aide', 'Réel, domaine de valeur : -90.0 <> 90.0 en degrés décimaux ''d.ddddd'''); INSERT INTO label VALUES ('com_northBoundLatitude_129', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, Domain of value : -90.0 <> 90.0 in decimal degrees ''d.ddddd'''); INSERT INTO label VALUES ('com_northBoundLatitude_129', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, dominio do valor : -90.0 <> 90.0 em graus decimais''d.ddddd'''); INSERT INTO label VALUES ('com_southBoundLatitude_128', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Réel, domaine de valeur : -90.0 <> 90.0 en degrés décimaux ''d.ddddd'''); INSERT INTO label VALUES ('com_southBoundLatitude_128', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, domain of value : -90.0 <> 90.0 in decimal degrees ''d.ddddd'''); INSERT INTO label VALUES ('com_southBoundLatitude_128', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, dominio do valor : -90.0 <> 90.0 em graus decimais''d.ddddd'''); INSERT INTO label VALUES ('com_status_50', 'message_interface', 'fra', 'commentaire des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (MD_ProgressCode)'); INSERT INTO label VALUES ('com_code_417', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - non standard (RS_RefSystemCode)'); INSERT INTO label VALUES ('com_status_50', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista de valores prédifinidas ISO 19115 (MD_ProgressCode)'); INSERT INTO label VALUES ('com_status_50', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 Code list (MD_ProgressCode)'); INSERT INTO label VALUES ('com_topicCategory_62', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19915 (MD_TopicCategoryCode)'); INSERT INTO label VALUES ('com_code_417', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Code list - standard extension (RS_RefSystemCode)'); INSERT INTO label VALUES ('com_topicCategory_62', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista de valores predefinidas - ISO 19115 (MD_TopicCategoryCode)'); INSERT INTO label VALUES ('com_topicCategory_62', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 - Code list (MD_TopicCategoryCode)'); INSERT INTO label VALUES ('com_code_417', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - não standardizada (RS_RefSystemCode)'); INSERT INTO label VALUES ('com_maintenanceAndUpdateFrequency_238', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 - Code list (MD_MaintenanceFrequencyCode)'); INSERT INTO label VALUES ('com_level_442', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_ScopeCode)'); INSERT INTO label VALUES ('com_maintenanceAndUpdateFrequency_238', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_MaintenanceFrequencyCode)'); INSERT INTO label VALUES ('com_maintenanceAndUpdateFrequency_238', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115(MD_MaintenanceFrequencyCode)'); INSERT INTO label VALUES ('com_level_442', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_ScopeCode)'); INSERT INTO label VALUES ('com_level_442', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_ScopeCode)'); INSERT INTO label VALUES ('com_spatialRepresentationType_58', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores predefinidas - ISO 19115 (MD_SpatialRepresentationTypeCode)'); INSERT INTO label VALUES ('com_spatialRepresentationType_58', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_SpatialRepresentationTypeCode)'); INSERT INTO label VALUES ('sous_titre_contact', 'message_interface', 'fra', 'sous titre page contact', 'message', 'Ajouter un nouveau contact'); INSERT INTO label VALUES ('com_transferSize_290', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Réel, en MegaOctets'); INSERT INTO label VALUES ('com_transferSize_290', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, in Mega-bytes'); INSERT INTO label VALUES ('com_transferSize_290', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real em Mega-bytes'); INSERT INTO label VALUES ('com_linkage_300', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'URL, i.e http://www.my-domain.com/'); INSERT INTO label VALUES ('com_linkage_300', 'message_interface', 'eng', 'metadata element comment', 'aide', 'URL, i.e http://www.my-domain.com/'); INSERT INTO label VALUES ('com_linkage_300', 'message_interface', 'por', 'metadata element comment', 'aide', 'URL, i.e http://www.my-domain.com/'); INSERT INTO label VALUES ('com_density_296', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Réel, > 0.0'); INSERT INTO label VALUES ('com_density_296', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, >0.0'); INSERT INTO label VALUES ('com_density_296', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, > 0.0'); INSERT INTO label VALUES ('com_volumes_298', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Réel, > 0.0'); INSERT INTO label VALUES ('com_volumes_298', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, > 0.0'); INSERT INTO label VALUES ('com_volumes_298', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, > 0.0'); INSERT INTO label VALUES ('com_topologyLevel_397', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_TopologyLevelCode)'); INSERT INTO label VALUES ('com_topologyLevel_397', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_TopologyLevelCode)'); INSERT INTO label VALUES ('com_topologyLevel_397', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_TopologyLevelCode)'); INSERT INTO label VALUES ('com_geometricObjectType_464', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_GeometryObjectTypeCode)'); INSERT INTO label VALUES ('com_geometricObjectType_464', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_GeometryObjectTypeCode)'); INSERT INTO label VALUES ('com_geometricObjectType_464', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_GeometryObjectTypeCode)'); INSERT INTO label VALUES ('com_geometricObjectCount_465', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Entier, > 0'); INSERT INTO label VALUES ('com_geometricObjectCount_465', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Integer, > 0'); INSERT INTO label VALUES ('com_geometricObjectCount_465', 'message_interface', 'por', 'metadata element comment', 'aide', 'Enteiro, > 0'); INSERT INTO label VALUES ('com_numberOfDimensions_365', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Entier, > 0'); INSERT INTO label VALUES ('com_numberOfDimensions_365', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Integer, > 0'); INSERT INTO label VALUES ('com_numberOfDimensions_365', 'message_interface', 'por', 'metadata element comment', 'aide', 'Inteiro, > 0'); INSERT INTO label VALUES ('com_dimensionName_368', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_DimensionNameTypeCode)'); INSERT INTO label VALUES ('com_dimensionName_368', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_DimensionNameTypeCode)'); INSERT INTO label VALUES ('com_dimensionName_368', 'message_interface', 'por', 'metadata element comment', 'aide', 'Lista do valores prédéfinidas - ISO 19115 (MD_DimensionNameTypeCode)'); INSERT INTO label VALUES ('com_dimensionSize_369', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Entier'); INSERT INTO label VALUES ('com_dimensionSize_369', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Integer'); INSERT INTO label VALUES ('com_dimensionSize_369', 'message_interface', 'por', 'metadata element comment', 'aide', 'Inteiro'); INSERT INTO label VALUES ('com_resolution_370', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Réel, en mètres'); INSERT INTO label VALUES ('com_resolution_370', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Real, in meters'); INSERT INTO label VALUES ('com_resolution_370', 'message_interface', 'por', 'metadata element comment', 'aide', 'Real, em metros'); INSERT INTO label VALUES ('sous_titre_contact', 'message_interface', 'eng', 'sub title of contact module page', 'message', 'Add a entry to your address book'); INSERT INTO label VALUES ('sous_titre_contact', 'message_interface', 'por', 'sb title of module contact', 'message', 'Criar um novo contacto'); INSERT INTO label VALUES ('predef', 'message_interface', 'fra', 'label Contact', 'message', 'Gestion des valeurs prédéfinies des formulaires'); INSERT INTO label VALUES ('com_transformationParameterAvailability_372', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Booléen Oui/Non'); INSERT INTO label VALUES ('com_transformationParameterAvailability_372', 'message_interface', 'eng', 'metadata element comment', 'aide', 'Boolean Yes/No'); INSERT INTO label VALUES ('com_transformationParameterAvailability_372', 'message_interface', 'por', 'metadata element comment', 'aide', 'Booleano Si/Não'); INSERT INTO label VALUES ('com_cellGeometry_371', 'message_interface', 'fra', 'commentaires des éléments de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 19115 (MD_CellGeometryCode)'); INSERT INTO label VALUES ('com_cellGeometry_371', 'message_interface', 'eng', 'metadata element comment', 'aide', 'ISO 19115 code list (MD_CellGeometryCode)'); INSERT INTO label VALUES ('syscolag_liens', 'message_interface', 'eng', 'Links', 'message', 'Links'); INSERT INTO label VALUES ('sous_titre_predef_mod', 'message_interface', 'eng', 'label of module preset value', 'message', 'Modify yours preset values'); INSERT INTO label VALUES ('sous_titre_predef_mod', 'message_interface', 'por', 'label of sub title module preset value', 'message', 'Modificar seus valores pré-définidos'); INSERT INTO label VALUES ('sous_titre_predef_mod', 'message_interface', 'fra', 'libellé du sous titre du module modifier les valeurs par défaut', 'message', 'Modifier vos valeurs prédéfinies'); INSERT INTO label VALUES ('sous_titre_predef', 'message_interface', 'fra', 'libellé du sous titre du module valeurs par défaut', 'message', 'Ajouter un jeu de valeurs'); INSERT INTO label VALUES ('sous_titre_predef', 'message_interface', 'eng', 'label of sub title of preset value module', 'message', 'Add a set of preset value'); INSERT INTO label VALUES ('sous_titre_predef', 'message_interface', 'por', 'label of sub title of preset value module', 'message', 'Criar o novo jogo do valores'); INSERT INTO label VALUES ('syscolag_menu_annonces', 'message_interface', 'fra', 'item menu accueil', 'menu', 'Annonces'); INSERT INTO label VALUES ('syscolag_menu_suivi_proj', 'message_interface', 'fra', 'item menu accueil', 'menu', 'Suivi projet'); INSERT INTO label VALUES ('syscolag_formation_suivi', 'message_interface', 'fra', 'item menu accueil', 'menu', 'Formation - évaluation'); INSERT INTO label VALUES ('syscolag_faq', 'message_interface', 'fra', 'item menu accueil', 'menu', 'FAQ'); INSERT INTO label VALUES ('syscolag_liens', 'message_interface', 'fra', 'item menu accueil', 'menu', 'Liens'); INSERT INTO label VALUES ('admin_gab_desc', 'message_interface', 'fra', 'description gabarits', 'aide', 'Module de gestion des gabarits. Il permet de créer de nouveaux gabarits sur lesquels s''appuie la saisie des fiches de métadonnées, de les mettre à jour ou les supprimer'); INSERT INTO label VALUES ('admin_gab_desc', 'message_interface', 'eng', 'label profile description', 'aide', 'Management module of metadata profile. You can create, update or delete metadata profile which are used for the building of metadata input forms.'); INSERT INTO label VALUES ('label_autre_concept', 'message_interface', 'fra', 'Etiquette pour les libellés des boutons gestion d''un concept du thesaurus', 'message', 'un autre concept'); INSERT INTO label VALUES ('label_autre_concept', 'message_interface', 'eng', 'Label for concept management buttons', 'message', 'another concept'); INSERT INTO label VALUES ('action', 'message_interface', 'fra', 'Libellé Action', 'message', 'Action'); INSERT INTO label VALUES ('menu_admin_geodb', 'message_interface', 'fra', 'item menu admin', 'menu', 'BD Geo'); INSERT INTO label VALUES ('date_creation', 'message_interface', 'eng', 'Label for creation date of a concept in the thesaurus', 'message', 'Creation date'); INSERT INTO label VALUES ('lang_rech_spanish', 'message_interface', 'eng', 'Label for search language', 'message', 'spanish'); INSERT INTO label VALUES ('titre_rechercher', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Recherchez des données'); INSERT INTO label VALUES ('titre_rechercher', 'message_interface', 'eng', 'home page menu element', 'menu', 'Search dataset'); INSERT INTO label VALUES ('titre_rechercher', 'message_interface', 'por', 'home page element menu', 'menu', 'Pesquisar os dados'); INSERT INTO label VALUES ('titre_documentation', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Documentation'); INSERT INTO label VALUES ('titre_documentation', 'message_interface', 'eng', 'home page menu element', 'menu', 'Documentation'); INSERT INTO label VALUES ('titre_documentation', 'message_interface', 'por', 'home page element menu', 'menu', 'Documentação'); INSERT INTO label VALUES ('titre_projet_mdweb', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Projet MDweb'); INSERT INTO label VALUES ('titre_projet_mdweb', 'message_interface', 'eng', 'home page element menu', 'menu', 'MDweb project'); INSERT INTO label VALUES ('titre_projet_mdweb', 'message_interface', 'por', 'home page element menu', 'menu', 'Projecto MDweb'); INSERT INTO label VALUES ('titre_faq', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'FAQs'); INSERT INTO label VALUES ('titre_faq', 'message_interface', 'eng', 'home page element menu', 'menu', 'FAQ'); INSERT INTO label VALUES ('titre_faq', 'message_interface', 'por', 'home page element menu', 'menu', 'FAQ'); INSERT INTO label VALUES ('titre_gallery', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Gallerie'); INSERT INTO label VALUES ('titre_gallery', 'message_interface', 'eng', 'home page element menu', 'menu', 'Gallery'); INSERT INTO label VALUES ('titre_gallery', 'message_interface', 'por', 'home page element menu', 'menu', 'Galleria'); INSERT INTO label VALUES ('titre_suivi_proj', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Suivi du projet'); INSERT INTO label VALUES ('titre_suivi_proj', 'message_interface', 'eng', 'home page element menu', 'menu', 'Project deadlines'); INSERT INTO label VALUES ('titre_suivi_proj', 'message_interface', 'por', 'home page element menu', 'menu', 'Seguimento do projecto'); INSERT INTO label VALUES ('titre_automatisation_mtd', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Extraction des métadonnées'); INSERT INTO label VALUES ('titre_automatisation_mtd', 'message_interface', 'eng', 'home page element menu', 'menu', 'Metadata extraction'); INSERT INTO label VALUES ('titre_automatisation_mtd', 'message_interface', 'por', 'home page element menu', 'menu', 'Extração dos metadados'); INSERT INTO label VALUES ('titre_liens', 'message_interface', 'fra', 'élément du menu d''accueil', 'menu', 'Liens'); INSERT INTO label VALUES ('titre_liens', 'message_interface', 'eng', 'home page element menu', 'menu', 'Links'); INSERT INTO label VALUES ('titre_liens', 'message_interface', 'por', 'home page element menu', 'menu', 'Ligações'); INSERT INTO label VALUES ('titre_portail', 'message_interface', 'fra', 'titre dans le navigateur', 'accueil', 'MDweb, outil de catalogage et de localisation de l''information environnementale'); INSERT INTO label VALUES ('titre_portail', 'message_interface', 'por', 'web browser title', 'accueil', 'MDweb, ferramenta de indexação e de localização de informaçãom ambiental'); INSERT INTO label VALUES ('titre_portail', 'message_interface', 'eng', 'web browser title', 'accueil', 'MDweb, tool for cataloguing and locating environmental information'); INSERT INTO label VALUES ('doc_what', 'message_interface', 'fra', '', 'message', 'Sur Quoi ? : Pour choisir un ou plusieurs mots-clés sur lesquels vous voulez orienter la recherche d''un jeu de données, Utilisez la fonction de complétion ou naviguer dans les thésaurus disponibles en cliquant sur l''icône.

La recherche porte sur les champs titre, résumé, mots clés, thème généraux du jeu de données'); INSERT INTO label VALUES ('doc_what', 'message_interface', 'eng', 'explication recherche which content', 'message', 'Which content ? : To select one or more keywords which you want to do your search, Use the completion function or the thesaurus browser .

the search is made using the title, summary, keywords, general themes'); INSERT INTO label VALUES ('menu_admin_impexp_fic', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Rattacher des données'); INSERT INTO label VALUES ('menu_admin_impexp_import', 'message_interface', 'eng', 'label menu management', 'menu', 'XML import'); INSERT INTO label VALUES ('menu_admin_impexp', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Import/Export'); INSERT INTO label VALUES ('menu_admin_impexp_export', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Export XML'); INSERT INTO label VALUES ('menu_admin_impexp_import', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Import XML'); INSERT INTO label VALUES ('menu_admin_impexp_aper', 'message_interface', 'fra', 'libellé menu admin', 'menu', 'Rattacher des aperçus'); INSERT INTO label VALUES ('menu_admin_impexp', 'message_interface', 'eng', 'label admin menu', 'menu', 'Import/Export'); INSERT INTO label VALUES ('menu_admin_impexp_fic', 'message_interface', 'eng', 'label admin menu', 'menu', 'Attach dataset'); INSERT INTO label VALUES ('menu_admin_impexp_export', 'message_interface', 'eng', 'label admin menu', 'menu', 'XML export'); INSERT INTO label VALUES ('menu_admin_impexp', 'message_interface', 'por', 'menu administration', 'menu', 'Importação/Exportação'); INSERT INTO label VALUES ('menu_admin_impexp_export', 'message_interface', 'por', 'menu administration', 'menu', 'Exportação XML'); INSERT INTO label VALUES ('menu_admin_impexp_import', 'message_interface', 'por', 'menu administration', 'menu', 'Importação XML'); INSERT INTO label VALUES ('menu_admin_impexp_fic', 'message_interface', 'por', 'menu administration', 'menu', 'Anexação de dados'); INSERT INTO label VALUES ('menu_admin_impexp_aper', 'message_interface', 'por', 'menu administration', 'menu', 'Anexação de vistas rápidas'); INSERT INTO label VALUES ('menu_gest_impexp', 'message_interface', 'eng', 'label menu management', 'menu', 'Import/Export'); INSERT INTO label VALUES ('menu_gest_impexp', 'message_interface', 'fra', 'label menu management', 'menu', 'Import/Export'); INSERT INTO label VALUES ('menu_gest_impexp', 'message_interface', 'por', 'label menu management', 'menu', 'Importação/Exportação'); INSERT INTO label VALUES ('menu_gest_impexp_export', 'message_interface', 'eng', 'label menu management', 'menu', 'XML export'); INSERT INTO label VALUES ('menu_gest_impexp_export', 'message_interface', 'fra', 'label menu management', 'menu', 'Export XML'); INSERT INTO label VALUES ('menu_gest_impexp_export', 'message_interface', 'por', 'label menu management', 'menu', 'Exportação XML'); INSERT INTO label VALUES ('menu_gest_impexp_import', 'message_interface', 'eng', 'label menu management', 'menu', 'XML import'); INSERT INTO label VALUES ('menu_gest_impexp_import', 'message_interface', 'fra', 'label menu management', 'menu', 'Import XML'); INSERT INTO label VALUES ('menu_gest_impexp_import', 'message_interface', 'por', 'label menu management', 'menu', 'Importação XML'); INSERT INTO label VALUES ('menu_gest_impexp_fic', 'message_interface', 'eng', 'label menu management', 'menu', 'Attach dataset'); INSERT INTO label VALUES ('menu_gest_impexp_fic', 'message_interface', 'fra', 'label menu management', 'menu', 'Rattacher des données'); INSERT INTO label VALUES ('menu_gest_impexp_fic', 'message_interface', 'por', 'label menu management', 'menu', 'Anexação de dados'); INSERT INTO label VALUES ('menu_gest_impexp_aper', 'message_interface', 'fra', 'label menu management', 'menu', 'Rattacher des aperçus'); INSERT INTO label VALUES ('menu_gest_impexp_aper', 'message_interface', 'por', 'label menu management', 'menu', 'Anexação de vistas rápidas'); INSERT INTO label VALUES ('gest_impexp_desc', 'message_interface', 'fra', 'label description of import export area', 'aide', 'Assure exportation en XML des références de vos catalogue MDweb et permet d''importer des références ISO 19115 provenant d''autres sources (ArcGIS). Assure aussi le rattachement des aperçus et des fichiers aux références'); INSERT INTO label VALUES ('gest_impexp_desc', 'message_interface', 'eng', 'label description of import export area', 'aide', 'provide the ISO 19115 XML importation XML from others sources (ArcGis, etc.) to the MDweb catalog and export. It provide also the attachment of quicklook and data files to the imported metadata sheets'); INSERT INTO label VALUES ('gest_impexp_desc', 'message_interface', 'por', 'label description of import export area', 'aide', 'Assegura a exportação em XML das referências dos seus catálogos MDweb e permite importar referencias ISO 19115 vindas de outras fontes (ArcGIS). Permite também a ligação das vistas rápidas e dos ficheiros às referencias.'); INSERT INTO label VALUES ('bulle_show_md', 'message_interface', 'eng', '', 'bulle', 'Show metadata sheet'); INSERT INTO label VALUES ('bulle_show_md', 'message_interface', 'fra', '', 'bulle', 'Visualisez les métadonnées'); INSERT INTO label VALUES ('titre_search_carto', 'message_interface', 'eng', 'label menu element', 'menu', 'Map search'); INSERT INTO label VALUES ('titre_search_carto', 'message_interface', 'fra', '', 'menu', 'Recherche cartographique'); INSERT INTO label VALUES ('com_plugin_svg', 'message_interface', 'eng', 'comment to download SVG adobe plugin', 'aide', 'To use the map module, your browser must have SVG Adobe plugin. Download it here and run the install during the download. '); INSERT INTO label VALUES ('com_plugin_svg', 'message_interface', 'fra', 'commentaires pour le téléchargement du module svg', 'aide', 'Pour utiliser ce module cartographique, votre navigateur doit avoir le plugin Adobe SVG. Teléchargez le ici et exécutez au téléchargement. '); INSERT INTO label VALUES ('title_input_map', 'message_interface', 'fra', 'titre du module cartographique de saisie', 'message', 'Module cartographique pour la saisie de la localisation géographique'); INSERT INTO label VALUES ('title_input_map', 'message_interface', 'eng', 'title of input Map module', 'message', 'Map module to input dataset localisation'); INSERT INTO label VALUES ('aide_saisie_map', 'message_interface', 'eng', 'comment to use input map module', 'aide', 'Use the functions of cartographic module to localise dataset by object or by bounding box. After the selection of an object or the definition of a bounding box, the Bouding box section will be fill'); INSERT INTO label VALUES ('aide_saisie_map', 'message_interface', 'fra', 'commentaires d''aide pour le module carto de saisie des coordonnées', 'aide', 'Utilisez les fonctions du module cartographique pour déterminer l''emprise géographique de votre jeu de données. Après le choix d''un objet ou d''un rectangle englobant, la rubrique extension géographique sera renseignée.'); INSERT INTO label VALUES ('query_multi_criteria', 'message_interface', 'fra', '', 'message', 'Recherche multi-critères'); INSERT INTO label VALUES ('svg_carto_search_zone', 'message_interface', 'eng', 'label of module SVG', 'message', 'Search by zone'); INSERT INTO label VALUES ('svg_carto_search_zone', 'message_interface', 'fra', 'libelle bulle module SVG', 'message', 'Recherche par zone'); INSERT INTO label VALUES ('svg_carto_search_object', 'message_interface', 'fra', 'libellé bulle du module SVG', 'message', 'Recherche par objet'); INSERT INTO label VALUES ('svg_carto_search_object', 'message_interface', 'eng', 'label of SVG module', 'message', 'Search by object'); INSERT INTO label VALUES ('svg_carto_saisie_zone', 'message_interface', 'eng', 'label of svg module', 'message', 'Define coordinates of the selected zone'); INSERT INTO label VALUES ('svg_carto_saisie_zone', 'message_interface', 'fra', 'libellé bulle module svg', 'message', 'Calcul des coordonnées de la zone sélectionnée'); INSERT INTO label VALUES ('svg_carto_infos_object', 'message_interface', 'fra', 'libellé bulle du module SVG', 'message', 'Envoi des coordonnées de l''objet sélectionné'); INSERT INTO label VALUES ('svg_carto_infos_object', 'message_interface', 'eng', 'label of module SVG', 'message', 'Send the coordinates of the selected object'); INSERT INTO label VALUES ('svg_carto_view_init', 'message_interface', 'fra', 'label bulles module SVG', 'message', 'Vue générale'); INSERT INTO label VALUES ('svg_carto_view_init', 'message_interface', 'eng', 'label of SVG module', 'message', 'General view'); INSERT INTO label VALUES ('svg_carto_zoom+', 'message_interface', 'fra', 'libellé bulles module SVG', 'message', 'Zoom +'); INSERT INTO label VALUES ('svg_carto_zoom+', 'message_interface', 'eng', 'label of module SVG', 'message', 'Zoom +'); INSERT INTO label VALUES ('svg_carto_tools', 'message_interface', 'eng', 'label of svg functions', 'message', 'Tools'); INSERT INTO label VALUES ('svg_carto_tools', 'message_interface', 'fra', 'label of svg functions', 'message', 'Outils'); INSERT INTO label VALUES ('svg_carto_layers', 'message_interface', 'fra', 'libéllés layers du module SVG', 'message', 'Thèmes'); INSERT INTO label VALUES ('svg_carto_layers', 'message_interface', 'eng', 'label of layers of SGV module', 'message', 'Layers'); INSERT INTO label VALUES ('svg_carto_loading', 'message_interface', 'fra', 'libellé chargement en cours', 'message', 'Chargement en cours...'); INSERT INTO label VALUES ('svg_carto_loading', 'message_interface', 'eng', 'label data loading', 'message', 'Data loading ...'); INSERT INTO label VALUES ('menu_admin_thes_ajout', 'message_interface', 'fra', 'Libellé menu admin Thesaurus', 'message', 'Créer'); INSERT INTO label VALUES ('menu_admin_thes_modif', 'message_interface', 'fra', 'Libellé menu admin Thesaurus', 'message', 'Modifier'); INSERT INTO label VALUES ('menu_admin_thes_supp', 'message_interface', 'fra', 'Libellé menu admin thesaurus', 'message', 'Supprimer'); INSERT INTO label VALUES ('menu_admin_thes_supp', 'message_interface', 'eng', 'Label admin menu', 'message', 'Delete'); INSERT INTO label VALUES ('menu_admin_thes_modif', 'message_interface', 'eng', 'Label admin menu', 'message', 'Update'); INSERT INTO label VALUES ('menu_admin_thes_ajout', 'message_interface', 'eng', 'Label admin menu', 'message', 'Create'); INSERT INTO label VALUES ('menu_admin_thes', 'message_interface', 'fra', 'Libellé menu admin', 'menu', 'Thésaurus'); INSERT INTO label VALUES ('menu_admin_thes', 'message_interface', 'eng', 'Label admin menu', 'menu', 'Thesaurus'); INSERT INTO label VALUES ('admin_thes_desc', 'message_interface', 'fra', 'description thésaurus', 'aide', 'Le module de gestion des thésaurus permet de créer ou d''importer de nouveaux thésaurus, de modifier les concepts et relations du thésaurus propre à l''application et de supprimer des thésaurus.'); INSERT INTO label VALUES ('admin_thes_desc', 'message_interface', 'eng', 'Thesaurus description', 'aide', 'Module for thesaurus management. You can create or import new thesaurus, update concepts and relations of the application thesaurus and delete thesaurus.'); INSERT INTO label VALUES ('titre_accueil', 'message_interface', 'eng', 'Home page label for the administrator pages title', 'message', 'Home'); INSERT INTO label VALUES ('titre_accueil', 'message_interface', 'fra', 'Home page label for the administrator pages title', 'message', 'Accueil'); INSERT INTO label VALUES ('body_conf_user_1', 'message_interface', 'eng', '', 'mail', 'Welcome to MDweb, tool for cataloging and locating data. Your user account is :'); INSERT INTO label VALUES ('body_conf_user_1', 'message_interface', 'fra', 'libellé mail de bienvenue', 'mail', 'Bienvenue dans l''outil de catalogage et de localisation MDweb. Votre compte utilisateur est :'); INSERT INTO label VALUES ('body_loose_pass_1', 'message_interface', 'fra', 'libellé mail nouveau paramètres', 'mail', 'Vos nouveaux paramètres de connexion à l''outil de catalogage et de localisation MDweb sont :'); INSERT INTO label VALUES ('body_new_user_1', 'message_interface', 'fra', 'libellé corps mail inscription', 'mail', 'Bonjour, Les paramètres utilisateur pour la demande d''inscription à MDweb sont :'); INSERT INTO label VALUES ('body_new_user_2', 'message_interface', 'fra', 'libellé corps mail inscription', 'mail', 'Vos paramètres d''inscription à MDweb sont :'); INSERT INTO label VALUES ('body_sign', 'message_interface', 'eng', '', 'mail', 'MDweb Administrator System'); INSERT INTO label VALUES ('body_sign', 'message_interface', 'fra', 'libellé signature mail', 'mail', 'Administrateur MDweb'); INSERT INTO label VALUES ('subject_new_user_2', 'message_interface', 'fra', 'libellé sujet mail inscription', 'mail', 'Inscription au service de métadonnées MDweb'); INSERT INTO label VALUES ('subject_conf_user', 'message_interface', 'fra', 'libellé confirmation inscription', 'mail', 'Confirmation de votre inscription au service de métadonnées MDweb'); INSERT INTO label VALUES ('subject_new_user_1', 'message_interface', 'fra', 'libellé en tête formulaire d''inscription', 'mail', 'Nouvel utilisateur pour le service de métadonnées MDweb'); INSERT INTO label VALUES ('comm_visibilite', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir le module dans lequel une section, une rubrique ou un élément sera saisi. De multiples choix sont possibles. Il est nécessaire de rendre cohérent le choix réalisé dans une rubrique ou dans une section.'); INSERT INTO label VALUES ('comm_mandt_code_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir l\\''obligation de saisie d\\''un élément ou d\\''une rubrique.'); INSERT INTO label VALUES ('comm_max_occ_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir le nombre d\\''occurence d\\''une rubrique ou d\\''un élément dans une rubrique'); INSERT INTO label VALUES ('comm_niv_saisie', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriéte permet de définir le niveau de saisie de l\\''élément ou de la rubrique dans les formulaires'); INSERT INTO label VALUES ('comm_style', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de préciser le type de l\\''élément : élément ou rubrique'); INSERT INTO label VALUES ('comm_field_type', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de préciser le type de champs avec lequel l\\''élément sera saisi. une liste prédéfinie est proposée'); INSERT INTO label VALUES ('comm_hor_size_text', 'message_interface_gabarit', 'fra', '', 'message', 'Pour un champs de type TEXT ou TEXTAREA, cette propriété permet de définir la taille horizontale dans le formulaire. une liste de valeurs est proposée '); INSERT INTO label VALUES ('comm_ver_size_text', 'message_interface_gabarit', 'fra', '', 'message', 'Pour les champs de type TEXTAREA, cette propriété permet de définir la taille verticale, Une liste de valeurs est proposée'); INSERT INTO label VALUES ('comm_nom_control', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir un script javascript qui assure le contrôle de la saisie au bon format '); INSERT INTO label VALUES ('comm_event_js', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir l\\''évenement sur lequel se déclenche le script javascript de contrôle'); INSERT INTO label VALUES ('comm_val_param', 'message_interface_gabarit', 'eng', NULL, 'message', 'This property defines the number maximum of characters that the javascript controls'); INSERT INTO label VALUES ('comm_val_param', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir le nombre maximum de caractères possible pour un champs'); INSERT INTO label VALUES ('comm_contact', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété concerne les sections définissant les coordonnées de l\\''organisme responsable, elle permet de rattacher la section, l\\''élément à une des trois sections de la norme afin d\\''assurer la synchronisation de ces éléments entre l\\''annuaire et la fiche de métadonnées'); INSERT INTO label VALUES ('hor_size_text', 'message_interface_gabarit', 'eng', '', 'message', 'Field''s width'); INSERT INTO label VALUES ('comm_visu_consult', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to hide a section or a class. It is used essentially for the class or the multiple sections'); INSERT INTO label VALUES ('comm_visibilite', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the input form where the section or the element can be input. Multiples choices are possible. The choic must be coherent with the property of the other element of the section.'); INSERT INTO label VALUES ('comm_default_val', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the default value of the element. You can modify this value only inside this module. For an element using a code, list, you must input the number of the element inside the code list (e.g 001) '); INSERT INTO label VALUES ('comm_max_occ_gab', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the number of occurence of an element or a section inside an another one.'); INSERT INTO label VALUES ('comm_mandt_code_gab', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the obligation of input of an element or a section. '); INSERT INTO label VALUES ('comm_niv_saisie', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the level of input of an element or a section inside the input form'); INSERT INTO label VALUES ('comm_style', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to precise the element type : element or section.'); INSERT INTO label VALUES ('comm_field_type', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the type input field in the input form. A predefined list is given.'); INSERT INTO label VALUES ('comm_hor_size_text', 'message_interface_gabarit', 'eng', '', 'message', 'For an input field TEXT or TEXTAREA, this property defines the horizontal size. A list of predefined values is proposed'); INSERT INTO label VALUES ('comm_ver_size_text', 'message_interface_gabarit', 'eng', '', 'message', 'For the input field TEXTAREA, this property defines the vertical size, a list of predefined values is given'); INSERT INTO label VALUES ('comm_nom_control', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used to define the javascript which controls the right format of the input field '); INSERT INTO label VALUES ('comm_contact', 'message_interface_gabarit', 'eng', '', 'message', 'This property is used only for the section and element in defining responsible party informations, it used to attach the element or the section with of three sections in order to synchronise these element between address book and metadata sheet'); INSERT INTO label VALUES ('visu_consult', 'message_interface_gabarit', 'fra', NULL, 'message', 'Visibilité à la consultation'); INSERT INTO label VALUES ('visu_consult', 'message_interface_gabarit', 'eng', NULL, 'message', 'Visibility in search module'); INSERT INTO label VALUES ('delete_sheets', 'message_interface_gabarit', 'eng', '', 'message', 'This action will delete the data profile.'); INSERT INTO label VALUES ('infos_add_gab_1', 'message_interface_gabarit', 'eng', '', 'message', '1. check the element that you want add into your profile (validate with the button ''Add selected element)'); INSERT INTO label VALUES ('no_gabarits', 'message_interface_gabarit', 'eng', '', 'message', 'Database does not contains metadata profiles'); INSERT INTO label VALUES ('finalize_gab', 'message_interface_gabarit', 'eng', NULL, 'message', 'Update the profile'); INSERT INTO label VALUES ('lbl_onChange', 'message_interface_gabarit', 'fra', '', 'message', 'onChange'); INSERT INTO label VALUES ('infos_gal_elmnt', 'message_interface_gabarit', 'eng', '', 'message', 'General properties of an element'); INSERT INTO label VALUES ('vis_inv', 'message_interface_gabarit', 'eng', '', 'message', 'Section invisible in any input form'); INSERT INTO label VALUES ('lbl_style', 'message_interface_gabarit', 'eng', '', 'message', 'Element type'); INSERT INTO label VALUES ('infos_add_gab_2', 'message_interface_gabarit', 'eng', '', 'message', '2. define with details the whole properties of element with the form in the right frame'); INSERT INTO label VALUES ('comm_num_elmnt_gab', 'message_interface_gabarit', 'eng', '', 'message', 'comm_num_elmnt_gab'); INSERT INTO label VALUES ('gab_create_1', 'message_interface_gabarit', 'eng', '', 'message', 'Profile'); INSERT INTO label VALUES ('vis_contact', 'message_interface_gabarit', 'eng', '', 'message', 'Element or section only vsible in contacts form'); INSERT INTO label VALUES ('vis_form', 'message_interface_gabarit', 'eng', '', 'message', 'Element or section only visible in general form'); INSERT INTO label VALUES ('vis_all', 'message_interface_gabarit', 'eng', '', 'message', 'Section visible in all forms'); INSERT INTO label VALUES ('comm_event_js', 'message_interface_gabarit', 'eng', '', 'message', 'This property defines the user event on which the javascript is activated'); INSERT INTO label VALUES ('nom_gab_mandatory', 'message_interface_gabarit', 'eng', '', 'message', 'Mandatory profile cname field !'); INSERT INTO label VALUES ('type_field_mandatory', 'message_interface_gabarit', 'eng', '', 'message', 'Manadatory type field !'); INSERT INTO label VALUES ('hor_size_mandatory', 'message_interface_gabarit', 'eng', '', 'message', 'Mandatory field''s width !'); INSERT INTO label VALUES ('vert_size_mandatory', 'message_interface_gabarit', 'eng', '', 'message', 'Mandatory field''s height !'); INSERT INTO label VALUES ('gabarit_exist_1', 'message_interface_gabarit', 'eng', '', 'message', 'Profile'); INSERT INTO label VALUES ('gabarit_exist_2', 'message_interface_gabarit', 'eng', '', 'message', 'already exist'); INSERT INTO label VALUES ('gabarit_create_2', 'message_interface_gabarit', 'eng', '', 'message', 'was be created'); INSERT INTO label VALUES ('no_infos', 'message_interface_gabarit', 'eng', '', 'message', 'No element selectionned'); INSERT INTO label VALUES ('lbl_elmnt_mtd_id', 'message_interface_gabarit', 'eng', '', 'message', 'Element ID'); INSERT INTO label VALUES ('lbl_mandt_code_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Obligation'); INSERT INTO label VALUES ('lbl_onglet_consult', 'message_interface_gabarit', 'eng', '', 'message', 'Search section'); INSERT INTO label VALUES ('lbl_vis_saisie', 'message_interface_gabarit', 'eng', '', 'message', 'Visibility from the fill'); INSERT INTO label VALUES ('max_occ_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Maximum occurrence'); INSERT INTO label VALUES ('default_val', 'message_interface_gabarit', 'eng', '', 'message', 'Default value'); INSERT INTO label VALUES ('lbl_type_contact', 'message_interface_gabarit', 'eng', '', 'message', 'Contact type'); INSERT INTO label VALUES ('lbl_true', 'message_interface_gabarit', 'eng', '', 'message', 'true'); INSERT INTO label VALUES ('lbl_false', 'message_interface_gabarit', 'eng', '', 'message', 'false'); INSERT INTO label VALUES ('visible', 'message_interface_gabarit', 'eng', '', 'message', 'visible'); INSERT INTO label VALUES ('lbl_readonly', 'message_interface_gabarit', 'eng', '', 'message', 'read only'); INSERT INTO label VALUES ('lbl_text', 'message_interface_gabarit', 'eng', '', 'message', 'text'); INSERT INTO label VALUES ('lbl_mail', 'message_interface_gabarit', 'eng', '', 'message', 'mail'); INSERT INTO label VALUES ('lbl_web', 'message_interface_gabarit', 'eng', '', 'message', 'url'); INSERT INTO label VALUES ('lbl_textarea', 'message_interface_gabarit', 'eng', '', 'message', 'textarea'); INSERT INTO label VALUES ('lbl_select', 'message_interface_gabarit', 'eng', '', 'message', 'select'); INSERT INTO label VALUES ('field_type', 'message_interface_gabarit', 'eng', '', 'message', 'Field type'); INSERT INTO label VALUES ('lbl_maxCar', 'message_interface_gabarit', 'eng', '', 'message', 'character meter'); INSERT INTO label VALUES ('lbl_longMax', 'message_interface_gabarit', 'eng', '', 'message', 'maximum number character'); INSERT INTO label VALUES ('lbl_longMin', 'message_interface_gabarit', 'eng', '', 'message', 'minimum number character'); INSERT INTO label VALUES ('lbl_TestFlo', 'message_interface_gabarit', 'eng', '', 'message', 'real field test'); INSERT INTO label VALUES ('lbl_testEnt', 'message_interface_gabarit', 'eng', '', 'message', 'Integer field test'); INSERT INTO label VALUES ('lbl_testEmail', 'message_interface_gabarit', 'eng', '', 'message', 'Email field test'); INSERT INTO label VALUES ('lbl_testUrl', 'message_interface_gabarit', 'eng', '', 'message', 'Url field test'); INSERT INTO label VALUES ('lbl_verifDate', 'message_interface_gabarit', 'eng', '', 'message', 'Date format test'); INSERT INTO label VALUES ('lbl_onChange', 'message_interface_gabarit', 'eng', '', 'message', 'onChange'); INSERT INTO label VALUES ('lbl_onKeyPress', 'message_interface_gabarit', 'eng', '', 'message', 'onKeyPress'); INSERT INTO label VALUES ('lbl_rub', 'message_interface_gabarit', 'eng', '', 'message', 'heading'); INSERT INTO label VALUES ('lbl_elt', 'message_interface_gabarit', 'eng', '', 'message', 'element'); INSERT INTO label VALUES ('inconnu', 'message_interface_gabarit', 'eng', '', 'message', 'unknown'); INSERT INTO label VALUES ('consult_invisible', 'message_interface_gabarit', 'eng', '', 'message', 'invisible to search'); INSERT INTO label VALUES ('consult_visible', 'message_interface_gabarit', 'eng', '', 'message', 'visible to search'); INSERT INTO label VALUES ('onglet_parent', 'message_interface_gabarit', 'eng', 'relative', 'message', 'place'); INSERT INTO label VALUES ('lbl_place', 'message_interface_gabarit', 'eng', '', 'message', 'place'); INSERT INTO label VALUES ('no_racine', 'message_interface_gabarit', 'eng', '', 'message', 'No metadata root for this standard'); INSERT INTO label VALUES ('lbl_style', 'message_interface_gabarit', 'fra', '', 'message', 'Type de l''élément'); INSERT INTO label VALUES ('nom_control', 'message_interface_gabarit', 'eng', '', 'message', 'Javascript control name'); INSERT INTO label VALUES ('event_js', 'message_interface_gabarit', 'eng', '', 'message', 'Event associated to the javascript control'); INSERT INTO label VALUES ('val_param', 'message_interface_gabarit', 'eng', '', 'message', 'Number of characters'); INSERT INTO label VALUES ('comm_num_elmnt_gab', 'message_interface_gabarit', 'fra', '', 'message', 'comm_num_elmnt_gab'); INSERT INTO label VALUES ('comm_visu_consult', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de rendre visible ou pas une rubrique ou une classe. Elle est essentiellement utilisée pour cacher les classes ou les imbriquations multiples de rubriques'); INSERT INTO label VALUES ('gab_create_1', 'message_interface_gabarit', 'fra', '', 'message', 'Le gabarit'); INSERT INTO label VALUES ('gab_2', 'message_interface_gabarit', 'eng', '', 'message', 'from data profile'); INSERT INTO label VALUES ('nom_new_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Give a profile name for this new profile'); INSERT INTO label VALUES ('gab_create_2', 'message_interface_gabarit', 'fra', NULL, 'message', 'a été crée'); INSERT INTO label VALUES ('delete_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Delete this metadata profile'); INSERT INTO label VALUES ('delete_query', 'message_interface_gabarit', 'eng', '', 'message', 'Do you really want to delete ?'); INSERT INTO label VALUES ('form_predef', 'message_interface_gabarit', 'eng', '', 'message', 'Input Form and preset value management'); INSERT INTO label VALUES ('form_predef', 'message_interface_gabarit', 'fra', '', 'message', 'Formulaire de saisie et gestion des valeurs prédéfinies'); INSERT INTO label VALUES ('form_contacts', 'message_interface_gabarit', 'eng', '', 'message', 'Input form and address book'); INSERT INTO label VALUES ('predef_contacts', 'message_interface_gabarit', 'eng', '', 'message', 'Preset values management and address book'); INSERT INTO label VALUES ('lbl_code_gabarit', 'message_interface_gabarit', 'eng', '', 'message', 'Profile code (ex: couche_vecteur)'); INSERT INTO label VALUES ('lbl_gabarit_name', 'message_interface_gabarit', 'eng', '', 'message', 'Profile name'); INSERT INTO label VALUES ('legende', 'message_interface_gabarit', 'eng', '', 'message', 'To Show/Hide the caption'); INSERT INTO label VALUES ('create_new_gab', 'message_interface_gabarit', 'eng', '', 'message', 'To create new profile'); INSERT INTO label VALUES ('new_gab', 'message_interface_gabarit', 'eng', '', 'message', 'New data profile'); INSERT INTO label VALUES ('vert_size_text', 'message_interface_gabarit', 'eng', '', 'message', 'field''s height'); INSERT INTO label VALUES ('vis_form_predef', 'message_interface_gabarit', 'eng', '', 'message', 'Section only visible in general form and preset values form '); INSERT INTO label VALUES ('vis_form_contacts', 'message_interface_gabarit', 'eng', '', 'message', 'Section only visible in general form and contacts form'); INSERT INTO label VALUES ('vis_predef_contacts', 'message_interface_gabarit', 'eng', '', 'message', 'Section only visible in preset values form and contacts form'); INSERT INTO label VALUES ('invisible', 'message_interface_gabarit', 'eng', '', 'message', 'invisible'); INSERT INTO label VALUES ('vis_auto', 'message_interface_gabarit', 'eng', '', 'message', 'Invisible element in all forms : Metadata value automatically calculated'); INSERT INTO label VALUES ('vis_predef', 'message_interface_gabarit', 'eng', '', 'message', 'Element or section only vsible in preset values form'); INSERT INTO label VALUES ('gabarit_create_2', 'message_interface_gabarit', 'fra', '', 'message', 'a été créé'); INSERT INTO label VALUES ('no_infos', 'message_interface_gabarit', 'fra', '', 'message', 'Aucun élément n''est selectionné'); INSERT INTO label VALUES ('lbl_elmnt_mtd_id', 'message_interface_gabarit', 'fra', '', 'message', 'ID élément'); INSERT INTO label VALUES ('lbl_mandt_code_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Obligation'); INSERT INTO label VALUES ('lbl_onglet_consult', 'message_interface_gabarit', 'fra', '', 'message', 'Onglet de consultation'); INSERT INTO label VALUES ('lbl_vis_saisie', 'message_interface_gabarit', 'fra', '', 'message', 'Visibilité à la saisie'); INSERT INTO label VALUES ('max_occ_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Nombre d''occurences'); INSERT INTO label VALUES ('default_val', 'message_interface_gabarit', 'fra', '', 'message', 'Valeur par défaut'); INSERT INTO label VALUES ('lbl_type_contact', 'message_interface_gabarit', 'fra', '', 'message', 'Type de contact'); INSERT INTO label VALUES ('lbl_true', 'message_interface_gabarit', 'fra', '', 'message', 'vrai'); INSERT INTO label VALUES ('lbl_false', 'message_interface_gabarit', 'fra', '', 'message', 'faux'); INSERT INTO label VALUES ('visible', 'message_interface_gabarit', 'fra', '', 'message', 'visible'); INSERT INTO label VALUES ('lbl_readonly', 'message_interface_gabarit', 'fra', '', 'message', 'lecture seule'); INSERT INTO label VALUES ('lbl_text', 'message_interface_gabarit', 'fra', '', 'message', 'text'); INSERT INTO label VALUES ('lbl_mail', 'message_interface_gabarit', 'fra', '', 'message', 'mail'); INSERT INTO label VALUES ('lbl_web', 'message_interface_gabarit', 'fra', '', 'message', 'url'); INSERT INTO label VALUES ('lbl_textarea', 'message_interface_gabarit', 'fra', '', 'message', 'textarea'); INSERT INTO label VALUES ('lbl_select', 'message_interface_gabarit', 'fra', '', 'message', 'liste'); INSERT INTO label VALUES ('field_type', 'message_interface_gabarit', 'fra', '', 'message', 'Type de champ'); INSERT INTO label VALUES ('lbl_maxCar', 'message_interface_gabarit', 'fra', '', 'message', 'compteur de caractères'); INSERT INTO label VALUES ('lbl_longMax', 'message_interface_gabarit', 'fra', '', 'message', 'Longueur maximale de car.'); INSERT INTO label VALUES ('lbl_longMin', 'message_interface_gabarit', 'fra', '', 'message', 'nb caractères min'); INSERT INTO label VALUES ('lbl_TestFlo', 'message_interface_gabarit', 'fra', '', 'message', 'Test pour un champ réel'); INSERT INTO label VALUES ('lbl_testEnt', 'message_interface_gabarit', 'fra', '', 'message', 'Test pour un champ entier'); INSERT INTO label VALUES ('lbl_testEmail', 'message_interface_gabarit', 'fra', '', 'message', 'Test pour un champ mail'); INSERT INTO label VALUES ('lbl_testUrl', 'message_interface_gabarit', 'fra', '', 'message', 'Test pour un champ url'); INSERT INTO label VALUES ('lbl_verifDate', 'message_interface_gabarit', 'fra', '', 'message', 'Vérification du format de date'); INSERT INTO label VALUES ('nom_control', 'message_interface_gabarit', 'fra', '', 'message', 'Nom du contrôle javascript'); INSERT INTO label VALUES ('event_js', 'message_interface_gabarit', 'fra', '', 'message', 'Evènement associé au contrôle javascript'); INSERT INTO label VALUES ('lbl_onKeyPress', 'message_interface_gabarit', 'fra', '', 'message', 'onKeyPress'); INSERT INTO label VALUES ('no_gabarits', 'message_interface_gabarit', 'fra', '', 'message', 'La base ne contient pas de gabarits'); INSERT INTO label VALUES ('delete_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Supprimer ce gabarit'); INSERT INTO label VALUES ('gab_2', 'message_interface_gabarit', 'fra', '', 'message', 'du gabarit'); INSERT INTO label VALUES ('nom_new_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Donner un nom pour le nouveau gabarit'); INSERT INTO label VALUES ('delete_query', 'message_interface_gabarit', 'fra', '', 'message', 'Voulez-vous vraiment supprimer ?'); INSERT INTO label VALUES ('delete_sheets', 'message_interface_gabarit', 'fra', '', 'message', 'Ceci supprimera le gabarit.'); INSERT INTO label VALUES ('finalize_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Valider les modifications'); INSERT INTO label VALUES ('form_contacts', 'message_interface_gabarit', 'fra', '', 'message', 'Formulaire de saisie et annuaire de coordonnées'); INSERT INTO label VALUES ('predef_contacts', 'message_interface_gabarit', 'fra', '', 'message', 'Gestion des valeurs prédéfinies et annuaire de coordonnées'); INSERT INTO label VALUES ('lbl_code_gabarit', 'message_interface_gabarit', 'fra', '', 'message', 'Code du gabarit (ex: couche_vecteur)'); INSERT INTO label VALUES ('legende', 'message_interface_gabarit', 'fra', '', 'message', 'Afficher/Masquer la légende'); INSERT INTO label VALUES ('create_new_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Créer un nouveau gabarit'); INSERT INTO label VALUES ('new_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Nouveau Gabarit'); INSERT INTO label VALUES ('hor_size_text', 'message_interface_gabarit', 'fra', '', 'message', 'Largeur du champ'); INSERT INTO label VALUES ('vert_size_text', 'message_interface_gabarit', 'fra', '', 'message', 'Hauteur du champ'); INSERT INTO label VALUES ('vis_form_predef', 'message_interface_gabarit', 'fra', '', 'message', 'Rubrique visible uniquement dans le formulaire générale et celui de saisie des valeurs prédéfinies'); INSERT INTO label VALUES ('vis_form_contacts', 'message_interface_gabarit', 'fra', '', 'message', 'Rubrique visible uniquement dans le formulaire générale et celui de saisie des contacts'); INSERT INTO label VALUES ('vis_predef_contacts', 'message_interface_gabarit', 'fra', '', 'message', 'Rubrique visible uniquement dans le formulaire de saisie des valeurs prédéfinies et des contacts'); INSERT INTO label VALUES ('invisible', 'message_interface_gabarit', 'fra', '', 'message', 'invisible'); INSERT INTO label VALUES ('vis_auto', 'message_interface_gabarit', 'fra', '', 'message', 'Elément invisible dans les formulaires : valeur de métadonnée caculée automatiquement'); INSERT INTO label VALUES ('vis_predef', 'message_interface_gabarit', 'fra', '', 'message', 'Elément ou rubrique visible uniquement dans les formulaires de saisie des valeures prédéfinie'); INSERT INTO label VALUES ('vis_contact', 'message_interface_gabarit', 'fra', '', 'message', 'Elément ou rubrique visible uniquement dans les formulaires de saisie des contacts'); INSERT INTO label VALUES ('vis_form', 'message_interface_gabarit', 'fra', '', 'message', 'Elément ou rubrique visible uniquement dans le formulaire général'); INSERT INTO label VALUES ('vis_all', 'message_interface_gabarit', 'fra', '', 'message', 'Rubrique visible dans tous les formulaires de saisies'); INSERT INTO label VALUES ('vis_inv', 'message_interface_gabarit', 'fra', '', 'message', 'Rubrique visble dans aucun formulaire'); INSERT INTO label VALUES ('nom_gab_mandatory', 'message_interface_gabarit', 'fra', '', 'message', 'Champ Nom gabarit obligatoire!'); INSERT INTO label VALUES ('type_field_mandatory', 'message_interface_gabarit', 'fra', '', 'message', 'Type de champ de saisie obligatoire !'); INSERT INTO label VALUES ('hor_size_mandatory', 'message_interface_gabarit', 'fra', '', 'message', 'Largeur du champ de saisie obligatoire !'); INSERT INTO label VALUES ('vert_size_mandatory', 'message_interface_gabarit', 'fra', '', 'message', 'Hauteur du champ de saisie obligatoire !'); INSERT INTO label VALUES ('gabarit_exist_1', 'message_interface_gabarit', 'fra', '', 'message', 'Le gabarit'); INSERT INTO label VALUES ('gabarit_exist_2', 'message_interface_gabarit', 'fra', '', 'message', 'existe déjà'); INSERT INTO label VALUES ('lbl_rub', 'message_interface_gabarit', 'fra', '', 'message', 'rubrique'); INSERT INTO label VALUES ('lbl_elt', 'message_interface_gabarit', 'fra', '', 'message', 'élément'); INSERT INTO label VALUES ('inconnu', 'message_interface_gabarit', 'fra', '', 'message', 'inconnu'); INSERT INTO label VALUES ('consult_invisible', 'message_interface_gabarit', 'fra', '', 'message', 'invisible à la consultation'); INSERT INTO label VALUES ('consult_visible', 'message_interface_gabarit', 'fra', '', 'message', 'visible à la consultation'); INSERT INTO label VALUES ('no_racine', 'message_interface_gabarit', 'fra', '', 'message', 'Pas d''élément racine pour cette norme'); INSERT INTO label VALUES ('val_param', 'message_interface_gabarit', 'fra', '', 'message', 'Nombre de caractères'); INSERT INTO label VALUES ('infos_add_gab_1', 'message_interface_gabarit', 'fra', '', 'message', '1. cocher les éléments que vous souhaitez les incorporer à votre gabarit (valider avec le bouton Ajouter les éléments sélectionnés)'); INSERT INTO label VALUES ('infos_add_gab_2', 'message_interface_gabarit', 'fra', '', 'message', '2. définissez précisément ses propriétés à l''aide des champs de la fenêtre de droite'); INSERT INTO label VALUES ('title_add_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Ajouter un gabarit'); INSERT INTO label VALUES ('title_add_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Create a metadata profile'); INSERT INTO label VALUES ('title_update_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Update a metadata profile'); INSERT INTO label VALUES ('title_update_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Modifier un gabarit'); INSERT INTO label VALUES ('help_update_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Note sur la modification d’un gabarit : la structure (ajout ou suppression d’élément) d’un gabarit peut être modifiée si et seulement si aucun fiche n’est créée avec ce gabarit. Dans le cas contraire, seules les propriétés des éléments peuvent être modifiées (obligation de saisie, occurrence, type de champs, javascript attaché au control, etc.)'); INSERT INTO label VALUES ('help_update_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Informations about the metadata profile metadata : the structure (add or delete an element) of a metadata profile can be modify only there is any metadata sheet create with it. in this case, only the caracteristics of element can be modified (mandatory input, occurrence, field type, field control javascript, etc.)'); INSERT INTO label VALUES ('title_delete_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Supprimer un gabarit'); INSERT INTO label VALUES ('title_delete_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Delete a metadata profile'); INSERT INTO label VALUES ('comm_standard_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Standard de métadonnées que vous souhaitez utiliser'); INSERT INTO label VALUES ('comm_gab_name', 'message_interface_gabarit', 'fra', '', 'message', 'Par défaut, vous devez donner le libellé anglais du gabarit que vous souhaitez créer. Il doit être explicite. Vous pourrez traduire par la suite dans votre langue. 50 caractères maximum'); INSERT INTO label VALUES ('comm_gab_name', 'message_interface_gabarit', 'eng', '', 'message', 'By default, you must give an english label for the new metadata profile. The label must be explicit. After the creation, you can translate in your language, max size 50 character.'); INSERT INTO label VALUES ('comm_gab_code', 'message_interface_gabarit', 'fra', '', 'message', 'Le code gabarit correspond au nom interne du gabarit. Il doit être court, compréhensible et sans espace. Ex : ‘couche_vecteur’ pour le gabarit ‘Thème vecteur’, 20 caractères. maximum'); INSERT INTO label VALUES ('comm_gab_code', 'message_interface_gabarit', 'eng', '', 'message', 'This code is the identifier inside the database of metadata profile. It must be short and without space and meta character. Ex : ‘vector_layer’ for the profile ‘Vector Layer’, max size 20 character.'); INSERT INTO label VALUES ('gab_code', 'message_interface_gabarit', 'eng', '', 'message', 'Metadata profile code'); INSERT INTO label VALUES ('gab_code', 'message_interface_gabarit', 'fra', '', 'message', 'Code du gabarit'); INSERT INTO label VALUES ('standard_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Metadata standard name'); INSERT INTO label VALUES ('standard_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Nom du standard de métadonnées'); INSERT INTO label VALUES ('gab_parent', 'message_interface_gabarit', 'fra', '', 'message', 'Gabarit parent'); INSERT INTO label VALUES ('gab_parent', 'message_interface_gabarit', 'eng', '', 'message', 'Parent metadata profile'); INSERT INTO label VALUES ('gab_name', 'message_interface_gabarit', 'eng', '', 'message', 'Metadata profile name'); INSERT INTO label VALUES ('gab_name', 'message_interface_gabarit', 'fra', '', 'message', 'Nom du gabarit'); INSERT INTO label VALUES ('help_delete_gab', 'message_interface_gabarit', 'fra', '', 'message', 'Note sur la suppression d’un gabarit : un gabarit peut être supprimé si et seulement si aucune fiche de métadonnées a été créée avec. Seuls les gabarits n’ayant été utilisé pour créer une fiche apparaissent dans la liste dessus '); INSERT INTO label VALUES ('help_delete_gab', 'message_interface_gabarit', 'eng', '', 'message', 'Informations about metadata profile deleting: a metadata profile can be delete if any metadata sheet created with it exists. The metadata profile list given are the profile without metadata sheet. '); INSERT INTO label VALUES ('gab_delete', 'message_interface_gabarit', 'fra', '', 'message', 'Le gabarit a été supprimé de MDweb'); INSERT INTO label VALUES ('gab_delete', 'message_interface_gabarit', 'eng', '', 'message', 'The metadata profile has been deleted '); INSERT INTO label VALUES ('comm_standard_gab', 'message_interface_gabarit', 'eng', '', 'message', 'metadata standard that you want to use'); INSERT INTO label VALUES ('infos_elmnt_md', 'message_interface_gabarit', 'fra', '', 'message', 'Propriétés de l''élément de métadonnées'); INSERT INTO label VALUES ('infos_gal_elmnt', 'message_interface_gabarit', 'fra', '', 'message', 'Propriétés générales de l''élément'); INSERT INTO label VALUES ('infos_form_elmnt', 'message_interface_gabarit', 'fra', '', 'message', 'Propriétés pour la construction du formulaire de saisie'); INSERT INTO label VALUES ('infos_form_elmnt', 'message_interface_gabarit', 'eng', '', 'message', 'Element properties to build input form '); INSERT INTO label VALUES ('finalize_gab_infos', 'message_interface_gabarit', 'fra', '', 'message', 'Ajouter le gabarit ou valider les modifications réalisés sur le gabarit dans la base de données MDweb. Pour cela, vous devez déjà avoir défini des éléments et ses propriétés. Vous pouvez ajouter d''autres éléments à un gabarit tant qu''aucun fiche n''est crée avec ce gabarit'); INSERT INTO label VALUES ('finalize_gab_infos', 'message_interface_gabarit', 'eng', '', 'message', 'Add a profile or update the metadata profile to the MDweb database. For that, you must have define completely the properties of its elements. You can add other elements, using the update module if any metadata sheet was created with this profile '); INSERT INTO label VALUES ('elmnt_infos_md_text', 'message_interface_gabarit', 'fra', '', 'message', 'Ajouter le gabarit à la base de données MDweb. Pour cela, vous devez déjà avoir défini des éléments et ses propriétés. Vous pouvez ajouter d''autres éléments à un gabarit tant qu''aucun fiche ne soit créée avec ce gabarit, en utilisant le module Gabarits >Modifier'); INSERT INTO label VALUES ('elmnt_infos_md_text', 'message_interface_gabarit', 'eng', NULL, 'message', 'Add the metadata profile to the MDweb database. for that, you must have define all its elements and its properties. You can add other elements , en using the metadata profile module Update, to your metadata proffile as long as any a new metadata sheet will be create with this profile. '); INSERT INTO label VALUES ('infos_elmnt_md_text', 'message_interface_gabarit', 'eng', NULL, 'message', 'To edit the element properties of your metadata profile, select the element over the metadata profile tree on left'); INSERT INTO label VALUES ('infos_elmnt_md_text', 'message_interface_gabarit', 'fra', '', 'message', 'Pour éditer les propriétés d''un élément de votre gabarit, sélectionnez l''élément dans l''arbre de la fenêtre gauche.'); INSERT INTO label VALUES ('infos_elmnt_md', 'message_interface_gabarit', 'eng', NULL, 'message', 'Metadata element properties'); INSERT INTO label VALUES ('contacts_only', 'message_interface_gabarit', 'eng', '', 'message', 'Address book'); INSERT INTO label VALUES ('form_only', 'message_interface_gabarit', 'eng', '', 'message', 'Input form only'); INSERT INTO label VALUES ('form_only', 'message_interface_gabarit', 'fra', '', 'message', 'Formulaire de saisie uniquement'); INSERT INTO label VALUES ('auto', 'message_interface_gabarit', 'fra', '', 'message', 'insertion automatique (valeur par défaut de l''élément)'); INSERT INTO label VALUES ('auto', 'message_interface_gabarit', 'eng', '', 'message', 'Automatic input (default value of element)'); INSERT INTO label VALUES ('contacts_only', 'message_interface_gabarit', 'fra', '', 'message', 'Annuaire de coordonnées'); INSERT INTO label VALUES ('gab_create_2', 'message_interface_gabarit', 'eng', NULL, 'message', 'has been created'); INSERT INTO label VALUES ('add_elt', 'message_interface_gabarit', 'fra', '', 'message', 'Ajouter un élément'); INSERT INTO label VALUES ('add_elt', 'message_interface_gabarit', 'eng', '', 'message', 'Add an element'); INSERT INTO label VALUES ('add_selection', 'message_interface_gabarit', 'fra', '', 'message', 'Ajouter les éléments sélectionnés'); INSERT INTO label VALUES ('add_selection', 'message_interface_gabarit', 'eng', '', 'message', 'Add selected elements'); INSERT INTO label VALUES ('tous_form', 'message_interface_gabarit', 'fra', '', 'message', 'visisble dans tous les formulaires'); INSERT INTO label VALUES ('tous_form', 'message_interface_gabarit', 'eng', '', 'message', 'visible everywhere'); INSERT INTO label VALUES ('copy_gab', 'message_interface_gabarit', 'eng', NULL, 'message', 'Create a new metadata profile with an existing one'); INSERT INTO label VALUES ('copy_gab', 'message_interface_gabarit', 'fra', NULL, 'message', 'Créer votre gabarit à partir d’un gabarit existant'); INSERT INTO label VALUES ('translate', 'message_interface_gabarit', 'eng', NULL, 'message', 'Translation of label'); INSERT INTO label VALUES ('translate', 'message_interface_gabarit', 'fra', NULL, 'message', 'Traduction du libellé'); INSERT INTO label VALUES ('comm_consult', 'message_interface_gabarit', 'eng', '', 'message', 'This property define the place of the element or section metadata sheet visualization in search module'); INSERT INTO label VALUES ('comm_consult', 'message_interface_gabarit', 'fra', '', 'message', 'Cette propriété permet de définir la place de l\\''élémént ou de la rubrique dans la visualisation detaillé de la fiche en consultation'); INSERT INTO label VALUES ('gab_fils', 'message_interface_gabarit', 'eng', '', 'message', 'Metadata profile son'); INSERT INTO label VALUES ('gab_fils', 'message_interface_gabarit', 'fra', '', 'message', 'Gabarit fils'); INSERT INTO label VALUES ('comm_fils', 'message_interface_gabarit', 'eng', NULL, 'message', 'With MDweb you can define a metadata profile as a dataserie or a dataset. MDweb can create a hierachy between the differents metadata profile(more details inside the user guide). If you don''t attach a metadata profile to your new metadata profile , it will consider as a dataset.'); INSERT INTO label VALUES ('comm_fils', 'message_interface_gabarit', 'fra', NULL, 'message', 'MDweb permet de définir un gabarit en tant que collection de données ou jeu de données. Il permet ainsi de créer une hiérarchie entre les différents gabarits (voir guide utilisateur).Si vous n’attacher pas un gabarit parent à votre nouveau gabarit. Il sera considérer comme un jeu de données.'); INSERT INTO label VALUES ('comm_db_host', 'message_interface_geodb', 'eng', '', 'message', 'IP address or server name where geodatabase is located'); INSERT INTO label VALUES ('comm_db_host', 'message_interface_geodb', 'fra', '', 'message', 'Adresse IP ou nom du serveur sur lequel est hébergé la base de données géographique'); INSERT INTO label VALUES ('comm_db_name', 'message_interface_geodb', 'eng', '', 'message', 'Name of geodatabase'); INSERT INTO label VALUES ('comm_db_name', 'message_interface_geodb', 'fra', '', 'message', 'Nom de la base de données géographique'); INSERT INTO label VALUES ('comm_db_port', 'message_interface_geodb', 'eng', '', 'message', 'Socket TCP/IP number for the connexion to PostgreSQL server. Normally, it is 5432. To connect to PostgreSQL server, this socket must be open '); INSERT INTO label VALUES ('comm_db_port', 'message_interface_geodb', 'fra', '', 'message', 'Numéro du port TCP/IP qui permet de se connecter à la base de données géographique. pour PostgreSQL, ce port est 5432. Pour permettre la connexion à PostgreSQL ce port doit être ouvert'); INSERT INTO label VALUES ('comm_db_pwd', 'message_interface_geodb', 'eng', '', 'message', 'PostgreSQL user password PostgreSQL to connect to the geodatabase'); INSERT INTO label VALUES ('comm_db_pwd', 'message_interface_geodb', 'fra', '', 'message', 'Mot de passe de l\\''utilisateur PostgreSQL pour se connecter à la base de données géographique'); INSERT INTO label VALUES ('comm_db_user', 'message_interface_geodb', 'eng', '', 'message', 'PostgreSQL username that allows to connect to geodatabase '); INSERT INTO label VALUES ('comm_db_user', 'message_interface_geodb', 'fra', '', 'message', 'Nom de l\\''utilisateur PostgreSQL qui permet de se connecter à la base de données géographiques'); INSERT INTO label VALUES ('comm_file_dbf', 'message_interface_geodb', 'eng', '', 'message', 'File name of DBF extension associated to the shapefile SHP'); INSERT INTO label VALUES ('comm_file_dbf', 'message_interface_geodb', 'fra', '', 'message', 'Nom du fichier d\\''extension DBF associé au fichier de forme SHP'); INSERT INTO label VALUES ('comm_file_postgis', 'message_interface_geodb', 'eng', '', 'message', 'Absolute path of spatial functions lwpostgis.sql file. By default, it is located in share/contrib folders of PostgreSQL folder'); INSERT INTO label VALUES ('comm_file_postgis', 'message_interface_geodb', 'fra', '', 'message', 'Chemin absolu du fichier des fonctions spatiales lwpostgis.sql. Par défaut, il est situé dans le répertoire share/contrib de PostgreSQL'); INSERT INTO label VALUES ('comm_file_prj', 'message_interface_geodb', 'eng', '', 'message', 'Projection file definition associated to the shapefile (shp)'); INSERT INTO label VALUES ('comm_file_prj', 'message_interface_geodb', 'fra', '', 'message', 'Fichier de définition de projection associé au fichier de forme (shp)'); INSERT INTO label VALUES ('comm_file_shp', 'message_interface_geodb', 'eng', '', 'message', 'File name of shapefile SHP'); INSERT INTO label VALUES ('comm_file_shp', 'message_interface_geodb', 'fra', '', 'message', 'Nom du fichier de forme d\\''extension SHP'); INSERT INTO label VALUES ('comm_file_shx', 'message_interface_geodb', 'eng', '', 'message', 'File name of SHX extension associated to the shapefile SHP'); INSERT INTO label VALUES ('comm_file_shx', 'message_interface_geodb', 'fra', '', 'message', 'Nom du fichier d\\''extension SHX associé au fichier de forme SHP'); INSERT INTO label VALUES ('comm_file_spatial_ref_sys', 'message_interface_geodb', 'eng', '', 'message', 'Absolute path of definition of spatial reference system file : spatial_ref_sys.sql file. By default, it is located in share/contrib folders of PostgreSQL folder'); INSERT INTO label VALUES ('comm_file_spatial_ref_sys', 'message_interface_geodb', 'fra', '', 'message', 'Chemin absolu du fichier de définition des systèmes de référence spatial_ref_sys.sql. Par défaut, il est situé dans le répertoire share/contrib de PostgreSQL'); INSERT INTO label VALUES ('comm_invproj', 'message_interface_geodb', 'eng', '', 'message', 'Absolute path of tool reprojection file INVPROJ (by default Linux OS : /usr/bin/local/invproj , Windows : invproj.exe if the folder is declared on the environment variable PATH)'); INSERT INTO label VALUES ('comm_invproj', 'message_interface_geodb', 'fra', '', 'message', 'Chemin absolu de l\\''utilitaire de reprojection INVPROJ (by default Linux OS : /usr/bin/local/invproj , Windows : invproj.exe si le dossier est déclaré dans la variable d\\''environnement PATH)'); INSERT INTO label VALUES ('comm_proj', 'message_interface_geodb', 'eng', '', 'message', 'Absolute path of tool projection file PROJ (by default Linux OS : /usr/bin/local/proj , Windows : proj.exe if the folder is declared on the environment variable PATH)'); INSERT INTO label VALUES ('comm_proj', 'message_interface_geodb', 'fra', '', 'message', 'Chemin absolu de l\\''utilitaire de projection PROJ (by default Linux OS : /usr/bin/local/proj , Windows : proj.exe si le dossier est déclaré dans la variable d\\''environnement PATH)'); INSERT INTO label VALUES ('comm_srid', 'message_interface_geodb', 'eng', '', 'message', 'System Reference Identifier : srid. iIt is mandatory to import a layer in PostgreSQL'); INSERT INTO label VALUES ('comm_srid', 'message_interface_geodb', 'fra', '', 'message', 'Identifiant du système de référence spatial : srid. il est indispensable à l\\''import d\\''une couche géograpique dans PostgreSQL'); INSERT INTO label VALUES ('comm_srtext', 'message_interface_geodb', 'eng', '', 'message', 'Description of spatial reference system. It corresponds to the srtext which is associated to the srid (reference system identifier)'); INSERT INTO label VALUES ('comm_srtext', 'message_interface_geodb', 'fra', '', 'message', 'Description du système de référence spatial. Elle correspond au srtext et accompagne générale le srid (identifiant du système de référence spatial)'); INSERT INTO label VALUES ('comm_table_name', 'message_interface_geodb', 'eng', '', 'message', 'Name of table in geodatabase'); INSERT INTO label VALUES ('comm_table_name', 'message_interface_geodb', 'fra', '', 'message', 'Nom de la table dans la base de données géographique'); INSERT INTO label VALUES ('config_carto_failed', 'message_interface_geodb', 'eng', '', 'message', 'Error during the creation of configuration file config.inc.carto.php'); INSERT INTO label VALUES ('config_carto_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de la création du fichier config.inc.carto.php'); INSERT INTO label VALUES ('config_carto_ok', 'message_interface_geodb', 'eng', '', 'message', 'The configuration file of geographical module (config.inc.carto.php) has been created'); INSERT INTO label VALUES ('config_carto_ok', 'message_interface_geodb', 'fra', '', 'message', 'Le fichier de configuration du module géographique (config.inc.carto.php) a été crée avec succès'); INSERT INTO label VALUES ('create_geo_db_cancelled', 'message_interface_geodb', 'eng', '', 'message', 'Cancel of geodatabase creation - You must change the configuration parameters'); INSERT INTO label VALUES ('create_geo_db_cancelled', 'message_interface_geodb', 'fra', '', 'message', 'Annulation de la création de la base de données géographiques - Changer vos paramètres de configuration'); INSERT INTO label VALUES ('create_geo_db_end', 'message_interface_geodb', 'eng', '', 'message', 'End of process of geodatabase creation'); INSERT INTO label VALUES ('create_geo_db_end', 'message_interface_geodb', 'fra', '', 'message', 'Fin de la création de la base de données géographiques'); INSERT INTO label VALUES ('create_geo_db_failed', 'message_interface_geodb', 'eng', '', 'message', 'Error during the creation of geodatabase (this geodatabase already exists)'); INSERT INTO label VALUES ('create_geo_db_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de la création de la base de donnnées géographiques (Cette base existe déjà)'); INSERT INTO label VALUES ('create_geo_db_ok', 'message_interface_geodb', 'eng', '', 'message', 'The geodatabase has been created'); INSERT INTO label VALUES ('create_geo_db_ok', 'message_interface_geodb', 'fra', '', 'message', 'La base de données géographique a été créée avec succès'); INSERT INTO label VALUES ('create_lang_plpgsql_failed', 'message_interface_geodb', 'eng', '', 'message', 'Error during the insert of procedural language PLPGSQL to the geodatabase'); INSERT INTO label VALUES ('create_lang_plpgsql_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de l''ajout language procédurale PLPGSQL à la base de données géographiques'); INSERT INTO label VALUES ('create_lang_plpgsql_ok', 'message_interface_geodb', 'eng', '', 'message', 'Insert of procedural language PLPGSQL to the geodatabase'); INSERT INTO label VALUES ('create_lang_plpgsql_ok', 'message_interface_geodb', 'fra', '', 'message', 'Ajout du langage procédural PLPGSQL à la base de données géographiques'); INSERT INTO label VALUES ('creer_config', 'message_interface_geodb', 'eng', '', 'message', 'Creation of geographical configuration file'); INSERT INTO label VALUES ('creer_config', 'message_interface_geodb', 'fra', '', 'message', 'Création du fichier de configuration du module géographique'); INSERT INTO label VALUES ('db_host', 'message_interface_geodb', 'eng', '', 'message', 'IP address of DBMS'); INSERT INTO label VALUES ('db_host', 'message_interface_geodb', 'fra', '', 'message', 'Adresse IP du SGBD'); INSERT INTO label VALUES ('db_name', 'message_interface_geodb', 'eng', '', 'message', 'Geodatabase name'); INSERT INTO label VALUES ('db_name', 'message_interface_geodb', 'fra', '', 'message', 'Nom de la base de données géographiques'); INSERT INTO label VALUES ('db_port', 'message_interface_geodb', 'eng', '', 'message', 'TCP/IP port of DBMS'); INSERT INTO label VALUES ('db_port', 'message_interface_geodb', 'fra', '', 'message', 'Port TCP/IP du SGDB'); INSERT INTO label VALUES ('db_pwd', 'message_interface_geodb', 'eng', '', 'message', 'Password'); INSERT INTO label VALUES ('db_pwd', 'message_interface_geodb', 'fra', '', 'message', 'Mot de passe'); INSERT INTO label VALUES ('db_user', 'message_interface_geodb', 'eng', '', 'message', 'User login'); INSERT INTO label VALUES ('db_user', 'message_interface_geodb', 'fra', '', 'message', 'Compte utilisateur'); INSERT INTO label VALUES ('delete_geo_db_failed', 'message_interface_geodb', 'eng', '', 'message', 'Error during the deleting of geodatabase'); INSERT INTO label VALUES ('delete_geo_db_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de la suppression de la base de données géographique'); INSERT INTO label VALUES ('delete_geo_db_ok', 'message_interface_geodb', 'eng', '', 'message', 'The deleting of the geodatabase has been successful'); INSERT INTO label VALUES ('delete_geo_db_ok', 'message_interface_geodb', 'fra', '', 'message', 'La suppression de la base de données géographique a été réalisée avec succès'); INSERT INTO label VALUES ('file_dbf', 'message_interface_geodb', 'eng', '', 'message', 'dbf file associated to the shapefile to import'); INSERT INTO label VALUES ('file_dbf', 'message_interface_geodb', 'fra', '', 'message', 'Fichier dbf associé au fichier de forme à importer'); INSERT INTO label VALUES ('file_postgis', 'message_interface_geodb', 'eng', '', 'message', 'Path of lwpostgis.sql file'); INSERT INTO label VALUES ('file_postgis', 'message_interface_geodb', 'fra', '', 'message', 'Chemin du fichier lwpostgis.sql'); INSERT INTO label VALUES ('file_prj', 'message_interface_geodb', 'eng', '', 'message', 'File for projection definition (prj) associated to the shapefile'); INSERT INTO label VALUES ('file_prj', 'message_interface_geodb', 'fra', '', 'message', 'Fichier de définition de projection (prj) associé au fichier de forme'); INSERT INTO label VALUES ('file_shp', 'message_interface_geodb', 'eng', '', 'message', 'Shapefile to import (shp)'); INSERT INTO label VALUES ('file_shp', 'message_interface_geodb', 'fra', '', 'message', 'Fichier de forme à importer (shp)'); INSERT INTO label VALUES ('file_shx', 'message_interface_geodb', 'eng', '', 'message', 'shx file associated to the shapefile to import'); INSERT INTO label VALUES ('file_shx', 'message_interface_geodb', 'fra', '', 'message', 'Fichier shx associé au fichier de forme à importer'); INSERT INTO label VALUES ('file_spatial_ref_sys', 'message_interface_geodb', 'eng', '', 'message', 'Path of spatial_ref_sys.sql file'); INSERT INTO label VALUES ('file_spatial_ref_sys', 'message_interface_geodb', 'fra', '', 'message', 'Chemin du fichier spatial_ref_sys.sql'); INSERT INTO label VALUES ('folder_shp', 'message_interface_geodb', 'eng', NULL, 'message', 'Path of folder which contains shapefile to import'); INSERT INTO label VALUES ('folder_shp', 'message_interface_geodb', 'fra', NULL, 'message', 'Chemin du répertoire contenant les fichiers de forme à importer'); INSERT INTO label VALUES ('geometry_type', 'message_interface_geodb', 'eng', '', 'message', 'Geometry type of geographic layer'); INSERT INTO label VALUES ('geometry_type', 'message_interface_geodb', 'fra', '', 'message', 'Type de géométrie de la couche géographique'); INSERT INTO label VALUES ('import_shp_failed', 'message_interface_geodb', 'eng', '', 'message', 'Errorr during the importation process of shapefile'); INSERT INTO label VALUES ('import_shp_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de l''importation du fichier de forme (shp)'); INSERT INTO label VALUES ('import_shp_ok', 'message_interface_geodb', 'eng', '', 'message', 'Import of shapefile has been successful'); INSERT INTO label VALUES ('import_shp_ok', 'message_interface_geodb', 'fra', '', 'message', 'Importation du fichier de forme (shp) avec succès'); INSERT INTO label VALUES ('invproj', 'message_interface_geodb', 'eng', '', 'message', 'Path for the inverse projection script (invproj)'); INSERT INTO label VALUES ('invproj', 'message_interface_geodb', 'fra', '', 'message', 'Chemin du script d''inversion de projection (invproj)'); INSERT INTO label VALUES ('lwpostgis_failed', 'message_interface_geodb', 'eng', '', 'message', 'Errorr during the building the meta-tables and spatial functions'); INSERT INTO label VALUES ('lwpostgis_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de la création des méta-tables et des fonctions spatiales'); INSERT INTO label VALUES ('lwpostgis_ok', 'message_interface_geodb', 'eng', '', 'message', 'Building of meta-table and spatial functions have been successful'); INSERT INTO label VALUES ('lwpostgis_ok', 'message_interface_geodb', 'fra', '', 'message', 'Création des méta-tables et des fonctions spatiales avec succès'); INSERT INTO label VALUES ('menu_admin_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Geodatabase'); INSERT INTO label VALUES ('menu_admin_geodb', 'message_interface_geodb', 'fra', '', 'message', 'BD Géo'); INSERT INTO label VALUES ('menu_admin_geodb_config', 'message_interface_geodb', 'eng', '', 'message', 'Configuration'); INSERT INTO label VALUES ('menu_admin_geodb_config', 'message_interface_geodb', 'fra', '', 'message', 'Configuration'); INSERT INTO label VALUES ('next_shape', 'message_interface_geodb', 'eng', '', 'message', 'Import a other shapefile'); INSERT INTO label VALUES ('next_shape', 'message_interface_geodb', 'fra', '', 'message', 'Importer un autre fichier de forme (shp)'); INSERT INTO label VALUES ('no_shp', 'message_interface_geodb', 'eng', '', 'message', 'The selected file is not a shapefile'); INSERT INTO label VALUES ('no_shp', 'message_interface_geodb', 'fra', '', 'message', 'Le fichier séléctionné n''est pas un fichier de forme (shp)'); INSERT INTO label VALUES ('no_srid_found', 'message_interface_geodb', 'eng', '', 'message', 'Any srid has been founded'); INSERT INTO label VALUES ('no_srid_found', 'message_interface_geodb', 'fra', '', 'message', 'Aucun srid n''a été trouvé'); INSERT INTO label VALUES ('proj', 'message_interface_geodb', 'eng', '', 'message', 'Path for the projection script (proj)'); INSERT INTO label VALUES ('proj', 'message_interface_geodb', 'fra', '', 'message', 'Chemin du script de projection (proj) '); INSERT INTO label VALUES ('spatial_ref_sys_failed', 'message_interface_geodb', 'eng', '', 'message', 'Error during the insert of reference system in spatial_ref_sys table'); INSERT INTO label VALUES ('spatial_ref_sys_failed', 'message_interface_geodb', 'fra', '', 'message', 'Erreur lors de l''insertion des systèmes de références dans la table spatial_ref_sys'); INSERT INTO label VALUES ('spatial_ref_sys_ok', 'message_interface_geodb', 'eng', '', 'message', 'Your Inserts of reference system in the spatial_ref_sys have been successful'); INSERT INTO label VALUES ('spatial_ref_sys_ok', 'message_interface_geodb', 'fra', '', 'message', 'Insertion des systèmes de références dans la table spatial_ref_sys avec succès'); INSERT INTO label VALUES ('srid', 'message_interface_geodb', 'eng', '', 'message', 'Identifier of reference system (srid)'); INSERT INTO label VALUES ('srid', 'message_interface_geodb', 'fra', '', 'message', 'Identifiant du système de référence (srid)'); INSERT INTO label VALUES ('srid_choose', 'message_interface_geodb', 'eng', NULL, 'message', 'Select an reference system identifier (srid)'); INSERT INTO label VALUES ('srid_choose', 'message_interface_geodb', 'fra', NULL, 'message', 'Selectionnez un identifiant de système de référence (srid)'); INSERT INTO label VALUES ('srtext', 'message_interface_geodb', 'eng', '', 'message', 'Reference system description'); INSERT INTO label VALUES ('srtext', 'message_interface_geodb', 'fra', '', 'message', 'Description du système de référence'); INSERT INTO label VALUES ('table_name', 'message_interface_geodb', 'eng', '', 'message', 'Name of table in geodatabase'); INSERT INTO label VALUES ('table_name', 'message_interface_geodb', 'fra', '', 'message', 'Nom de la table'); INSERT INTO label VALUES ('title_add_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Add a geodatabase'); INSERT INTO label VALUES ('title_add_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Ajouter une base de données géographique'); INSERT INTO label VALUES ('title_config_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Configuration of geographical database'); INSERT INTO label VALUES ('title_config_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Configuration de la BD géographique'); INSERT INTO label VALUES ('title_create_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Create a geodatabase'); INSERT INTO label VALUES ('title_create_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Créer une base de données géographique'); INSERT INTO label VALUES ('title_delete_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Delete the geodatabase'); INSERT INTO label VALUES ('title_delete_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Supprimer la base de données géographique'); INSERT INTO label VALUES ('title_update_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Update the geodatabase'); INSERT INTO label VALUES ('title_update_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Modifier la base de données géographique'); INSERT INTO label VALUES ('comm_search_geodb', 'message_interface_geodb', 'eng', '', 'message', 'Click to search geodatabase on your PostgreSQL host'); INSERT INTO label VALUES ('comm_search_geodb', 'message_interface_geodb', 'fra', '', 'message', 'Cliquez pour lancer la recherche des bases de données géographiques sur le serveur PostgreSQL'); INSERT INTO label VALUES ('calcul_bbox_ok', 'message_interface_geodb', 'fra', 'Le Calcul des emprises géographiques des objets de la couche a été réalisé avec succès', '', 'message'); INSERT INTO label VALUES ('calcul_bbox_failed', 'message_interface_geodb', 'fra', 'Le Calcul des emprises géographiques des objets de la couche a échoué', '', 'message'); INSERT INTO label VALUES ('calcul_bbox_ok', 'message_interface_geodb', 'eng', 'The calculation of spatial extension of geographic objects of the layer has been successful', '', 'message'); INSERT INTO label VALUES ('calcul_bbox_failed', 'message_interface_geodb', 'eng', 'An error occured during the calculation of spatial extension of geographic objects of the layer', '', 'message'); INSERT INTO label VALUES ('menu_admin_geodb_conf_connex', 'message_interface_geodb', 'fra', '', 'message', 'Connexion BD Géo'); INSERT INTO label VALUES ('menu_admin_geodb_conf_connex', 'message_interface_geodb', 'eng', '', 'message', 'Geodatabase connection'); INSERT INTO label VALUES ('titre_gest_thes', 'message_interface_thesaurus', 'fra', 'Titre du gestionnaire de thesaurus', 'message', 'Gestion du thésaurus'); INSERT INTO label VALUES ('concept', 'message_interface_thesaurus', 'fra', 'Libellé pour un concept', 'message', 'Concept'); INSERT INTO label VALUES ('relation', 'message_interface_thesaurus', 'fra', 'Libellé pour une relation', 'message', 'Relation'); INSERT INTO label VALUES ('objet', 'message_interface_thesaurus', 'fra', 'Libellé Objet', 'message', 'Objet'); INSERT INTO label VALUES ('titre_gest_concept', 'message_interface_thesaurus', 'fra', 'Etiquette pour le titre des pages gestion d''un concept', 'message', 'un concept'); INSERT INTO label VALUES ('titre_gest_relation', 'message_interface_thesaurus', 'fra', 'Etiquette pour le titre des pages gestion des relations du thesaurus', 'message', 'une relation'); INSERT INTO label VALUES ('nom_layer', 'message_interface_thesaurus', 'fra', 'Nom du layer associé à un terme', 'message', 'Nom du layer'); INSERT INTO label VALUES ('uri_concept', 'message_interface_thesaurus', 'fra', 'Uri d''un concept', 'message', 'URI du concept'); INSERT INTO label VALUES ('descripteur_concept', 'message_interface_thesaurus', 'fra', 'Libellé descripteur d''un concept', 'message', 'Terme descripteur'); INSERT INTO label VALUES ('candidat', 'message_interface_thesaurus', 'fra', 'Propriété ''candidat'' d''un terme', 'message', 'Statut'); INSERT INTO label VALUES ('lbl_thes_orig', 'message_interface_thesaurus', 'fra', 'Libellé admin gestion du thesaurus', 'message', 'Thesaurus d''origine'); INSERT INTO label VALUES ('terme_generique', 'message_interface_thesaurus', 'fra', 'Libellé terme générique d''un concept', 'message', 'Terme générique'); INSERT INTO label VALUES ('confirm_suppr_concept', 'message_interface_thesaurus', 'fra', 'Message de confirmation pour la suppression d''un concept du thesaurus.', 'message', 'Etes-vous sûr de vouloir supprimer ce concept ?'); INSERT INTO label VALUES ('erreur_terme_thes', 'message_interface_thesaurus', 'fra', 'Message d''erreur signalant qu''un terme n''est pas présent dans le thesaurus de l''application', 'message', 'Attention ! Vous devez choisir un terme du thesaurus'); INSERT INTO label VALUES ('type_terme', 'message_interface_thesaurus', 'fra', 'Libellé du type d''un terme', 'message', 'Type du terme'); INSERT INTO label VALUES ('create_concept', 'message_interface_thesaurus', 'fra', 'Libellé ''Création d''un nouveau concept''', 'message', 'Création d''un nouveau concept'); INSERT INTO label VALUES ('mess_ajout_syn', 'message_interface_thesaurus', 'fra', 'Message pour confirmer l''ajout d''un terme secondaire à un concept du thesaurus', 'message', 'Le concept est déjà présent dans le thesaurus,
voulez-vous ajouter le nouveau terme en tant que terme secondaire (synonyme,..) de ce concept ?'); INSERT INTO label VALUES ('mess_confirm_annul', 'message_interface_thesaurus', 'fra', 'Message de confirmation d''abandon d''une opération', 'message', 'Opération annulée'); INSERT INTO label VALUES ('erreur_ajout_concept', 'message_interface_thesaurus', 'fra', 'Message d''erreur si l''on essaye d''ajouter un concept déjà présent dans le thesaurus', 'message', 'Attention ! Ce concept est déjà présent dans le thesaurus'); INSERT INTO label VALUES ('mess_concept_racine', 'message_interface_thesaurus', 'fra', 'Message d''avertissement qu''un concept est racine dans le thesaurus.', 'message', 'Attention ! Ce concept est un concept racine dans l''arborescence du thesaurus.'); INSERT INTO label VALUES ('type_relation', 'message_interface_thesaurus', 'fra', 'Type d''une relation du thesaurus', 'message', 'Type de la relation'); INSERT INTO label VALUES ('obj_relation', 'message_interface_thesaurus', 'fra', 'Objet d''une relation du thesaurus', 'message', 'Objet de la relation'); INSERT INTO label VALUES ('ouvrir_thesaurus', 'message_interface_thesaurus', 'fra', 'Libellé d''ouverture du thesaurus', 'message', 'Ouvrir le thesaurus'); INSERT INTO label VALUES ('fermer_thesaurus', 'message_interface_thesaurus', 'fra', 'Libellé pour fermer le thesaurus', 'message', 'Fermer le thesaurus'); INSERT INTO label VALUES ('choix_relation', 'message_interface_thesaurus', 'fra', 'Message proposant de choisir une relation', 'message', 'Choisissez une relation'); INSERT INTO label VALUES ('label_autre_relation', 'message_interface_thesaurus', 'fra', 'Etiquette pour le libellé des boutons gestion d''une relation', 'message', 'une autre relation'); INSERT INTO label VALUES ('confirm_modif_relation', 'message_interface_thesaurus', 'fra', 'Message de confirmation de modification d''une relation du thesaurus.', 'message', 'Etes-vous sûr de vouloir modifier cette relation ?'); INSERT INTO label VALUES ('confirm_suppr_relation', 'message_interface_thesaurus', 'fra', 'Message pour la boite Javascript de confirmation pour la suppression d''une relation du thesaurus', 'message', 'Etes-vous sûr de vouloir supprimer cette relation ?'); INSERT INTO label VALUES ('confirm_suppr_terme', 'message_interface_thesaurus', 'fra', 'Message de confirmation pour la suppression d''un terme proposé.', 'message', 'Etes-vous sûr de vouloir supprimer ce terme ?'); INSERT INTO label VALUES ('mess_possede_relationBT', 'message_interface_thesaurus', 'fra', 'Message d''avertissement qu''un concept possède déjà une relation de généralisation.', 'message', 'Attention ! Ce concept possède déjà une relation de généralisation.'); INSERT INTO label VALUES ('erreur_ajout_relationNT', 'message_interface_thesaurus', 'fra', 'Message d''erreur signalant que l''ajout d''une relation de spécialisation n''est pas possible (l''objet étant un ancêtre du concept sujet)', 'message', 'Attention ! L''ajout de cette relation est impossible car le concept objet est un ancêtre du concept sujet.'); INSERT INTO label VALUES ('mess_deplace_fils', 'message_interface_thesaurus', 'fra', 'Message pour demander si l''on veut déplacer les concepts fils lorsque l''on change de place un concept dans l''arborescence.', 'message', 'Voulez-vous déplacer les concepts fils avec le concept concerné ? Si non ils seront raccordés à l''ancien concept père.'); INSERT INTO label VALUES ('erreur_suppr_concept', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour empêcher la suppression d''un concept s''il indexe au moins une fiche de métadonnées.', 'message', 'Suppression interdite : ce concept indexe des fiches de métadonnées.'); INSERT INTO label VALUES ('bulle_add_relation', 'message_interface_thesaurus', 'fra', 'Label pour l''ajout d''une relation dans le thesaurus', 'bulle', 'Ajouter la relation'); INSERT INTO label VALUES ('bulle_update_relation', 'message_interface_thesaurus', 'fra', 'Bulle pour la modification d''une relation du thesaurus', 'bulle', 'Modifier la relation'); INSERT INTO label VALUES ('bulle_del_relation', 'message_interface_thesaurus', 'fra', 'Bulle pour la suppression d''une relation du thesaurus', 'bulle', 'Supprimer la relation'); INSERT INTO label VALUES ('erreur_suj_obj_egaux', 'message_interface_thesaurus', 'fra', 'Message d''erreur si les sujets et objets d''une relation sont identiques.', 'message', 'Erreur ! Le sujet et l''objet de la relation ne peuvent pas être identiques.'); INSERT INTO label VALUES ('accueil_gestion_thes', 'message_interface_thesaurus', 'fra', 'Aide pour la gestion du thésaurus de l''application.', 'aide', 'Ce sous-module permet de gérer le thésaurus propre à l''application. Il est possible d''ajouter, de modifier ou de supprimer les concepts de ce thésaurus, ainsi que pour les relations entre les concepts.'); INSERT INTO label VALUES ('erreur_saisie_objet_thes', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour la gestion du thésaurus', 'message', 'Veuillez remplir le champ Objet'); INSERT INTO label VALUES ('erreur_saisie_type_rel_thes', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour la gestion du thésaurus', 'message', 'Veuillez choisir un type de relation'); INSERT INTO label VALUES ('titre_gest_thes', 'message_interface_thesaurus', 'eng', 'Title of thesaurus management', 'message', 'Thesaurus management'); INSERT INTO label VALUES ('concept', 'message_interface_thesaurus', 'eng', 'Label for a concept', 'message', 'Concept'); INSERT INTO label VALUES ('relation', 'message_interface_thesaurus', 'eng', 'Label for a relation', 'message', 'Relation'); INSERT INTO label VALUES ('objet', 'message_interface_thesaurus', 'eng', 'Label Object', 'message', 'Object'); INSERT INTO label VALUES ('titre_gest_concept', 'message_interface_thesaurus', 'eng', 'Label for title in pages to manage a concept', 'message', 'a concept'); INSERT INTO label VALUES ('titre_gest_relation', 'message_interface_thesaurus', 'eng', 'Label for title in pages to manage relations in the thesaurus', 'message', 'a relation'); INSERT INTO label VALUES ('nom_layer', 'message_interface_thesaurus', 'eng', 'Name of the layer related to a term', 'message', 'Layer''s name'); INSERT INTO label VALUES ('uri_concept', 'message_interface_thesaurus', 'eng', 'Concept Uri', 'message', 'Concept URI'); INSERT INTO label VALUES ('descripteur_concept', 'message_interface_thesaurus', 'eng', 'Label for preferred term', 'message', 'Preferred term'); INSERT INTO label VALUES ('candidat', 'message_interface_thesaurus', 'eng', '''Candidate'' property for a term', 'message', 'Status'); INSERT INTO label VALUES ('lbl_thes_orig', 'message_interface_thesaurus', 'eng', 'Label admin thesaurus management', 'message', 'Thesaurus of origin'); INSERT INTO label VALUES ('terme_generique', 'message_interface_thesaurus', 'eng', 'Label for broader term of a concept', 'message', 'Broader term'); INSERT INTO label VALUES ('confirm_suppr_concept', 'message_interface_thesaurus', 'eng', 'Warning message to delete a concept from thesaurus.', 'message', 'Are you sure that you want to delete this concept ?'); INSERT INTO label VALUES ('erreur_terme_thes', 'message_interface_thesaurus', 'eng', 'Error message to indicate that a term is not in the application''s thesaurus', 'message', 'Warning ! You must select a term in the thesaurus'); INSERT INTO label VALUES ('type_terme', 'message_interface_thesaurus', 'eng', 'Label for term type', 'message', 'Term type'); INSERT INTO label VALUES ('create_concept', 'message_interface_thesaurus', 'eng', 'Label ''create a new concept''', 'message', 'Create a new concept'); INSERT INTO label VALUES ('mess_ajout_syn', 'message_interface_thesaurus', 'eng', 'Message to confirm adding of a secondary term at a concept from thesaurus', 'message', 'This concept is already in the thesaurus,
do you want to add this new term like a secondary term for this concept ?'); INSERT INTO label VALUES ('mess_confirm_annul', 'message_interface_thesaurus', 'eng', 'Message to confirm abort of an operation', 'message', 'Cancelled operation'); INSERT INTO label VALUES ('erreur_ajout_concept', 'message_interface_thesaurus', 'eng', 'Error message to indicate that a concept already exist in the thesaurus.', 'message', 'Warning ! This concept already exist in the thesaurus'); INSERT INTO label VALUES ('mess_concept_racine', 'message_interface_thesaurus', 'eng', 'Message to indicate that a concept is a root concept in the thesaurus.', 'message', 'Warning ! This concept is a root concept in the thesaurus.'); INSERT INTO label VALUES ('type_relation', 'message_interface_thesaurus', 'eng', 'Label for relation type', 'message', 'Relation type'); INSERT INTO label VALUES ('obj_relation', 'message_interface_thesaurus', 'eng', 'Label for relation object', 'message', 'Relation object'); INSERT INTO label VALUES ('ouvrir_thesaurus', 'message_interface_thesaurus', 'eng', 'Label for open a thesaurus', 'message', 'Open thesaurus'); INSERT INTO label VALUES ('fermer_thesaurus', 'message_interface_thesaurus', 'eng', 'Label for close thesaurus', 'message', 'Close thesaurus'); INSERT INTO label VALUES ('choix_relation', 'message_interface_thesaurus', 'eng', 'Select a relation label', 'message', 'Select a relation'); INSERT INTO label VALUES ('label_autre_relation', 'message_interface_thesaurus', 'eng', 'Label for relation management buttons ', 'message', 'another relation'); INSERT INTO label VALUES ('confirm_modif_relation', 'message_interface_thesaurus', 'eng', 'Warning message to update a relation.', 'message', 'Are you sure that you want to upadte this relation ?'); INSERT INTO label VALUES ('confirm_suppr_relation', 'message_interface_thesaurus', 'eng', 'Message for Javascript alert box to confirm thesaurus''s relation deletion.', 'message', 'Are you sure you want to delete this relation ?'); INSERT INTO label VALUES ('confirm_suppr_terme', 'message_interface_thesaurus', 'eng', 'Warning message to delete a proposed term.', 'message', 'Are you sure that you want to delete this term ?'); INSERT INTO label VALUES ('mess_possede_relationBT', 'message_interface_thesaurus', 'eng', 'Message to indicate that a concept already has a broader term.', 'message', 'Warning ! This concept already has a Broader Term.'); INSERT INTO label VALUES ('erreur_ajout_relationNT', 'message_interface_thesaurus', 'eng', 'Message to indicate that it''s impossible to add a specialization relation (the object concept is an antecedent of the subject).', 'message', 'Warning ! Adding this relation is impossible because the object concept is an antecedent of the subject.'); INSERT INTO label VALUES ('mess_deplace_fils', 'message_interface_thesaurus', 'eng', 'Message to ask if we want to move children concepts when we change the location of a term in the tree structure.', 'message', 'Do you want to move children concepts with the concerned concept ? If no, children concepts will be connected with old father concept.'); INSERT INTO label VALUES ('erreur_suppr_concept', 'message_interface_thesaurus', 'eng', 'Error message to stop deletion of a concept which references metadata sheets.', 'message', 'Deletion forbidden : this concept references to metadata sheets.'); INSERT INTO label VALUES ('bulle_add_relation', 'message_interface_thesaurus', 'eng', 'Label for add a relation in the thesaurus', 'bulle', 'Add relation'); INSERT INTO label VALUES ('bulle_update_relation', 'message_interface_thesaurus', 'eng', 'Label for update a relation in the thesaurus', 'bulle', 'Update relation'); INSERT INTO label VALUES ('bulle_del_relation', 'message_interface_thesaurus', 'eng', 'Label for delete a relation in the thesaurus', 'bulle', 'Delete relation'); INSERT INTO label VALUES ('erreur_suj_obj_egaux', 'message_interface_thesaurus', 'eng', 'Error message if subject and object of a relation are equals.', 'message', 'Error ! Subject and object of relation can''t be equals.'); INSERT INTO label VALUES ('accueil_gestion_thes', 'message_interface_thesaurus', 'eng', 'Help for thesaurus management.', 'aide', 'Manage the application thesaurus. This area provides to add, to update or to delete concepts and relations of the thesaurus.'); INSERT INTO label VALUES ('erreur_saisie_objet_thes', 'message_interface_thesaurus', 'eng', 'Error message for thesaurus management', 'message', 'Please input the field Object'); INSERT INTO label VALUES ('erreur_saisie_type_rel_thes', 'message_interface_thesaurus', 'eng', 'Error message for thesaurus management', 'message', 'Please choice a relation type'); INSERT INTO label VALUES ('bt_choix_terme', 'message_interface_thesaurus', 'fra', 'Libellé du bouton pour choisir un terme', 'message', 'Choisir ce terme'); INSERT INTO label VALUES ('choix_thesaurus', 'message_interface_thesaurus', 'fra', 'Message proposant de choisir un thesaurus', 'message', 'Choisissez un thesaurus'); INSERT INTO label VALUES ('thesaurus_syscolag', 'message_interface_thesaurus', 'fra', 'Libellé du thésaurus Syscolag', 'message', 'Syscolag (v 1.0 - 09/2006)'); INSERT INTO label VALUES ('thesaurus_thesaurus_demo', 'message_interface_thesaurus', 'fra', 'Libellé du thésaurus Syscolag', 'message', 'Thésaurus démo (09/2006)'); INSERT INTO label VALUES ('thesaurus_thesaurus_demo', 'message_interface_thesaurus', 'eng', 'Libellé du thésaurus Syscolag', 'message', 'Demo thesaurus (2006/09)'); INSERT INTO label VALUES ('thesaurus_agrovoc', 'message_interface_thesaurus', 'fra', 'libellé du thésaurus Agrovoc', 'message', 'Agrovoc (FAO - 05/2006)'); INSERT INTO label VALUES ('thesaurus_gemet', 'message_interface_thesaurus', 'fra', 'Libellé du thesaurus Gemet', 'message', 'Gemet (EIONET - 07/2005)'); INSERT INTO label VALUES ('choix_terme', 'message_interface_thesaurus', 'fra', 'Message proposant de choisir un terme dans le thesaurus', 'message', 'Choisissez un terme dans le thesaurus'); INSERT INTO label VALUES ('bt_voir_thes', 'message_interface_thesaurus', 'fra', 'Libellé du bouton de visualisation du thesaurus complet', 'message', 'Visualiser le thesaurus complet'); INSERT INTO label VALUES ('bt_choix_terme', 'message_interface_thesaurus', 'eng', 'Button label for select a term', 'message', 'Select this term'); INSERT INTO label VALUES ('choix_thesaurus', 'message_interface_thesaurus', 'eng', 'Select a thesaurus label', 'message', 'Select a thesaurus'); INSERT INTO label VALUES ('thesaurus_syscolag', 'message_interface_thesaurus', 'eng', 'label of syscolag thesaurus', 'message', 'Syscolag (v 1.0 - 09/2006)'); INSERT INTO label VALUES ('thesaurus_agrovoc', 'message_interface_thesaurus', 'eng', 'label of agrovoc thesaurus', 'message', 'Agrovoc (FAO - 05/2006)'); INSERT INTO label VALUES ('thesaurus_gemet', 'message_interface_thesaurus', 'eng', 'Label of Gemet thesaurus', 'message', 'Gemet (EIONET - 07/2005)'); INSERT INTO label VALUES ('choix_terme', 'message_interface_thesaurus', 'eng', 'Select a term label', 'message', 'Select a term in the thesaurus'); INSERT INTO label VALUES ('bt_voir_thes', 'message_interface_thesaurus', 'eng', 'Label button for see the full thesaurus', 'message', 'See the full thesaurus'); INSERT INTO label VALUES ('creer_thes_appli', 'message_interface_thesaurus', 'fra', 'Titre pour la création du thesaurus de l''application', 'message', 'Créer le thesaurus de l''application'); INSERT INTO label VALUES ('nom_thesaurus', 'message_interface_thesaurus', 'fra', 'Libellé pour le nom d''un thesaurus', 'message', 'Nom du thésaurus'); INSERT INTO label VALUES ('titre_ajout_thes', 'message_interface_thesaurus', 'fra', 'Titre pour l''ajout de thésaurus', 'message', 'Ajout de thésaurus'); INSERT INTO label VALUES ('mess_thesaurus_cree', 'message_interface_thesaurus', 'fra', 'Message de confirmation de création d''un thesaurus dans la base de données.', 'message', 'Le thesaurus XX a bien été créé dans la base de données'); INSERT INTO label VALUES ('erreur_saisie_nomThes', 'message_interface_thesaurus', 'fra', 'Message d''erreur si le nom du thesaurus est vide', 'message', 'Veuillez saisir un nom pour le thesaurus'); INSERT INTO label VALUES ('mess_ecraser_thes', 'message_interface_thesaurus', 'fra', 'Demande de confirmation pour écraser un thesaurus existant.', 'message', 'Attention ! Un thesaurus de ce nom existe déjà, êtes-vous sûr de vouloir l''écraser ?'); INSERT INTO label VALUES ('importer_thesaurus', 'message_interface_thesaurus', 'fra', 'Libellé pour l''import d''un thesaurus', 'message', 'Importer un thésaurus'); INSERT INTO label VALUES ('fichier_import_thes', 'message_interface_thesaurus', 'fra', 'Libellé pour le fichier d''un thésaurus à importer', 'message', 'Fichier du thésaurus à importer'); INSERT INTO label VALUES ('langue_import_thes', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue d''un thesaurus à importer', 'message', 'Langue à importer'); INSERT INTO label VALUES ('langue_thes_fr', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Français'); INSERT INTO label VALUES ('langue_thes_en', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Anglais'); INSERT INTO label VALUES ('langue_thes_es', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Espagnol'); INSERT INTO label VALUES ('langue_thes_ar', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Arabe'); INSERT INTO label VALUES ('langue_thes_zh', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Chinois'); INSERT INTO label VALUES ('langue_thes_pt', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Portugais'); INSERT INTO label VALUES ('langue_thes_cs', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Tchèque'); INSERT INTO label VALUES ('langue_thes_ja', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Japonais'); INSERT INTO label VALUES ('langue_thes_th', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Thai'); INSERT INTO label VALUES ('langue_thes_sk', 'message_interface_thesaurus', 'fra', 'Libellé de langue pour les thesaurus', 'message', 'Slovaque'); INSERT INTO label VALUES ('accueil_import_thes', 'message_interface_thesaurus', 'fra', 'Aide pour l''importation de thésaurus.', 'aide', 'Vous pouvez importer un thésaurus depuis un fichier SKOS/RDF. Attention, vous devez avoir auparavant installé la librairie java Jena et configuré correctement les fichiers nécessaires (voir la documentation Gestion des thésaurus). Le temps d''importation d''un thésaurus peut être très long suivant la taille du fichier.'); INSERT INTO label VALUES ('accueil_creer_thes', 'message_interface_thesaurus', 'fra', 'Aide pour la création d''un thésaurus.', 'aide', 'Pour créer un thésaurus dans la base de données, veuillez saisir un nom. Pour l''utiliser ensuite comme thésaurus de l''application, veuillez mettre à jour le fichier de configuration config.inc.thesaurus.php (voir documentation Gestion des thésaurus).'); INSERT INTO label VALUES ('erreur_saisie_import_nom_thes', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour la saisie des données d''importation d''un thésaurus', 'message', 'Veuillez choisir le fichier d''importation et saisir un nom pour le thesaurus'); INSERT INTO label VALUES ('erreur_saisie_import_thes', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour la saisie du fichier d''importation d''un thesaurus', 'message', 'Veuillez choisir le fichier d''importation du thesaurus'); INSERT INTO label VALUES ('creer_thes_appli', 'message_interface_thesaurus', 'eng', 'Title for create the application''s thesaurus.', 'message', 'Create the application''s thesaurus'); INSERT INTO label VALUES ('nom_thesaurus', 'message_interface_thesaurus', 'eng', 'Label for name of a thesaurus', 'message', 'Thesaurus name'); INSERT INTO label VALUES ('titre_ajout_thes', 'message_interface_thesaurus', 'eng', 'Title for add thesaurus', 'message', 'Add thesaurus'); INSERT INTO label VALUES ('mess_thesaurus_cree', 'message_interface_thesaurus', 'eng', 'Message to confirm creation of a thesaurus in the database.', 'message', 'Thesaurus XX has been created in the database'); INSERT INTO label VALUES ('erreur_saisie_nomThes', 'message_interface_thesaurus', 'eng', 'Error message for a valid thesaurus name', 'message', 'Please input a valid name for the thesaurus'); INSERT INTO label VALUES ('mess_ecraser_thes', 'message_interface_thesaurus', 'eng', 'Message to confirm overwriting of a thesaurus.', 'message', 'Warning ! A thesaurus with this name already exists, are you sure you want to overwrite it ?'); INSERT INTO label VALUES ('importer_thesaurus', 'message_interface_thesaurus', 'eng', 'Label for thesaurus import', 'message', 'Import a thesaurus'); INSERT INTO label VALUES ('fichier_import_thes', 'message_interface_thesaurus', 'eng', 'Label to indicate the file to import a thesaurus', 'message', 'Thesaurus file to import'); INSERT INTO label VALUES ('langue_import_thes', 'message_interface_thesaurus', 'eng', 'Label for language of a thesaurus to import', 'message', 'Language to import'); INSERT INTO label VALUES ('langue_thes_fr', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'French'); INSERT INTO label VALUES ('langue_thes_en', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'English'); INSERT INTO label VALUES ('langue_thes_es', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Spanish'); INSERT INTO label VALUES ('langue_thes_ar', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Arabic'); INSERT INTO label VALUES ('langue_thes_zh', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Chinese'); INSERT INTO label VALUES ('langue_thes_pt', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Português'); INSERT INTO label VALUES ('langue_thes_cs', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Cesky'); INSERT INTO label VALUES ('langue_thes_ja', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Japanese'); INSERT INTO label VALUES ('langue_thes_th', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Thai'); INSERT INTO label VALUES ('langue_thes_sk', 'message_interface_thesaurus', 'eng', 'Label for thesaurus language', 'message', 'Slovak'); INSERT INTO label VALUES ('accueil_import_thes', 'message_interface_thesaurus', 'eng', 'Help for importation of thesaurus.', 'aide', 'You can import a thesaurus from a SKOS/RDF file. Warning : you must have installed the Java framework Jena and correctly configured the required files (see documentation Thesaurus management). Time to import a thesaurus can be very long according to the size file.'); INSERT INTO label VALUES ('accueil_creer_thes', 'message_interface_thesaurus', 'eng', 'Help for creation of a thesaurus.', 'aide', 'To create a thesaurus in the database, please input a name. Then, to use it as the application thesaurus, please update the configuration file config.inc.thesaurus.php (see documentation Thesaurus management).'); INSERT INTO label VALUES ('erreur_saisie_import_nom_thes', 'message_interface_thesaurus', 'eng', 'Error message for data input for importation of thesaurus', 'message', 'Please choice the thesaurus file and input a name for the thesaurus'); INSERT INTO label VALUES ('erreur_saisie_import_thes', 'message_interface_thesaurus', 'eng', 'Error message for choice of the thesaurus file to import', 'message', 'Please choice the thesaurus file to import'); INSERT INTO label VALUES ('titre_supp_thes', 'message_interface_thesaurus', 'fra', 'Titre pour la suppression d''un thésaurus.', 'message', 'Suppression d''un thésaurus'); INSERT INTO label VALUES ('liste_thes', 'message_interface_thesaurus', 'fra', 'Libellé liste thésaurus', 'message', 'Liste des thésaurus'); INSERT INTO label VALUES ('type_thesaurus', 'message_interface_thesaurus', 'fra', 'Libellé type d''un thésaurus', 'message', 'Type de thésaurus'); INSERT INTO label VALUES ('thesaurus_application', 'message_interface_thesaurus', 'fra', 'Libellé pour un thésaurus d''application', 'message', 'Thésaurus d''application'); INSERT INTO label VALUES ('thesaurus_importe', 'message_interface_thesaurus', 'fra', 'Libellé pour un thésaurus importé', 'message', 'Thésaurus importé'); INSERT INTO label VALUES ('confirm_suppr_thes', 'message_interface_thesaurus', 'fra', 'Demande de confirmation pour la suppression d''un thésaurus', 'message', 'Etes-vous sûr de vouloir supprimer le thésaurus'); INSERT INTO label VALUES ('mess_thesaurus_suppr', 'message_interface_thesaurus', 'fra', 'Confirmation de la suppression d''un thésaurus', 'message', 'Le thésaurus XX a bien été supprimé de la base de données.'); INSERT INTO label VALUES ('erreur_import_thesaurus', 'message_interface_thesaurus', 'fra', 'Message d''erreur pour l''importation d''un thésaurus', 'message', 'Erreur ! Le thésaurus n''a pas pu être importé.'); INSERT INTO label VALUES ('titre_supp_thes', 'message_interface_thesaurus', 'eng', 'Title for delete a thesaurus.', 'message', 'Delete a thesaurus'); INSERT INTO label VALUES ('liste_thes', 'message_interface_thesaurus', 'eng', 'Label for thesaurus list', 'message', 'Thesaurus list'); INSERT INTO label VALUES ('type_thesaurus', 'message_interface_thesaurus', 'eng', 'Label thesaurus type', 'message', 'Thesaurus type'); INSERT INTO label VALUES ('thesaurus_application', 'message_interface_thesaurus', 'eng', 'Label for application thesaurus', 'message', 'Application thesaurus'); INSERT INTO label VALUES ('thesaurus_importe', 'message_interface_thesaurus', 'eng', 'Label for imported thesaurus', 'message', 'Imported thesaurus'); INSERT INTO label VALUES ('confirm_suppr_thes', 'message_interface_thesaurus', 'eng', 'Warning message to delete a thesaurus', 'message', 'Are you sure you want to delete the thesaurus'); INSERT INTO label VALUES ('mess_thesaurus_suppr', 'message_interface_thesaurus', 'eng', 'Message to confirm deletion of a thesaurus.', 'message', 'Thesaurus XX has been deleted from the database.'); INSERT INTO label VALUES ('erreur_import_thesaurus', 'message_interface_thesaurus', 'eng', 'Error message for importation of a thesaurus', 'message', 'Error ! The thesaurus could not be imported.'); INSERT INTO label VALUES ('lang_rech_french', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue de recherche', 'message', 'français'); INSERT INTO label VALUES ('lang_rech_english', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue de recherche', 'message', 'anglais'); INSERT INTO label VALUES ('lang_rech_spanish', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue de recherche', 'message', 'espagnol'); INSERT INTO label VALUES ('lang_rech_portuguese', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue de recherche', 'message', 'portugais'); INSERT INTO label VALUES ('lang_rech_arabic', 'message_interface_thesaurus', 'fra', 'Libellé pour la langue de recherche', 'message', 'arabe'); INSERT INTO label VALUES ('mess_lang_rech', 'message_interface_thesaurus', 'fra', 'Message pour la langue de recherche', 'message', 'Les ressources de ce catalogue sont indexés par des mots clés en'); INSERT INTO label VALUES ('lang_rech_french', 'message_interface_thesaurus', 'eng', 'Label for search language', 'message', 'french'); INSERT INTO label VALUES ('lang_rech_english', 'message_interface_thesaurus', 'eng', 'Label for search language', 'message', 'english'); INSERT INTO label VALUES ('lang_rech_spanish', 'message_interface_thesaurus', 'eng', 'Label for search language', 'message', 'spanish'); INSERT INTO label VALUES ('lang_rech_portuguese', 'message_interface_thesaurus', 'eng', 'Label for search language', 'message', 'portuguese'); INSERT INTO label VALUES ('lang_rech_arabic', 'message_interface_thesaurus', 'eng', 'Label for search language', 'message', 'arabic'); INSERT INTO label VALUES ('mess_lang_rech', 'message_interface_thesaurus', 'eng', 'Message for search language', 'message', 'The resource of this catalog are referenced by keywords in'); INSERT INTO label VALUES ('mots_cles_req', 'message_interface_expansion', 'fra', 'Libellé annonçant les mots clés de la requête', 'message', 'Mots clés de la requête'); INSERT INTO label VALUES ('mess_filtrage_spatial', 'message_interface_expansion', 'fra', 'Message proposant d''effectuer un filtrage spatial des réponses d''une recherche.', 'message', 'Vous pouvez filtrer votre requête en ne gardant que les réponses strictement inclues dans la zone géographique choisie.'); INSERT INTO label VALUES ('bt_filtrer_req', 'message_interface_expansion', 'fra', 'Libellé pour le bouton permettant de filtrer les réponses d''une recherche.', 'message', 'Filtrer les réponses'); INSERT INTO label VALUES ('mess_filtrage_croise', 'message_interface_expansion', 'fra', 'Message proposant d''afficher la couche géographique correspondant à un terme spatial (expansion croisée).', 'message', 'Vous pouvez affiner l''étendue spatiale de la requête en choisissant d''afficher la couche géographique correspondant à un des mots clés suivants'); INSERT INTO label VALUES ('mess_prop_expansion', 'message_interface_expansion', 'fra', 'Message proposant d''étendre une requête', 'message', 'Nous vous proposons d''étendre celle-ci'); INSERT INTO label VALUES ('mots_cles_ajoutes', 'message_interface_expansion', 'fra', 'Message annonçant les mots clés ajoutés dans une requête', 'message', 'Mots clés ajoutés'); INSERT INTO label VALUES ('mess_prop_filtrage', 'message_interface_expansion', 'fra', 'Message proposant d''affiner une requête', 'message', 'Nous vous proposons de préciser celle-ci'); INSERT INTO label VALUES ('nb_reponses', 'message_interface_expansion', 'fra', 'Message annonçant le nombre de résultats d''une recherche.', 'message', 'Vous avez XX réponse(s) à votre requête'); INSERT INTO label VALUES ('mots_cles_req', 'message_interface_expansion', 'eng', 'Label for keywords of a query', 'message', 'Query''s keywords'); INSERT INTO label VALUES ('mess_filtrage_spatial', 'message_interface_expansion', 'eng', 'Message for proposing to execute a spatial filter on results.', 'message', 'You can filter your query for preserving only results strictly included in the selected geographical area.'); INSERT INTO label VALUES ('bt_filtrer_req', 'message_interface_expansion', 'eng', 'Label for button to filter search''s results.', 'message', 'Filter results'); INSERT INTO label VALUES ('mess_filtrage_croise', 'message_interface_expansion', 'eng', 'Message for proposing to display the layer corresponding at a spatial term.', 'message', 'You can refine spatial area of your query in displaying the associated layer with one of following terms'); INSERT INTO label VALUES ('mess_prop_expansion', 'message_interface_expansion', 'eng', 'Message for proposing to expand a query', 'message', 'We propose to you to expand your query'); INSERT INTO label VALUES ('mots_cles_ajoutes', 'message_interface_expansion', 'eng', 'Message for announcing keywords added in a query', 'message', 'Added keywords'); INSERT INTO label VALUES ('mess_prop_filtrage', 'message_interface_expansion', 'eng', 'Message for proposing to refine a query', 'message', 'We propose to you to refine your query'); INSERT INTO label VALUES ('nb_reponses', 'message_interface_expansion', 'eng', 'Message for annoucing the number of results at a query.', 'message', 'You have XX result(s) at your query'); INSERT INTO label VALUES ('refer_gab_iso19115', 'gabarit_mtd', 'fra', NULL, 'gabarit', 'Gabarit de référence ISO 19115'); INSERT INTO label VALUES ('refer_gab_iso19115', 'gabarit_mtd', 'eng', NULL, 'gabarit', 'ISO 19115 reference profile'); INSERT INTO label VALUES ('com_country_939', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_939', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_940', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_940', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_943', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_943', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_948', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_948', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_967', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_967', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_968', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_968', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_971', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_971', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_976', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_976', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_984', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_984', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_985', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_985', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_987', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_987', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_994', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_994', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_1019', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_1019', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_1020', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_1020', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_1023', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_1023', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_1028', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_1028', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_1036', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1036', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1037', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1037', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1039', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1039', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1046', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1046', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1060', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1060', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1061', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1061', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1063', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1063', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1070', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1070', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_code_1043', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_1084', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1084', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1085', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1085', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1087', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1087', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1094', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1094', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1108', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1108', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1109', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1109', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1111', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1111', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1118', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1118', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1132', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1132', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1133', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1133', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1135', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1135', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1142', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1142', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1156', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1156', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1157', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1157', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1159', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1159', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1166', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1166', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1180', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1180', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1181', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1181', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1183', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1183', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1190', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1190', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_1215', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_1215', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_1216', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_1216', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_1219', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_1219', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_1224', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_1224', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_1232', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1232', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1233', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1233', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1235', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1235', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1242', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1242', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1259', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1259', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1260', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1260', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1262', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1262', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1269', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1269', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1289', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1289', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1290', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1290', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1292', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1292', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1299', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1299', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1313', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1313', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1314', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1314', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1316', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1316', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1323', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1323', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_1348', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_1348', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_1349', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_1349', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_1352', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_1352', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_1357', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_1357', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_1370', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1370', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1371', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1371', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1373', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1373', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1380', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1380', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1403', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1403', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1404', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1404', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1406', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1406', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1413', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1413', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1426', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1426', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1429', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1440', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1440', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1441', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1441', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1443', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1443', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1450', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1450', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1463', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1463', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1466', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1477', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1477', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1478', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1478', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1480', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1480', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1487', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1487', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1500', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1500', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1503', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1514', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1514', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1515', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1515', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1517', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1517', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1524', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1524', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1537', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1537', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1540', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1551', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1551', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1552', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1552', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1554', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1554', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1561', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1561', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1574', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1574', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1577', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1588', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1588', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1589', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1589', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1591', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1591', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1598', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1598', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1611', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1611', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1614', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_value_1580', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_1625', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1625', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1626', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1626', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1628', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1628', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1635', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1635', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1648', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1648', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1651', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1662', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1662', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1663', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1663', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_edition_1627', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_editionDate_1665', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1665', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1672', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1672', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1685', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1685', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1688', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1699', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1699', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1700', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1700', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1702', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1702', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1709', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1709', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1722', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1722', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1725', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1736', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1736', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1737', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1737', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1739', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1739', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1746', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1746', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1759', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1759', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1762', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1773', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1773', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1774', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1774', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1776', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1776', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1783', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1783', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1796', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1796', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1799', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1810', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1810', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1811', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1811', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1813', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1813', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1820', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1820', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1833', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1833', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1836', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_value_1802', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_1847', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1847', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1848', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1848', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1850', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1850', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1857', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1857', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1870', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1870', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1873', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_value_1839', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_1884', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1884', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1885', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1885', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1887', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1887', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1894', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1894', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1907', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1907', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1910', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1921', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1921', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1922', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1922', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1924', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1924', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1931', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1931', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_1944', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_1944', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_1947', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_date_1955', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1955', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1956', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1956', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1958', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1958', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1965', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1965', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_1979', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_1979', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_1980', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_1980', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_1982', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_1982', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_1989', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_1989', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2003', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_name_1968', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_2003', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2004', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2004', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2006', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2006', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2013', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2013', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2027', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2027', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2028', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2028', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2030', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2030', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2037', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2037', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2051', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2051', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2052', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2052', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2054', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2054', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2061', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2061', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2075', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2075', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2076', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2076', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2078', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2078', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2085', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2085', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2099', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2099', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2100', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2100', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2102', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2102', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2109', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2109', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_name_2088', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_2123', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2123', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2124', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2124', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2126', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2126', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2133', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2133', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2150', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2150', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2151', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2151', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2153', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2153', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2160', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2160', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_pass_2173', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Booléen'); INSERT INTO label VALUES ('com_pass_2173', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Boolean'); INSERT INTO label VALUES ('com_valueType_2176', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free Text'); INSERT INTO label VALUES ('com_country_2195', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2195', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2196', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2196', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2199', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2199', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2204', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2204', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2223', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2223', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2224', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2224', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2227', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2227', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2232', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2232', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2251', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2251', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2252', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2252', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2255', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2255', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2260', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2260', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2279', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2279', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2280', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2280', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2283', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2283', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2288', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2288', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2307', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2307', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2308', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2308', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2311', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2311', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2316', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2316', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2335', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2335', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2336', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2336', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2339', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2339', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2344', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2344', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2363', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2363', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2364', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2364', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2367', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2367', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2372', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2372', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2391', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2391', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2392', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2392', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2395', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2395', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2400', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2400', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2419', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2419', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2420', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2420', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2423', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2423', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2428', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2428', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2436', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2436', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2437', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2437', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2439', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2439', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2446', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2446', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2471', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2471', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2472', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2472', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2475', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2475', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2480', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2480', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2488', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2488', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2489', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2489', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2491', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2491', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2498', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2498', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_city_2468', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_2512', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2512', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2513', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2513', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2515', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2515', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2522', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2522', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2547', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2547', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2548', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2548', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2551', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2551', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2556', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2556', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_country_2575', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2575', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2576', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2576', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2579', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2579', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2584', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2584', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2592', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2592', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2593', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2593', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2595', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2595', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2602', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2602', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2627', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2627', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2628', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2628', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2631', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2631', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2636', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2636', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2644', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2644', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2645', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2645', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2647', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2647', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2654', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2654', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_voice_2619', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_2668', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2668', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2669', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2669', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2671', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2671', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2678', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2678', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2692', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2692', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2693', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2693', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2695', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2695', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2702', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2702', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2727', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2727', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2728', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2728', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2731', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2731', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2736', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2736', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2744', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2744', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2745', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2745', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2747', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2747', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2754', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2754', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2768', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2768', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2769', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2769', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_name_2734', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_editionDate_2771', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2771', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2778', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2778', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2803', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2803', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2804', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2804', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2807', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2807', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2812', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2812', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2820', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2820', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2821', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2821', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2823', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2823', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2830', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2830', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2844', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2844', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2845', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2845', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2847', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2847', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2854', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2854', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2879', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2879', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2880', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2880', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2883', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2883', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2888', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2888', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_2896', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2896', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2897', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2897', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2899', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2899', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2906', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2906', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2920', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2920', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2921', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2921', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2923', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2923', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_hoursOfService_2889', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_presentationForm_2930', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2930', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_2955', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_2955', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_2956', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_2956', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_2959', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_2959', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_2964', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_2964', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_name_2933', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_date_2972', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2972', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2973', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2973', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2975', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2975', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_2982', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_2982', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_2996', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_2996', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_2997', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_2997', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_2999', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_2999', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3006', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3006', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3031', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3031', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3032', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3032', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3035', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3035', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3040', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3040', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3048', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3048', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3049', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3049', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3051', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3051', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3058', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3058', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3072', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3072', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3073', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3073', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3075', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3075', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3082', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3082', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3107', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3107', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3108', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3108', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3111', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3111', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3116', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3116', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3124', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3124', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3125', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3125', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3127', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3127', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3134', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3134', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3148', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3148', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3149', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3149', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3151', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3151', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3158', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3158', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3183', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3183', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3184', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3184', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3187', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3187', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3192', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3192', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3200', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3200', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3201', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3201', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3203', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3203', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3210', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3210', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3224', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3224', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3225', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3225', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3227', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3227', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3234', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3234', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3259', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3259', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3260', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3260', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3263', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3263', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3268', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3268', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3276', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3276', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3277', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3277', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3279', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3279', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3286', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3286', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3300', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3300', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3301', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3301', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3303', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3303', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3310', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3310', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3335', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3335', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3336', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3336', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3339', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3339', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3344', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3344', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3352', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3352', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3353', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3353', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3355', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3355', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3362', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3362', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3376', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3376', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3377', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3377', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3379', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3379', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3386', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3386', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_edition_3354', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_country_3411', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3411', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3412', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3412', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3415', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3415', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3420', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3420', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3428', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3428', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3429', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_collectiveTitle_3393', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Free text'); INSERT INTO label VALUES ('com_dateType_3429', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3431', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3431', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3438', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3438', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3452', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3452', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3453', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3453', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3455', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3455', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3462', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3462', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3487', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3487', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3488', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3488', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3491', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3491', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3496', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3496', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3504', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3504', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3505', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3505', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3507', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3507', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3514', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3514', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3528', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3528', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3529', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3529', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3531', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3531', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3538', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3538', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3563', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3563', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3564', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3564', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3567', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3567', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3572', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3572', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3580', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3580', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3581', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3581', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3583', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3583', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3590', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3590', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3604', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3604', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3605', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3605', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3607', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3607', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3614', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3614', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_country_3639', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO 3166-3'); INSERT INTO label VALUES ('com_country_3639', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO 3166-3'); INSERT INTO label VALUES ('com_electronicMailAddress_3640', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Adresse mèl, ex : prenom.nom@mon.domaine'); INSERT INTO label VALUES ('com_electronicMailAddress_3640', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Mail address, e.g surname.name@my.domain'); INSERT INTO label VALUES ('com_linkage_3643', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'URL, ex : http://www.mondomain.org/'); INSERT INTO label VALUES ('com_linkage_3643', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'URL, e.g http://www.mydomain.org/'); INSERT INTO label VALUES ('com_function_3648', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_function_3648', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list - ISO19115 (CI_OnLineFunctionCode)'); INSERT INTO label VALUES ('com_date_3656', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3656', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3657', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3657', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_editionDate_3659', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_editionDate_3659', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_presentationForm_3666', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_presentationForm_3666', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Code list ISO 19115 (CI_PresentationFormCode)'); INSERT INTO label VALUES ('com_date_3680', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Formats de date acceptés : JJ-MM-AAAA, MM-AAAA, AAAA'); INSERT INTO label VALUES ('com_date_3680', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Accepted format : YYYY-MM-DD,YYYY-MM,YYYY'); INSERT INTO label VALUES ('com_dateType_3681', 'message_interface', 'fra', 'Commentaires élément de métadonnées', 'aide', 'Liste de valeurs prédéfinies ISO 19115 (CI_DateTypeCode)'); INSERT INTO label VALUES ('com_dateType_3681', 'message_interface', 'eng', 'Metadata element comment', 'aide', 'Cod