diff --git a/docs/404.html b/docs/404.html index c6c298b..118b9a8 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,7 +32,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/authors.html b/docs/authors.html index aa30d5f..8d31d5b 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -63,13 +63,13 @@

Citation

Mészáros M (2023). restatapi: Search and Retrieve Data from Eurostat Database. -R package version 0.20.1, https://github.com/eurostat/restatapi. +R package version 0.20.3, https://github.com/eurostat/restatapi.

@Manual{,
   title = {restatapi: Search and Retrieve Data from Eurostat Database},
   author = {Mátyás Mészáros},
   year = {2023},
-  note = {R package version 0.20.1},
+  note = {R package version 0.20.3},
   url = {https://github.com/eurostat/restatapi},
 }
diff --git a/docs/index.html b/docs/index.html index 8cfa027..e4aa90e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -37,7 +37,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -72,9 +72,12 @@
-

restatapi @@ -154,7 +157,7 @@

10 examples
 options(restatapi_update=TRUE)
 options(restatapi_cache_dir=file.path(tempdir(),"restatapi"))

-

Example 6: First download the annual (select_freq="A") air passenger transport data for the main airports of Montenegro (avia_par_me) and do not cache any of the data (cache=FALSE). Then from the same table download the monthly (select_freq="M") and quarterly (filters="Q...) data for 2 specific airport pairs/routes (filters=...ME_LYPG_HU_LHBP+ME_LYTV_UA_UKKK") in August 2016 and on 1 July 2017 (date_filter=c("2016-08","2017-07-01")). The filters are provided in the format how it is required by the REST SDMX web service. Then download again the monthly and quarterly data (filters=c("Quarterly","Monthly")) where there is exact match in the DSD for “HU” for August 2016 and 1 March 2014 (date_filter=c("2016-08","2014-03-01")). This query will provide only monthly data for 2016, as the quarterly data is always assigned to the first month of the quarter and there is no data for 2014. Since there is no exact match for the “HU” pattern, it will return all the monthly data for August 2016 and put the labels (like the name of the airports and units) so the data can be easier understood (label=TRUE). Finally, download only the quarterly data (select_freq="Q") for several time periods (date_filter=c("2017-03",2016,"2017-07-01",2012:2014), the order of the dates does not matter) where the “HU” pattern can be found anywhere, but only in the code column of the DSD (filters="HU",exact_match=FALSE,name=FALSE). The result will be all the statistics about flights from Montenegro to Hungary in the 3rd quarter of 2017, as there is no information for the other time periods.

+

Example 6: First download the annual (select_freq="A") air passenger transport data for the main airports of Montenegro (avia_par_me) and do not cache any of the data (cache=FALSE). Then from the same table download the monthly (select_freq="M") and quarterly (filters="Q...) data for 2 specific airport pairs/routes (filters=...ME_LYPG_HU_LHBP+ME_LYTV_UA_UKKK") in August 2016 and on 1 July 2017 (date_filter=c("2016-08","2017-07-01")). The filters are provided in the format how it is required by the REST SDMX web service. Under the old API it returned the value for the selected routes for the month August 2016, July 2017 and the 3rd quarter of 2017. Meanwhile under the new API it returns all the quarterly and monthly value as there is a single day in the date_filter. Then download again the monthly and quarterly data (filters=c("Quarterly","Monthly")) where there is exact match in the DSD for “HU” for August 2016 and 1 March 2014 (date_filter=c("2016-08","2014-03-01")). This query will provide only monthly data for 2016, as the quarterly data is always assigned to the first month of the quarter and there is no data for 2014. Since there is no exact match for the “HU” pattern, it returned all the monthly data for August 2016 and put the labels (like the name of the airports and units) so the data can be easier understood (label=TRUE) under the old API. Under the new API it returns all the quarterly and monthly data as there is a single day in the date_filter. Finally, download only the quarterly data (select_freq="Q") for several time periods (date_filter=c("2017-03",2016,"2017-07-01",2012:2014), the order of the dates does not matter) where the “HU” pattern can be found anywhere, but only in the code column of the DSD (filters="HU",exact_match=FALSE,name=FALSE). The result was all the statistics about flights from Montenegro to Hungary in the 3rd quarter of 2017, as there is no information for the other time periods under the old API. Under the new API it will give back all the quarterly data in dataset for flights from Montenegro to Hungary because in the date_filter there is a single day.

 dt<-get_eurostat_data("avia_par_me",select_freq="A",cache=FALSE)
 dt<-get_eurostat_data("avia_par_me",
diff --git a/docs/news/index.html b/docs/news/index.html
index bb5bf45..fbd812b 100644
--- a/docs/news/index.html
+++ b/docs/news/index.html
@@ -17,7 +17,7 @@
       
       
         restatapi
-        0.20.1
+        0.20.3
       
     
@@ -47,6 +47,20 @@

Changelog

Source: NEWS.md
+
+ +
+
+ +
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index d859970..611a11e 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,5 +2,5 @@ pandoc: 2.19.2 pkgdown: 2.0.7 pkgdown_sha: ~ articles: {} -last_built: 2023-02-22T18:04Z +last_built: 2023-02-24T11:11Z diff --git a/docs/reference/clean_restatapi_cache.html b/docs/reference/clean_restatapi_cache.html index e8dbaed..ef81baf 100644 --- a/docs/reference/clean_restatapi_cache.html +++ b/docs/reference/clean_restatapi_cache.html @@ -19,7 +19,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/create_filter_table.html b/docs/reference/create_filter_table.html index a421847..48649a5 100644 --- a/docs/reference/create_filter_table.html +++ b/docs/reference/create_filter_table.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/dot-restatapi_env.html b/docs/reference/dot-restatapi_env.html index 993eb5a..b7554a9 100644 --- a/docs/reference/dot-restatapi_env.html +++ b/docs/reference/dot-restatapi_env.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/extract_data.html b/docs/reference/extract_data.html index 688b2d1..8e5ad96 100644 --- a/docs/reference/extract_data.html +++ b/docs/reference/extract_data.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/extract_dsd.html b/docs/reference/extract_dsd.html index 1620497..e3be494 100644 --- a/docs/reference/extract_dsd.html +++ b/docs/reference/extract_dsd.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -53,7 +53,7 @@

Extract the Data Structure Definition content from SDMX XML

-
extract_dsd(concept = NULL, dsd_xml = NULL, lang = "en", api_version)
+
extract_dsd(concept = NULL, dsd_xml = NULL, lang = "en")
@@ -70,10 +70,6 @@

Arguments

a character string either en, de or fr to define the language version for the name column of the DSD. It is used only in the new API. The default is en - English.

- -
api_version
-

the value of the API_VERSIONING from the config file

-

Value

@@ -117,9 +113,8057 @@

Examples

message("Unable to download the xml file.\n",e)}, warning=function(w){ message("Unable to download the xml file.\n",w)}) -#> Unable to download the xml file. -#> Error in open.connection(x, "rb"): HTTP error 404. -if (exists("dsd_xml")) {extract_dsd("GEO",dsd_xml,api_version=rav)} +if (exists("dsd_xml")) {extract_dsd("GEO",dsd_xml)} +#> concept xml_clc +#> [1,] "GEO" "EUR" +#> [2,] "GEO" "EU" +#> [3,] "GEO" "EU_V" +#> [4,] "GEO" "EU27_2020_EFTA" +#> [5,] "GEO" "EU27_2020_IS_K" +#> [6,] "GEO" "EU27_2020" +#> [7,] "GEO" "EU28_EFTA" +#> [8,] "GEO" "EU28_IS_K" +#> [9,] "GEO" "EU28" +#> [10,] "GEO" "EU27_2007" +#> [11,] "GEO" "EU25" +#> [12,] "GEO" "EU15" +#> [13,] "GEO" "EU15_NO" +#> [14,] "GEO" "NMS13" +#> [15,] "GEO" "NMS12" +#> [16,] "GEO" "NMS10" +#> [17,] "GEO" "EU12" +#> [18,] "GEO" "EU10" +#> [19,] "GEO" "EU9" +#> [20,] "GEO" "EU6" +#> [21,] "GEO" "EA" +#> [22,] "GEO" "EA19" +#> [23,] "GEO" "EA18" +#> [24,] "GEO" "EA17" +#> [25,] "GEO" "EA16" +#> [26,] "GEO" "EA15" +#> [27,] "GEO" "EA13" +#> [28,] "GEO" "EA12" +#> [29,] "GEO" "EA11" +#> [30,] "GEO" "BE" +#> [31,] "GEO" "BE1_2" +#> [32,] "GEO" "BE1" +#> [33,] "GEO" "BE10_24" +#> [34,] "GEO" "BE10" +#> [35,] "GEO" "BE100" +#> [36,] "GEO" "BE2" +#> [37,] "GEO" "BE21" +#> [38,] "GEO" "BE211" +#> [39,] "GEO" "BE212" +#> [40,] "GEO" "BE213" +#> [41,] "GEO" "BE22" +#> [42,] "GEO" "BE221" +#> [43,] "GEO" "BE222" +#> [44,] "GEO" "BE223" +#> [45,] "GEO" "BE224" +#> [46,] "GEO" "BE225" +#> [47,] "GEO" "BE23" +#> [48,] "GEO" "BE231" +#> [49,] "GEO" "BE232" +#> [50,] "GEO" "BE233" +#> [51,] "GEO" "BE234" +#> [52,] "GEO" "BE235" +#> [53,] "GEO" "BE236" +#> [54,] "GEO" "BE24" +#> [55,] "GEO" "BE241" +#> [56,] "GEO" "BE242" +#> [57,] "GEO" "BE25" +#> [58,] "GEO" "BE251" +#> [59,] "GEO" "BE252" +#> [60,] "GEO" "BE253" +#> [61,] "GEO" "BE254" +#> [62,] "GEO" "BE255" +#> [63,] "GEO" "BE256" +#> [64,] "GEO" "BE257" +#> [65,] "GEO" "BE258" +#> [66,] "GEO" "BE3" +#> [67,] "GEO" "BE31" +#> [68,] "GEO" "BE310" +#> [69,] "GEO" "BE32" +#> [70,] "GEO" "BE321" +#> [71,] "GEO" "BE322" +#> [72,] "GEO" "BE323" +#> [73,] "GEO" "BE324" +#> [74,] "GEO" "BE325" +#> [75,] "GEO" "BE326" +#> [76,] "GEO" "BE327" +#> [77,] "GEO" "BE328" +#> [78,] "GEO" "BE329" +#> [79,] "GEO" "BE32A" +#> [80,] "GEO" "BE32B" +#> [81,] "GEO" "BE32C" +#> [82,] "GEO" "BE32D" +#> [83,] "GEO" "BE33" +#> [84,] "GEO" "BE331" +#> [85,] "GEO" "BE332" +#> [86,] "GEO" "BE334" +#> [87,] "GEO" "BE335_336" +#> [88,] "GEO" "BE335" +#> [89,] "GEO" "BE336" +#> [90,] "GEO" "BE34" +#> [91,] "GEO" "BE341" +#> [92,] "GEO" "BE342" +#> [93,] "GEO" "BE343" +#> [94,] "GEO" "BE344" +#> [95,] "GEO" "BE345" +#> [96,] "GEO" "BE35" +#> [97,] "GEO" "BE351" +#> [98,] "GEO" "BE352" +#> [99,] "GEO" "BE353" +#> [100,] "GEO" "BEZ" +#> [101,] "GEO" "BEZZ" +#> [102,] "GEO" "BEZZZ" +#> [103,] "GEO" "BE_FRA" +#> [104,] "GEO" "BE_VLA" +#> [105,] "GEO" "BE_CAP" +#> [106,] "GEO" "BEX" +#> [107,] "GEO" "BEXX" +#> [108,] "GEO" "BEXXX" +#> [109,] "GEO" "BE_NAL" +#> [110,] "GEO" "BG" +#> [111,] "GEO" "BG3" +#> [112,] "GEO" "BG31" +#> [113,] "GEO" "BG311" +#> [114,] "GEO" "BG312" +#> [115,] "GEO" "BG313" +#> [116,] "GEO" "BG314" +#> [117,] "GEO" "BG315" +#> [118,] "GEO" "BG32" +#> [119,] "GEO" "BG321" +#> [120,] "GEO" "BG322" +#> [121,] "GEO" "BG323" +#> [122,] "GEO" "BG324" +#> [123,] "GEO" "BG325" +#> [124,] "GEO" "BG33" +#> [125,] "GEO" "BG331" +#> [126,] "GEO" "BG332" +#> [127,] "GEO" "BG333" +#> [128,] "GEO" "BG334" +#> [129,] "GEO" "BG34" +#> [130,] "GEO" "BG341" +#> [131,] "GEO" "BG342" +#> [132,] "GEO" "BG343" +#> [133,] "GEO" "BG344" +#> [134,] "GEO" "BG4" +#> [135,] "GEO" "BG41" +#> [136,] "GEO" "BG411" +#> [137,] "GEO" "BG412" +#> [138,] "GEO" "BG413" +#> [139,] "GEO" "BG414" +#> [140,] "GEO" "BG415" +#> [141,] "GEO" "BG42" +#> [142,] "GEO" "BG421" +#> [143,] "GEO" "BG422" +#> [144,] "GEO" "BG423" +#> [145,] "GEO" "BG424" +#> [146,] "GEO" "BG425" +#> [147,] "GEO" "BGZ" +#> [148,] "GEO" "BGZZ" +#> [149,] "GEO" "BGZZZ" +#> [150,] "GEO" "BG1" +#> [151,] "GEO" "BG11" +#> [152,] "GEO" "BG111" +#> [153,] "GEO" "BG112" +#> [154,] "GEO" "BG113" +#> [155,] "GEO" "BG12" +#> [156,] "GEO" "BG121" +#> [157,] "GEO" "BG122" +#> [158,] "GEO" "BG123" +#> [159,] "GEO" "BG124" +#> [160,] "GEO" "BG125" +#> [161,] "GEO" "BG13" +#> [162,] "GEO" "BG131" +#> [163,] "GEO" "BG132" +#> [164,] "GEO" "BG133" +#> [165,] "GEO" "BG134" +#> [166,] "GEO" "BG135" +#> [167,] "GEO" "BG136" +#> [168,] "GEO" "BG2" +#> [169,] "GEO" "BG21" +#> [170,] "GEO" "BG211" +#> [171,] "GEO" "BG212" +#> [172,] "GEO" "BG213" +#> [173,] "GEO" "BG214" +#> [174,] "GEO" "BG215" +#> [175,] "GEO" "BG22" +#> [176,] "GEO" "BG221" +#> [177,] "GEO" "BG222" +#> [178,] "GEO" "BG223" +#> [179,] "GEO" "BG224" +#> [180,] "GEO" "BG225" +#> [181,] "GEO" "BG226" +#> [182,] "GEO" "BG23" +#> [183,] "GEO" "BG231" +#> [184,] "GEO" "BG232" +#> [185,] "GEO" "BG233" +#> [186,] "GEO" "BG_CAP" +#> [187,] "GEO" "BGX" +#> [188,] "GEO" "BGXX" +#> [189,] "GEO" "BGXXX" +#> [190,] "GEO" "CZ" +#> [191,] "GEO" "CZ0" +#> [192,] "GEO" "CZ01" +#> [193,] "GEO" "CZ010" +#> [194,] "GEO" "CZ02" +#> [195,] "GEO" "CZ020" +#> [196,] "GEO" "CZ03" +#> [197,] "GEO" "CZ031" +#> [198,] "GEO" "CZ032" +#> [199,] "GEO" "CZ04" +#> [200,] "GEO" "CZ041" +#> [201,] "GEO" "CZ042" +#> [202,] "GEO" "CZ05" +#> [203,] "GEO" "CZ051" +#> [204,] "GEO" "CZ052" +#> [205,] "GEO" "CZ053" +#> [206,] "GEO" "CZ06" +#> [207,] "GEO" "CZ061" +#> [208,] "GEO" "CZ062" +#> [209,] "GEO" "CZ063" +#> [210,] "GEO" "CZ064" +#> [211,] "GEO" "CZ07" +#> [212,] "GEO" "CZ071" +#> [213,] "GEO" "CZ072" +#> [214,] "GEO" "CZ08" +#> [215,] "GEO" "CZ080" +#> [216,] "GEO" "CZZ" +#> [217,] "GEO" "CZZZ" +#> [218,] "GEO" "CZZZZ" +#> [219,] "GEO" "CZ_CAP" +#> [220,] "GEO" "CZX" +#> [221,] "GEO" "CZXX" +#> [222,] "GEO" "CZXXX" +#> [223,] "GEO" "CZ_CEC" +#> [224,] "GEO" "CZ_MOR" +#> [225,] "GEO" "DK" +#> [226,] "GEO" "DK0" +#> [227,] "GEO" "DK01" +#> [228,] "GEO" "DK011" +#> [229,] "GEO" "DK012" +#> [230,] "GEO" "DK013" +#> [231,] "GEO" "DK014" +#> [232,] "GEO" "DK02" +#> [233,] "GEO" "DK021" +#> [234,] "GEO" "DK022" +#> [235,] "GEO" "DK03" +#> [236,] "GEO" "DK031" +#> [237,] "GEO" "DK032" +#> [238,] "GEO" "DK04" +#> [239,] "GEO" "DK041" +#> [240,] "GEO" "DK042" +#> [241,] "GEO" "DK05" +#> [242,] "GEO" "DK050" +#> [243,] "GEO" "DKZ" +#> [244,] "GEO" "DKZZ" +#> [245,] "GEO" "DKZZZ" +#> [246,] "GEO" "DK001-004" +#> [247,] "GEO" "DK001" +#> [248,] "GEO" "DK002" +#> [249,] "GEO" "DK003" +#> [250,] "GEO" "DK004" +#> [251,] "GEO" "DK005" +#> [252,] "GEO" "DK006" +#> [253,] "GEO" "DK007" +#> [254,] "GEO" "DK008" +#> [255,] "GEO" "DK009" +#> [256,] "GEO" "DK00A" +#> [257,] "GEO" "DK00B" +#> [258,] "GEO" "DK00C" +#> [259,] "GEO" "DK00D" +#> [260,] "GEO" "DK00E" +#> [261,] "GEO" "DK00F" +#> [262,] "GEO" "DK_CAP" +#> [263,] "GEO" "DKX" +#> [264,] "GEO" "DKXX" +#> [265,] "GEO" "DKXXX" +#> [266,] "GEO" "DE" +#> [267,] "GEO" "DE_TOT" +#> [268,] "GEO" "DEW" +#> [269,] "GEO" "EX_DD" +#> [270,] "GEO" "DE1" +#> [271,] "GEO" "DE11" +#> [272,] "GEO" "DE111" +#> [273,] "GEO" "DE112" +#> [274,] "GEO" "DE113" +#> [275,] "GEO" "DE114" +#> [276,] "GEO" "DE115" +#> [277,] "GEO" "DE116" +#> [278,] "GEO" "DE117" +#> [279,] "GEO" "DE118" +#> [280,] "GEO" "DE119" +#> [281,] "GEO" "DE11A" +#> [282,] "GEO" "DE11B" +#> [283,] "GEO" "DE11C" +#> [284,] "GEO" "DE11D" +#> [285,] "GEO" "DE12" +#> [286,] "GEO" "DE121" +#> [287,] "GEO" "DE122" +#> [288,] "GEO" "DE123" +#> [289,] "GEO" "DE124" +#> [290,] "GEO" "DE125" +#> [291,] "GEO" "DE126" +#> [292,] "GEO" "DE127" +#> [293,] "GEO" "DE128" +#> [294,] "GEO" "DE129" +#> [295,] "GEO" "DE12A" +#> [296,] "GEO" "DE12B" +#> [297,] "GEO" "DE12C" +#> [298,] "GEO" "DE13" +#> [299,] "GEO" "DE131" +#> [300,] "GEO" "DE132" +#> [301,] "GEO" "DE133" +#> [302,] "GEO" "DE134" +#> [303,] "GEO" "DE135" +#> [304,] "GEO" "DE136" +#> [305,] "GEO" "DE137" +#> [306,] "GEO" "DE138" +#> [307,] "GEO" "DE139" +#> [308,] "GEO" "DE13A" +#> [309,] "GEO" "DE14" +#> [310,] "GEO" "DE141" +#> [311,] "GEO" "DE142" +#> [312,] "GEO" "DE143" +#> [313,] "GEO" "DE144" +#> [314,] "GEO" "DE145" +#> [315,] "GEO" "DE146" +#> [316,] "GEO" "DE147" +#> [317,] "GEO" "DE148" +#> [318,] "GEO" "DE149" +#> [319,] "GEO" "DE1_E" +#> [320,] "GEO" "DE1_N_W" +#> [321,] "GEO" "DE1_S_W" +#> [322,] "GEO" "DE1BA" +#> [323,] "GEO" "DE1WU" +#> [324,] "GEO" "DE2" +#> [325,] "GEO" "DE21" +#> [326,] "GEO" "DE211" +#> [327,] "GEO" "DE212" +#> [328,] "GEO" "DE213" +#> [329,] "GEO" "DE214" +#> [330,] "GEO" "DE215" +#> [331,] "GEO" "DE216" +#> [332,] "GEO" "DE217" +#> [333,] "GEO" "DE218" +#> [334,] "GEO" "DE219" +#> [335,] "GEO" "DE21A" +#> [336,] "GEO" "DE21B" +#> [337,] "GEO" "DE21C" +#> [338,] "GEO" "DE21D" +#> [339,] "GEO" "DE21E" +#> [340,] "GEO" "DE21F" +#> [341,] "GEO" "DE21G" +#> [342,] "GEO" "DE21H" +#> [343,] "GEO" "DE21I" +#> [344,] "GEO" "DE21J" +#> [345,] "GEO" "DE21K" +#> [346,] "GEO" "DE21L" +#> [347,] "GEO" "DE21M" +#> [348,] "GEO" "DE21N" +#> [349,] "GEO" "DE22" +#> [350,] "GEO" "DE221" +#> [351,] "GEO" "DE222" +#> [352,] "GEO" "DE223" +#> [353,] "GEO" "DE224" +#> [354,] "GEO" "DE225" +#> [355,] "GEO" "DE226" +#> [356,] "GEO" "DE227" +#> [357,] "GEO" "DE228" +#> [358,] "GEO" "DE229" +#> [359,] "GEO" "DE22A" +#> [360,] "GEO" "DE22B" +#> [361,] "GEO" "DE22C" +#> [362,] "GEO" "DE23" +#> [363,] "GEO" "DE231" +#> [364,] "GEO" "DE232" +#> [365,] "GEO" "DE233" +#> [366,] "GEO" "DE234" +#> [367,] "GEO" "DE235" +#> [368,] "GEO" "DE236" +#> [369,] "GEO" "DE237" +#> [370,] "GEO" "DE238" +#> [371,] "GEO" "DE239" +#> [372,] "GEO" "DE23A" +#> [373,] "GEO" "DE2FRA" +#> [374,] "GEO" "DE24" +#> [375,] "GEO" "DE241" +#> [376,] "GEO" "DE242" +#> [377,] "GEO" "DE243" +#> [378,] "GEO" "DE244" +#> [379,] "GEO" "DE245" +#> [380,] "GEO" "DE246" +#> [381,] "GEO" "DE247" +#> [382,] "GEO" "DE248" +#> [383,] "GEO" "DE249" +#> [384,] "GEO" "DE24A" +#> [385,] "GEO" "DE24B" +#> [386,] "GEO" "DE24C" +#> [387,] "GEO" "DE24D" +#> [388,] "GEO" "DE25" +#> [389,] "GEO" "DE251" +#> [390,] "GEO" "DE252" +#> [391,] "GEO" "DE253" +#> [392,] "GEO" "DE254" +#> [393,] "GEO" "DE255" +#> [394,] "GEO" "DE256" +#> [395,] "GEO" "DE257" +#> [396,] "GEO" "DE258" +#> [397,] "GEO" "DE259" +#> [398,] "GEO" "DE25A" +#> [399,] "GEO" "DE25B" +#> [400,] "GEO" "DE25C" +#> [401,] "GEO" "DE26" +#> [402,] "GEO" "DE261" +#> [403,] "GEO" "DE262" +#> [404,] "GEO" "DE263" +#> [405,] "GEO" "DE264" +#> [406,] "GEO" "DE265" +#> [407,] "GEO" "DE266" +#> [408,] "GEO" "DE267" +#> [409,] "GEO" "DE268" +#> [410,] "GEO" "DE269" +#> [411,] "GEO" "DE26A" +#> [412,] "GEO" "DE26B" +#> [413,] "GEO" "DE26C" +#> [414,] "GEO" "DE27" +#> [415,] "GEO" "DE271" +#> [416,] "GEO" "DE272" +#> [417,] "GEO" "DE273" +#> [418,] "GEO" "DE274" +#> [419,] "GEO" "DE275" +#> [420,] "GEO" "DE276" +#> [421,] "GEO" "DE277" +#> [422,] "GEO" "DE278" +#> [423,] "GEO" "DE279" +#> [424,] "GEO" "DE27A" +#> [425,] "GEO" "DE27B" +#> [426,] "GEO" "DE27C" +#> [427,] "GEO" "DE27D" +#> [428,] "GEO" "DE27E" +#> [429,] "GEO" "DE2_E" +#> [430,] "GEO" "DE2_N" +#> [431,] "GEO" "DE2_S" +#> [432,] "GEO" "DE3_5_6" +#> [433,] "GEO" "DE3" +#> [434,] "GEO" "DE30" +#> [435,] "GEO" "DE300" +#> [436,] "GEO" "DE301" +#> [437,] "GEO" "DE302" +#> [438,] "GEO" "DE4" +#> [439,] "GEO" "DE40" +#> [440,] "GEO" "DE401" +#> [441,] "GEO" "DE402" +#> [442,] "GEO" "DE403" +#> [443,] "GEO" "DE404" +#> [444,] "GEO" "DE405" +#> [445,] "GEO" "DE406" +#> [446,] "GEO" "DE407" +#> [447,] "GEO" "DE408" +#> [448,] "GEO" "DE409" +#> [449,] "GEO" "DE40A" +#> [450,] "GEO" "DE40B" +#> [451,] "GEO" "DE40C" +#> [452,] "GEO" "DE40D" +#> [453,] "GEO" "DE40E" +#> [454,] "GEO" "DE40F" +#> [455,] "GEO" "DE40G" +#> [456,] "GEO" "DE40H" +#> [457,] "GEO" "DE40I" +#> [458,] "GEO" "DE41" +#> [459,] "GEO" "DE411" +#> [460,] "GEO" "DE412" +#> [461,] "GEO" "DE413" +#> [462,] "GEO" "DE414" +#> [463,] "GEO" "DE415" +#> [464,] "GEO" "DE416" +#> [465,] "GEO" "DE417" +#> [466,] "GEO" "DE418" +#> [467,] "GEO" "DE42" +#> [468,] "GEO" "DE421" +#> [469,] "GEO" "DE422" +#> [470,] "GEO" "DE423" +#> [471,] "GEO" "DE424" +#> [472,] "GEO" "DE425" +#> [473,] "GEO" "DE426" +#> [474,] "GEO" "DE427" +#> [475,] "GEO" "DE428" +#> [476,] "GEO" "DE429" +#> [477,] "GEO" "DE42A" +#> [478,] "GEO" "DE5" +#> [479,] "GEO" "DE50" +#> [480,] "GEO" "DE501" +#> [481,] "GEO" "DE502" +#> [482,] "GEO" "DE6" +#> [483,] "GEO" "DE60" +#> [484,] "GEO" "DE600" +#> [485,] "GEO" "DE7" +#> [486,] "GEO" "DE71" +#> [487,] "GEO" "DE711" +#> [488,] "GEO" "DE712" +#> [489,] "GEO" "DE713" +#> [490,] "GEO" "DE714" +#> [491,] "GEO" "DE715" +#> [492,] "GEO" "DE716" +#> [493,] "GEO" "DE717" +#> [494,] "GEO" "DE718" +#> [495,] "GEO" "DE719" +#> [496,] "GEO" "DE71A" +#> [497,] "GEO" "DE71B" +#> [498,] "GEO" "DE71C" +#> [499,] "GEO" "DE71D" +#> [500,] "GEO" "DE71E" +#> [501,] "GEO" "DE72" +#> [502,] "GEO" "DE721" +#> [503,] "GEO" "DE722" +#> [504,] "GEO" "DE723" +#> [505,] "GEO" "DE724" +#> [506,] "GEO" "DE725" +#> [507,] "GEO" "DE73" +#> [508,] "GEO" "DE731" +#> [509,] "GEO" "DE732" +#> [510,] "GEO" "DE733" +#> [511,] "GEO" "DE734" +#> [512,] "GEO" "DE735" +#> [513,] "GEO" "DE736" +#> [514,] "GEO" "DE737" +#> [515,] "GEO" "DE7_N" +#> [516,] "GEO" "DE7_S" +#> [517,] "GEO" "DE7HBG" +#> [518,] "GEO" "DE7RHE" +#> [519,] "GEO" "DE8" +#> [520,] "GEO" "DE80" +#> [521,] "GEO" "DE801" +#> [522,] "GEO" "DE802" +#> [523,] "GEO" "DE803" +#> [524,] "GEO" "DE804" +#> [525,] "GEO" "DE805" +#> [526,] "GEO" "DE806" +#> [527,] "GEO" "DE807" +#> [528,] "GEO" "DE808" +#> [529,] "GEO" "DE809" +#> [530,] "GEO" "DE80A" +#> [531,] "GEO" "DE80B" +#> [532,] "GEO" "DE80C" +#> [533,] "GEO" "DE80D" +#> [534,] "GEO" "DE80E" +#> [535,] "GEO" "DE80F" +#> [536,] "GEO" "DE80G" +#> [537,] "GEO" "DE80H" +#> [538,] "GEO" "DE80I" +#> [539,] "GEO" "DE80J" +#> [540,] "GEO" "DE80K" +#> [541,] "GEO" "DE80L" +#> [542,] "GEO" "DE80M" +#> [543,] "GEO" "DE80N" +#> [544,] "GEO" "DE80O" +#> [545,] "GEO" "DE9" +#> [546,] "GEO" "DE91" +#> [547,] "GEO" "DE911" +#> [548,] "GEO" "DE912" +#> [549,] "GEO" "DE913" +#> [550,] "GEO" "DE914" +#> [551,] "GEO" "DE915" +#> [552,] "GEO" "DE916" +#> [553,] "GEO" "DE917" +#> [554,] "GEO" "DE918" +#> [555,] "GEO" "DE919" +#> [556,] "GEO" "DE91A" +#> [557,] "GEO" "DE91B" +#> [558,] "GEO" "DE91C" +#> [559,] "GEO" "DE92" +#> [560,] "GEO" "DE921" +#> [561,] "GEO" "DE922" +#> [562,] "GEO" "DE923" +#> [563,] "GEO" "DE924" +#> [564,] "GEO" "DE925" +#> [565,] "GEO" "DE926" +#> [566,] "GEO" "DE927" +#> [567,] "GEO" "DE928" +#> [568,] "GEO" "DE929" +#> [569,] "GEO" "DE93" +#> [570,] "GEO" "DE931" +#> [571,] "GEO" "DE932" +#> [572,] "GEO" "DE933" +#> [573,] "GEO" "DE934" +#> [574,] "GEO" "DE935" +#> [575,] "GEO" "DE936" +#> [576,] "GEO" "DE937" +#> [577,] "GEO" "DE938" +#> [578,] "GEO" "DE939" +#> [579,] "GEO" "DE93A" +#> [580,] "GEO" "DE93B" +#> [581,] "GEO" "DE94" +#> [582,] "GEO" "DE941" +#> [583,] "GEO" "DE942" +#> [584,] "GEO" "DE943" +#> [585,] "GEO" "DE944" +#> [586,] "GEO" "DE945" +#> [587,] "GEO" "DE946" +#> [588,] "GEO" "DE947" +#> [589,] "GEO" "DE948" +#> [590,] "GEO" "DE949" +#> [591,] "GEO" "DE94A" +#> [592,] "GEO" "DE94B" +#> [593,] "GEO" "DE94C" +#> [594,] "GEO" "DE94D" +#> [595,] "GEO" "DE94E" +#> [596,] "GEO" "DE94F" +#> [597,] "GEO" "DE94G" +#> [598,] "GEO" "DE94H" +#> [599,] "GEO" "DE9_N" +#> [600,] "GEO" "DE9_S_E" +#> [601,] "GEO" "DE9_W" +#> [602,] "GEO" "DEA-C" +#> [603,] "GEO" "DEA" +#> [604,] "GEO" "DEA1" +#> [605,] "GEO" "DEA11" +#> [606,] "GEO" "DEA12" +#> [607,] "GEO" "DEA13" +#> [608,] "GEO" "DEA14" +#> [609,] "GEO" "DEA15" +#> [610,] "GEO" "DEA16" +#> [611,] "GEO" "DEA17" +#> [612,] "GEO" "DEA18" +#> [613,] "GEO" "DEA19" +#> [614,] "GEO" "DEA1A" +#> [615,] "GEO" "DEA1B" +#> [616,] "GEO" "DEA1C" +#> [617,] "GEO" "DEA1D" +#> [618,] "GEO" "DEA1E" +#> [619,] "GEO" "DEA1F" +#> [620,] "GEO" "DEA2" +#> [621,] "GEO" "DEA21" +#> [622,] "GEO" "DEA22" +#> [623,] "GEO" "DEA23" +#> [624,] "GEO" "DEA24" +#> [625,] "GEO" "DEA25" +#> [626,] "GEO" "DEA26" +#> [627,] "GEO" "DEA27" +#> [628,] "GEO" "DEA28" +#> [629,] "GEO" "DEA29" +#> [630,] "GEO" "DEA2A" +#> [631,] "GEO" "DEA2B" +#> [632,] "GEO" "DEA2C" +#> [633,] "GEO" "DEA2D" +#> [634,] "GEO" "DEA3" +#> [635,] "GEO" "DEA31" +#> [636,] "GEO" "DEA32" +#> [637,] "GEO" "DEA33" +#> [638,] "GEO" "DEA34" +#> [639,] "GEO" "DEA35" +#> [640,] "GEO" "DEA36" +#> [641,] "GEO" "DEA37" +#> [642,] "GEO" "DEA38" +#> [643,] "GEO" "DEA4" +#> [644,] "GEO" "DEA41" +#> [645,] "GEO" "DEA42" +#> [646,] "GEO" "DEA43" +#> [647,] "GEO" "DEA44" +#> [648,] "GEO" "DEA45" +#> [649,] "GEO" "DEA46" +#> [650,] "GEO" "DEA47" +#> [651,] "GEO" "DEA5" +#> [652,] "GEO" "DEA51" +#> [653,] "GEO" "DEA52" +#> [654,] "GEO" "DEA53" +#> [655,] "GEO" "DEA54" +#> [656,] "GEO" "DEA55" +#> [657,] "GEO" "DEA56" +#> [658,] "GEO" "DEA57" +#> [659,] "GEO" "DEA58" +#> [660,] "GEO" "DEA59" +#> [661,] "GEO" "DEA5A" +#> [662,] "GEO" "DEA5B" +#> [663,] "GEO" "DEA5C" +#> [664,] "GEO" "DEA_E" +#> [665,] "GEO" "DEA_N" +#> [666,] "GEO" "DEA_S_W" +#> [667,] "GEO" "DEA_RUHR" +#> [668,] "GEO" "DEB" +#> [669,] "GEO" "DEB1" +#> [670,] "GEO" "DEB11" +#> [671,] "GEO" "DEB12" +#> [672,] "GEO" "DEB13" +#> [673,] "GEO" "DEB14" +#> [674,] "GEO" "DEB15" +#> [675,] "GEO" "DEB16" +#> [676,] "GEO" "DEB17" +#> [677,] "GEO" "DEB18" +#> [678,] "GEO" "DEB19" +#> [679,] "GEO" "DEB1A" +#> [680,] "GEO" "DEB1B" +#> [681,] "GEO" "DEB1C" +#> [682,] "GEO" "DEB1D" +#> [683,] "GEO" "DEB2" +#> [684,] "GEO" "DEB21" +#> [685,] "GEO" "DEB22" +#> [686,] "GEO" "DEB23" +#> [687,] "GEO" "DEB24" +#> [688,] "GEO" "DEB25" +#> [689,] "GEO" "DEB3" +#> [690,] "GEO" "DEB31" +#> [691,] "GEO" "DEB32" +#> [692,] "GEO" "DEB33" +#> [693,] "GEO" "DEB34" +#> [694,] "GEO" "DEB35" +#> [695,] "GEO" "DEB36" +#> [696,] "GEO" "DEB37" +#> [697,] "GEO" "DEB38" +#> [698,] "GEO" "DEB39" +#> [699,] "GEO" "DEB3A" +#> [700,] "GEO" "DEB3B" +#> [701,] "GEO" "DEB3C" +#> [702,] "GEO" "DEB3D" +#> [703,] "GEO" "DEB3E" +#> [704,] "GEO" "DEB3F" +#> [705,] "GEO" "DEB3G" +#> [706,] "GEO" "DEB3H" +#> [707,] "GEO" "DEB3I" +#> [708,] "GEO" "DEB3J" +#> [709,] "GEO" "DEB3K" +#> [710,] "GEO" "DEB_N" +#> [711,] "GEO" "DEB_S" +#> [712,] "GEO" "DEB_AHR" +#> [713,] "GEO" "DEB_MTR" +#> [714,] "GEO" "DEB_MSR" +#> [715,] "GEO" "DEB_NAH" +#> [716,] "GEO" "DEB_RHE" +#> [717,] "GEO" "DEB_RPF" +#> [718,] "GEO" "DEC" +#> [719,] "GEO" "DEC0" +#> [720,] "GEO" "DEC01" +#> [721,] "GEO" "DEC02" +#> [722,] "GEO" "DEC03" +#> [723,] "GEO" "DEC04" +#> [724,] "GEO" "DEC05" +#> [725,] "GEO" "DEC06" +#> [726,] "GEO" "DED" +#> [727,] "GEO" "DED1" +#> [728,] "GEO" "DED11" +#> [729,] "GEO" "DED12" +#> [730,] "GEO" "DED13" +#> [731,] "GEO" "DED14" +#> [732,] "GEO" "DED15" +#> [733,] "GEO" "DED16" +#> [734,] "GEO" "DED17" +#> [735,] "GEO" "DED18" +#> [736,] "GEO" "DED19" +#> [737,] "GEO" "DED1A" +#> [738,] "GEO" "DED1B" +#> [739,] "GEO" "DED1C" +#> [740,] "GEO" "DED2" +#> [741,] "GEO" "DED21" +#> [742,] "GEO" "DED22" +#> [743,] "GEO" "DED23" +#> [744,] "GEO" "DED24" +#> [745,] "GEO" "DED25" +#> [746,] "GEO" "DED26" +#> [747,] "GEO" "DED27" +#> [748,] "GEO" "DED28" +#> [749,] "GEO" "DED29" +#> [750,] "GEO" "DED2A" +#> [751,] "GEO" "DED2B" +#> [752,] "GEO" "DED2C" +#> [753,] "GEO" "DED2D" +#> [754,] "GEO" "DED2E" +#> [755,] "GEO" "DED2F" +#> [756,] "GEO" "DED3" +#> [757,] "GEO" "DED31" +#> [758,] "GEO" "DED32" +#> [759,] "GEO" "DED33" +#> [760,] "GEO" "DED34" +#> [761,] "GEO" "DED35" +#> [762,] "GEO" "DED36" +#> [763,] "GEO" "DED4" +#> [764,] "GEO" "DED41" +#> [765,] "GEO" "DED42" +#> [766,] "GEO" "DED43" +#> [767,] "GEO" "DED44" +#> [768,] "GEO" "DED45" +#> [769,] "GEO" "DED5" +#> [770,] "GEO" "DED51" +#> [771,] "GEO" "DED52" +#> [772,] "GEO" "DED53" +#> [773,] "GEO" "DEE" +#> [774,] "GEO" "DEE0" +#> [775,] "GEO" "DEE01" +#> [776,] "GEO" "DEE02" +#> [777,] "GEO" "DEE03" +#> [778,] "GEO" "DEE04" +#> [779,] "GEO" "DEE05" +#> [780,] "GEO" "DEE06" +#> [781,] "GEO" "DEE07" +#> [782,] "GEO" "DEE08" +#> [783,] "GEO" "DEE09" +#> [784,] "GEO" "DEE0A" +#> [785,] "GEO" "DEE0B" +#> [786,] "GEO" "DEE0C" +#> [787,] "GEO" "DEE0D" +#> [788,] "GEO" "DEE0E" +#> [789,] "GEO" "DEE1" +#> [790,] "GEO" "DEE11" +#> [791,] "GEO" "DEE12" +#> [792,] "GEO" "DEE13" +#> [793,] "GEO" "DEE14" +#> [794,] "GEO" "DEE15" +#> [795,] "GEO" "DEE16" +#> [796,] "GEO" "DEE2" +#> [797,] "GEO" "DEE22" +#> [798,] "GEO" "DEE23" +#> [799,] "GEO" "DEE24" +#> [800,] "GEO" "DEE25" +#> [801,] "GEO" "DEE26" +#> [802,] "GEO" "DEE27" +#> [803,] "GEO" "DEE3" +#> [804,] "GEO" "DEE32" +#> [805,] "GEO" "DEE33" +#> [806,] "GEO" "DEE34" +#> [807,] "GEO" "DEE35" +#> [808,] "GEO" "DEE36" +#> [809,] "GEO" "DEE37" +#> [810,] "GEO" "DEE38" +#> [811,] "GEO" "DEE39" +#> [812,] "GEO" "DEE3A" +#> [813,] "GEO" "DEE_SAU" +#> [814,] "GEO" "DEF" +#> [815,] "GEO" "DEF0" +#> [816,] "GEO" "DEF01" +#> [817,] "GEO" "DEF02" +#> [818,] "GEO" "DEF03" +#> [819,] "GEO" "DEF04" +#> [820,] "GEO" "DEF05" +#> [821,] "GEO" "DEF06" +#> [822,] "GEO" "DEF07" +#> [823,] "GEO" "DEF08" +#> [824,] "GEO" "DEF09" +#> [825,] "GEO" "DEF0A" +#> [826,] "GEO" "DEF0B" +#> [827,] "GEO" "DEF0C" +#> [828,] "GEO" "DEF0D" +#> [829,] "GEO" "DEF0E" +#> [830,] "GEO" "DEF0F" +#> [831,] "GEO" "DEG" +#> [832,] "GEO" "DEG0" +#> [833,] "GEO" "DEG01" +#> [834,] "GEO" "DEG02" +#> [835,] "GEO" "DEG03" +#> [836,] "GEO" "DEG04" +#> [837,] "GEO" "DEG05" +#> [838,] "GEO" "DEG06" +#> [839,] "GEO" "DEG07" +#> [840,] "GEO" "DEG09" +#> [841,] "GEO" "DEG0A" +#> [842,] "GEO" "DEG0B" +#> [843,] "GEO" "DEG0C" +#> [844,] "GEO" "DEG0D" +#> [845,] "GEO" "DEG0E" +#> [846,] "GEO" "DEG0F" +#> [847,] "GEO" "DEG0G" +#> [848,] "GEO" "DEG0H" +#> [849,] "GEO" "DEG0I" +#> [850,] "GEO" "DEG0J" +#> [851,] "GEO" "DEG0K" +#> [852,] "GEO" "DEG0L" +#> [853,] "GEO" "DEG0M" +#> [854,] "GEO" "DEG0N" +#> [855,] "GEO" "DEG0P" +#> [856,] "GEO" "DEZ" +#> [857,] "GEO" "DEZZ" +#> [858,] "GEO" "DEZZZ" +#> [859,] "GEO" "DE_CAP" +#> [860,] "GEO" "DE_DEL1" +#> [861,] "GEO" "DE_DEL2" +#> [862,] "GEO" "DE_DEL3" +#> [863,] "GEO" "DEX" +#> [864,] "GEO" "DEXX" +#> [865,] "GEO" "DEXXX" +#> [866,] "GEO" "EE" +#> [867,] "GEO" "EE0" +#> [868,] "GEO" "EE00" +#> [869,] "GEO" "EE001" +#> [870,] "GEO" "EE004" +#> [871,] "GEO" "EE006" +#> [872,] "GEO" "EE007" +#> [873,] "GEO" "EE008" +#> [874,] "GEO" "EE009" +#> [875,] "GEO" "EE00A" +#> [876,] "GEO" "EEZ" +#> [877,] "GEO" "EEZZ" +#> [878,] "GEO" "EEZZZ" +#> [879,] "GEO" "EE_CAP" +#> [880,] "GEO" "EEX" +#> [881,] "GEO" "EEXX" +#> [882,] "GEO" "EEXXX" +#> [883,] "GEO" "IE" +#> [884,] "GEO" "IE0" +#> [885,] "GEO" "IE04" +#> [886,] "GEO" "IE041" +#> [887,] "GEO" "IE042" +#> [888,] "GEO" "IE05" +#> [889,] "GEO" "IE051" +#> [890,] "GEO" "IE052" +#> [891,] "GEO" "IE053" +#> [892,] "GEO" "IE06" +#> [893,] "GEO" "IE061" +#> [894,] "GEO" "IE062" +#> [895,] "GEO" "IE063" +#> [896,] "GEO" "IE01" +#> [897,] "GEO" "IE011" +#> [898,] "GEO" "IE01101" +#> [899,] "GEO" "IE01102" +#> [900,] "GEO" "IE01103" +#> [901,] "GEO" "IE01104" +#> [902,] "GEO" "IE01105" +#> [903,] "GEO" "IE01106" +#> [904,] "GEO" "IE012" +#> [905,] "GEO" "IE01201" +#> [906,] "GEO" "IE01202" +#> [907,] "GEO" "IE01203" +#> [908,] "GEO" "IE01204" +#> [909,] "GEO" "IE013" +#> [910,] "GEO" "IE01301_01302" +#> [911,] "GEO" "IE01303" +#> [912,] "GEO" "IE01304" +#> [913,] "GEO" "IE02" +#> [914,] "GEO" "IE021" +#> [915,] "GEO" "IE022" +#> [916,] "GEO" "IE02201" +#> [917,] "GEO" "IE02202" +#> [918,] "GEO" "IE02203" +#> [919,] "GEO" "IE023" +#> [920,] "GEO" "IE02301" +#> [921,] "GEO" "IE02302_02303" +#> [922,] "GEO" "IE02304" +#> [923,] "GEO" "IE024" +#> [924,] "GEO" "IE02401" +#> [925,] "GEO" "IE02402" +#> [926,] "GEO" "IE02403" +#> [927,] "GEO" "IE02404_02405" +#> [928,] "GEO" "IE02406" +#> [929,] "GEO" "IE025" +#> [930,] "GEO" "IE02501_02502" +#> [931,] "GEO" "IE02503" +#> [932,] "GEO" "IEZ" +#> [933,] "GEO" "IEZZ" +#> [934,] "GEO" "IEZZZ" +#> [935,] "GEO" "IE_CAP" +#> [936,] "GEO" "IEX" +#> [937,] "GEO" "IEXX" +#> [938,] "GEO" "IEXXX" +#> [939,] "GEO" "EL" +#> [940,] "GEO" "EL1" +#> [941,] "GEO" "EL11" +#> [942,] "GEO" "EL111" +#> [943,] "GEO" "EL112" +#> [944,] "GEO" "EL113" +#> [945,] "GEO" "EL114" +#> [946,] "GEO" "EL115" +#> [947,] "GEO" "EL12" +#> [948,] "GEO" "EL121" +#> [949,] "GEO" "EL122" +#> [950,] "GEO" "EL123" +#> [951,] "GEO" "EL124" +#> [952,] "GEO" "EL125" +#> [953,] "GEO" "EL126" +#> [954,] "GEO" "EL127" +#> [955,] "GEO" "EL13" +#> [956,] "GEO" "EL131" +#> [957,] "GEO" "EL132" +#> [958,] "GEO" "EL133" +#> [959,] "GEO" "EL134" +#> [960,] "GEO" "EL14" +#> [961,] "GEO" "EL141" +#> [962,] "GEO" "EL142" +#> [963,] "GEO" "EL143" +#> [964,] "GEO" "EL144" +#> [965,] "GEO" "EL_MAK" +#> [966,] "GEO" "EL_TRA" +#> [967,] "GEO" "EL2" +#> [968,] "GEO" "EL21" +#> [969,] "GEO" "EL211" +#> [970,] "GEO" "EL212" +#> [971,] "GEO" "EL213" +#> [972,] "GEO" "EL214" +#> [973,] "GEO" "EL22" +#> [974,] "GEO" "EL221" +#> [975,] "GEO" "EL222" +#> [976,] "GEO" "EL223" +#> [977,] "GEO" "EL224" +#> [978,] "GEO" "EL23" +#> [979,] "GEO" "EL231" +#> [980,] "GEO" "EL232" +#> [981,] "GEO" "EL233" +#> [982,] "GEO" "EL24" +#> [983,] "GEO" "EL241" +#> [984,] "GEO" "EL242" +#> [985,] "GEO" "EL243" +#> [986,] "GEO" "EL244" +#> [987,] "GEO" "EL245" +#> [988,] "GEO" "EL25" +#> [989,] "GEO" "EL251" +#> [990,] "GEO" "EL252" +#> [991,] "GEO" "EL253" +#> [992,] "GEO" "EL254" +#> [993,] "GEO" "EL255" +#> [994,] "GEO" "EL2ATT" +#> [995,] "GEO" "EL2EV" +#> [996,] "GEO" "EL3" +#> [997,] "GEO" "EL30" +#> [998,] "GEO" "EL300" +#> [999,] "GEO" "EL301" +#> [1000,] "GEO" "EL302" +#> [1001,] "GEO" "EL303" +#> [1002,] "GEO" "EL304" +#> [1003,] "GEO" "EL305" +#> [1004,] "GEO" "EL306" +#> [1005,] "GEO" "EL307" +#> [1006,] "GEO" "EL300A" +#> [1007,] "GEO" "EL300B" +#> [1008,] "GEO" "EL300C" +#> [1009,] "GEO" "EL4" +#> [1010,] "GEO" "EL41_42" +#> [1011,] "GEO" "EL41" +#> [1012,] "GEO" "EL411" +#> [1013,] "GEO" "EL412" +#> [1014,] "GEO" "EL413" +#> [1015,] "GEO" "EL42" +#> [1016,] "GEO" "EL421" +#> [1017,] "GEO" "EL422" +#> [1018,] "GEO" "EL43" +#> [1019,] "GEO" "EL431" +#> [1020,] "GEO" "EL432" +#> [1021,] "GEO" "EL433" +#> [1022,] "GEO" "EL434" +#> [1023,] "GEO" "EL5" +#> [1024,] "GEO" "EL51" +#> [1025,] "GEO" "EL511" +#> [1026,] "GEO" "EL512" +#> [1027,] "GEO" "EL513" +#> [1028,] "GEO" "EL514" +#> [1029,] "GEO" "EL515" +#> [1030,] "GEO" "EL52" +#> [1031,] "GEO" "EL521" +#> [1032,] "GEO" "EL522" +#> [1033,] "GEO" "EL523" +#> [1034,] "GEO" "EL524" +#> [1035,] "GEO" "EL525" +#> [1036,] "GEO" "EL526" +#> [1037,] "GEO" "EL527" +#> [1038,] "GEO" "EL53" +#> [1039,] "GEO" "EL531" +#> [1040,] "GEO" "EL532" +#> [1041,] "GEO" "EL533" +#> [1042,] "GEO" "EL54" +#> [1043,] "GEO" "EL541" +#> [1044,] "GEO" "EL542" +#> [1045,] "GEO" "EL543" +#> [1046,] "GEO" "EL6" +#> [1047,] "GEO" "EL61" +#> [1048,] "GEO" "EL611" +#> [1049,] "GEO" "EL612" +#> [1050,] "GEO" "EL613" +#> [1051,] "GEO" "EL62" +#> [1052,] "GEO" "EL621" +#> [1053,] "GEO" "EL622" +#> [1054,] "GEO" "EL623" +#> [1055,] "GEO" "EL624" +#> [1056,] "GEO" "EL63" +#> [1057,] "GEO" "EL631" +#> [1058,] "GEO" "EL632" +#> [1059,] "GEO" "EL633" +#> [1060,] "GEO" "EL64" +#> [1061,] "GEO" "EL641" +#> [1062,] "GEO" "EL642" +#> [1063,] "GEO" "EL643" +#> [1064,] "GEO" "EL644" +#> [1065,] "GEO" "EL645" +#> [1066,] "GEO" "EL65" +#> [1067,] "GEO" "EL651" +#> [1068,] "GEO" "EL652" +#> [1069,] "GEO" "EL653" +#> [1070,] "GEO" "ELS" +#> [1071,] "GEO" "ELSS" +#> [1072,] "GEO" "ELSSS" +#> [1073,] "GEO" "ELZ" +#> [1074,] "GEO" "ELZZ" +#> [1075,] "GEO" "ELZZZ" +#> [1076,] "GEO" "EL_CAP" +#> [1077,] "GEO" "ELX" +#> [1078,] "GEO" "ELXX" +#> [1079,] "GEO" "ELXXX" +#> [1080,] "GEO" "EL_NAL" +#> [1081,] "GEO" "ES" +#> [1082,] "GEO" "ES1" +#> [1083,] "GEO" "ES11" +#> [1084,] "GEO" "ES111" +#> [1085,] "GEO" "ES112" +#> [1086,] "GEO" "ES113" +#> [1087,] "GEO" "ES114" +#> [1088,] "GEO" "ES12" +#> [1089,] "GEO" "ES120" +#> [1090,] "GEO" "ES13" +#> [1091,] "GEO" "ES130" +#> [1092,] "GEO" "ES2" +#> [1093,] "GEO" "ES21" +#> [1094,] "GEO" "ES211" +#> [1095,] "GEO" "ES212_213" +#> [1096,] "GEO" "ES212" +#> [1097,] "GEO" "ES213" +#> [1098,] "GEO" "ES22" +#> [1099,] "GEO" "ES220" +#> [1100,] "GEO" "ES23" +#> [1101,] "GEO" "ES230" +#> [1102,] "GEO" "ES24" +#> [1103,] "GEO" "ES241_242" +#> [1104,] "GEO" "ES241" +#> [1105,] "GEO" "ES242" +#> [1106,] "GEO" "ES243" +#> [1107,] "GEO" "ES3" +#> [1108,] "GEO" "ES30" +#> [1109,] "GEO" "ES300" +#> [1110,] "GEO" "ES4" +#> [1111,] "GEO" "ES41" +#> [1112,] "GEO" "ES411_414-417" +#> [1113,] "GEO" "ES411" +#> [1114,] "GEO" "ES412" +#> [1115,] "GEO" "ES413" +#> [1116,] "GEO" "ES414" +#> [1117,] "GEO" "ES415" +#> [1118,] "GEO" "ES416" +#> [1119,] "GEO" "ES417" +#> [1120,] "GEO" "ES418" +#> [1121,] "GEO" "ES419" +#> [1122,] "GEO" "ES42" +#> [1123,] "GEO" "ES421" +#> [1124,] "GEO" "ES422" +#> [1125,] "GEO" "ES423" +#> [1126,] "GEO" "ES424" +#> [1127,] "GEO" "ES425" +#> [1128,] "GEO" "ES43" +#> [1129,] "GEO" "ES431" +#> [1130,] "GEO" "ES432" +#> [1131,] "GEO" "ES5" +#> [1132,] "GEO" "ES51" +#> [1133,] "GEO" "ES511" +#> [1134,] "GEO" "ES512_513" +#> [1135,] "GEO" "ES512" +#> [1136,] "GEO" "ES513" +#> [1137,] "GEO" "ES514" +#> [1138,] "GEO" "ES52" +#> [1139,] "GEO" "ES521" +#> [1140,] "GEO" "ES522" +#> [1141,] "GEO" "ES523" +#> [1142,] "GEO" "ES53" +#> [1143,] "GEO" "ES530" +#> [1144,] "GEO" "ES531" +#> [1145,] "GEO" "ES532" +#> [1146,] "GEO" "ES533" +#> [1147,] "GEO" "ES6" +#> [1148,] "GEO" "ES61_63_64" +#> [1149,] "GEO" "ES61" +#> [1150,] "GEO" "ES611_614_616_618" +#> [1151,] "GEO" "ES611" +#> [1152,] "GEO" "ES612_630" +#> [1153,] "GEO" "ES612" +#> [1154,] "GEO" "ES613" +#> [1155,] "GEO" "ES614" +#> [1156,] "GEO" "ES615" +#> [1157,] "GEO" "ES616" +#> [1158,] "GEO" "ES617_640" +#> [1159,] "GEO" "ES617" +#> [1160,] "GEO" "ES618" +#> [1161,] "GEO" "ES62" +#> [1162,] "GEO" "ES620" +#> [1163,] "GEO" "ES63" +#> [1164,] "GEO" "ES630" +#> [1165,] "GEO" "ES64" +#> [1166,] "GEO" "ES640" +#> [1167,] "GEO" "ES7" +#> [1168,] "GEO" "ES70" +#> [1169,] "GEO" "ES701" +#> [1170,] "GEO" "ES702" +#> [1171,] "GEO" "ES703" +#> [1172,] "GEO" "ES704" +#> [1173,] "GEO" "ES705" +#> [1174,] "GEO" "ES706" +#> [1175,] "GEO" "ES707" +#> [1176,] "GEO" "ES708" +#> [1177,] "GEO" "ES709" +#> [1178,] "GEO" "ESZ" +#> [1179,] "GEO" "ESZZ" +#> [1180,] "GEO" "ESZZZ" +#> [1181,] "GEO" "ES_CAP" +#> [1182,] "GEO" "ESX" +#> [1183,] "GEO" "ESXX" +#> [1184,] "GEO" "ESXXX" +#> [1185,] "GEO" "ES_NAL" +#> [1186,] "GEO" "FR" +#> [1187,] "GEO" "FX" +#> [1188,] "GEO" "FR1" +#> [1189,] "GEO" "FR10" +#> [1190,] "GEO" "FR101" +#> [1191,] "GEO" "FR102" +#> [1192,] "GEO" "FR103" +#> [1193,] "GEO" "FR104" +#> [1194,] "GEO" "FR105" +#> [1195,] "GEO" "FR106" +#> [1196,] "GEO" "FR107" +#> [1197,] "GEO" "FR108" +#> [1198,] "GEO" "FRB" +#> [1199,] "GEO" "FRB0" +#> [1200,] "GEO" "FRB01" +#> [1201,] "GEO" "FRB02" +#> [1202,] "GEO" "FRB03" +#> [1203,] "GEO" "FRB04" +#> [1204,] "GEO" "FRB05" +#> [1205,] "GEO" "FRB06" +#> [1206,] "GEO" "FRC" +#> [1207,] "GEO" "FRC1" +#> [1208,] "GEO" "FRC11" +#> [1209,] "GEO" "FRC12" +#> [1210,] "GEO" "FRC13" +#> [1211,] "GEO" "FRC14" +#> [1212,] "GEO" "FRC2" +#> [1213,] "GEO" "FRC21" +#> [1214,] "GEO" "FRC22" +#> [1215,] "GEO" "FRC23" +#> [1216,] "GEO" "FRC24" +#> [1217,] "GEO" "FRD" +#> [1218,] "GEO" "FRD1" +#> [1219,] "GEO" "FRD11" +#> [1220,] "GEO" "FRD12" +#> [1221,] "GEO" "FRD13" +#> [1222,] "GEO" "FRD2" +#> [1223,] "GEO" "FRD21" +#> [1224,] "GEO" "FRD22" +#> [1225,] "GEO" "FRE" +#> [1226,] "GEO" "FRE1" +#> [1227,] "GEO" "FRE11" +#> [1228,] "GEO" "FRE12" +#> [1229,] "GEO" "FRE2" +#> [1230,] "GEO" "FRE21" +#> [1231,] "GEO" "FRE22" +#> [1232,] "GEO" "FRE23" +#> [1233,] "GEO" "FRF" +#> [1234,] "GEO" "FRF1" +#> [1235,] "GEO" "FRF11" +#> [1236,] "GEO" "FRF12" +#> [1237,] "GEO" "FRF2" +#> [1238,] "GEO" "FRF21" +#> [1239,] "GEO" "FRF22" +#> [1240,] "GEO" "FRF23" +#> [1241,] "GEO" "FRF24" +#> [1242,] "GEO" "FRF3" +#> [1243,] "GEO" "FRF31" +#> [1244,] "GEO" "FRF32" +#> [1245,] "GEO" "FRF33" +#> [1246,] "GEO" "FRF34" +#> [1247,] "GEO" "FRG" +#> [1248,] "GEO" "FRG0" +#> [1249,] "GEO" "FRG01" +#> [1250,] "GEO" "FRG02" +#> [1251,] "GEO" "FRG03" +#> [1252,] "GEO" "FRG04" +#> [1253,] "GEO" "FRG05" +#> [1254,] "GEO" "FRH" +#> [1255,] "GEO" "FRH0" +#> [1256,] "GEO" "FRH01" +#> [1257,] "GEO" "FRH02" +#> [1258,] "GEO" "FRH03" +#> [1259,] "GEO" "FRH04" +#> [1260,] "GEO" "FRI" +#> [1261,] "GEO" "FRI1" +#> [1262,] "GEO" "FRI11" +#> [1263,] "GEO" "FRI12" +#> [1264,] "GEO" "FRI13" +#> [1265,] "GEO" "FRI14" +#> [1266,] "GEO" "FRI15" +#> [1267,] "GEO" "FRI2" +#> [1268,] "GEO" "FRI21" +#> [1269,] "GEO" "FRI22" +#> [1270,] "GEO" "FRI23" +#> [1271,] "GEO" "FRI3" +#> [1272,] "GEO" "FRI31" +#> [1273,] "GEO" "FRI32" +#> [1274,] "GEO" "FRI33" +#> [1275,] "GEO" "FRI34" +#> [1276,] "GEO" "FRJ" +#> [1277,] "GEO" "FRJ1" +#> [1278,] "GEO" "FRJ11" +#> [1279,] "GEO" "FRJ12" +#> [1280,] "GEO" "FRJ13" +#> [1281,] "GEO" "FRJ14" +#> [1282,] "GEO" "FRJ15" +#> [1283,] "GEO" "FRJ2" +#> [1284,] "GEO" "FRJ21" +#> [1285,] "GEO" "FRJ22" +#> [1286,] "GEO" "FRJ23" +#> [1287,] "GEO" "FRJ24" +#> [1288,] "GEO" "FRJ25" +#> [1289,] "GEO" "FRJ26" +#> [1290,] "GEO" "FRJ27" +#> [1291,] "GEO" "FRJ28" +#> [1292,] "GEO" "FRK" +#> [1293,] "GEO" "FRK1" +#> [1294,] "GEO" "FRK11" +#> [1295,] "GEO" "FRK12" +#> [1296,] "GEO" "FRK13" +#> [1297,] "GEO" "FRK14" +#> [1298,] "GEO" "FRK2" +#> [1299,] "GEO" "FRK21" +#> [1300,] "GEO" "FRK22" +#> [1301,] "GEO" "FRK23" +#> [1302,] "GEO" "FRK24" +#> [1303,] "GEO" "FRK25" +#> [1304,] "GEO" "FRK26" +#> [1305,] "GEO" "FRK27" +#> [1306,] "GEO" "FRK28" +#> [1307,] "GEO" "FRL" +#> [1308,] "GEO" "FRL0" +#> [1309,] "GEO" "FRL01" +#> [1310,] "GEO" "FRL02" +#> [1311,] "GEO" "FRL03" +#> [1312,] "GEO" "FRL04" +#> [1313,] "GEO" "FRL05" +#> [1314,] "GEO" "FRL06" +#> [1315,] "GEO" "FRM" +#> [1316,] "GEO" "FRM0" +#> [1317,] "GEO" "FRM01" +#> [1318,] "GEO" "FRM02" +#> [1319,] "GEO" "FRY" +#> [1320,] "GEO" "FRY1" +#> [1321,] "GEO" "FRY10" +#> [1322,] "GEO" "FRY2" +#> [1323,] "GEO" "FRY20" +#> [1324,] "GEO" "FRY3" +#> [1325,] "GEO" "FRY30" +#> [1326,] "GEO" "FRY4" +#> [1327,] "GEO" "FRY40" +#> [1328,] "GEO" "FRY5" +#> [1329,] "GEO" "FRY50" +#> [1330,] "GEO" "FR2" +#> [1331,] "GEO" "FR21" +#> [1332,] "GEO" "FR211" +#> [1333,] "GEO" "FR212" +#> [1334,] "GEO" "FR213" +#> [1335,] "GEO" "FR214" +#> [1336,] "GEO" "FR22" +#> [1337,] "GEO" "FR221" +#> [1338,] "GEO" "FR222" +#> [1339,] "GEO" "FR223" +#> [1340,] "GEO" "FR23" +#> [1341,] "GEO" "FR231" +#> [1342,] "GEO" "FR232" +#> [1343,] "GEO" "FR24" +#> [1344,] "GEO" "FR241" +#> [1345,] "GEO" "FR242" +#> [1346,] "GEO" "FR243" +#> [1347,] "GEO" "FR244" +#> [1348,] "GEO" "FR245" +#> [1349,] "GEO" "FR246" +#> [1350,] "GEO" "FR25" +#> [1351,] "GEO" "FR251" +#> [1352,] "GEO" "FR252" +#> [1353,] "GEO" "FR253" +#> [1354,] "GEO" "FR26" +#> [1355,] "GEO" "FR261" +#> [1356,] "GEO" "FR262" +#> [1357,] "GEO" "FR263" +#> [1358,] "GEO" "FR264" +#> [1359,] "GEO" "FR3" +#> [1360,] "GEO" "FR30" +#> [1361,] "GEO" "FR301" +#> [1362,] "GEO" "FR302" +#> [1363,] "GEO" "FR4" +#> [1364,] "GEO" "FR41" +#> [1365,] "GEO" "FR411" +#> [1366,] "GEO" "FR412" +#> [1367,] "GEO" "FR413" +#> [1368,] "GEO" "FR414" +#> [1369,] "GEO" "FR42" +#> [1370,] "GEO" "FR421" +#> [1371,] "GEO" "FR422" +#> [1372,] "GEO" "FR43" +#> [1373,] "GEO" "FR431" +#> [1374,] "GEO" "FR432" +#> [1375,] "GEO" "FR433" +#> [1376,] "GEO" "FR434" +#> [1377,] "GEO" "FR5" +#> [1378,] "GEO" "FR51" +#> [1379,] "GEO" "FR51_X_513" +#> [1380,] "GEO" "FR511" +#> [1381,] "GEO" "FR512" +#> [1382,] "GEO" "FR513" +#> [1383,] "GEO" "FR514" +#> [1384,] "GEO" "FR515" +#> [1385,] "GEO" "FR52" +#> [1386,] "GEO" "FR521" +#> [1387,] "GEO" "FR522" +#> [1388,] "GEO" "FR523" +#> [1389,] "GEO" "FR524" +#> [1390,] "GEO" "FR53" +#> [1391,] "GEO" "FR531" +#> [1392,] "GEO" "FR532" +#> [1393,] "GEO" "FR533_534" +#> [1394,] "GEO" "FR533" +#> [1395,] "GEO" "FR534" +#> [1396,] "GEO" "FR6" +#> [1397,] "GEO" "FR61" +#> [1398,] "GEO" "FR61_X_612" +#> [1399,] "GEO" "FR611" +#> [1400,] "GEO" "FR612" +#> [1401,] "GEO" "FR613" +#> [1402,] "GEO" "FR614" +#> [1403,] "GEO" "FR615" +#> [1404,] "GEO" "FR62" +#> [1405,] "GEO" "FR62_X_624" +#> [1406,] "GEO" "FR621" +#> [1407,] "GEO" "FR622" +#> [1408,] "GEO" "FR623" +#> [1409,] "GEO" "FR624" +#> [1410,] "GEO" "FR625" +#> [1411,] "GEO" "FR626" +#> [1412,] "GEO" "FR627" +#> [1413,] "GEO" "FR628" +#> [1414,] "GEO" "FR63" +#> [1415,] "GEO" "FR631_633" +#> [1416,] "GEO" "FR631" +#> [1417,] "GEO" "FR632" +#> [1418,] "GEO" "FR633" +#> [1419,] "GEO" "FR7" +#> [1420,] "GEO" "FR71" +#> [1421,] "GEO" "FR71_X_712" +#> [1422,] "GEO" "FR711" +#> [1423,] "GEO" "FR712" +#> [1424,] "GEO" "FR713" +#> [1425,] "GEO" "FR714" +#> [1426,] "GEO" "FR715" +#> [1427,] "GEO" "FR716" +#> [1428,] "GEO" "FR717" +#> [1429,] "GEO" "FR718" +#> [1430,] "GEO" "FR72" +#> [1431,] "GEO" "FR721" +#> [1432,] "GEO" "FR722" +#> [1433,] "GEO" "FR723" +#> [1434,] "GEO" "FR724" +#> [1435,] "GEO" "FR8" +#> [1436,] "GEO" "FR81" +#> [1437,] "GEO" "FR811" +#> [1438,] "GEO" "FR812" +#> [1439,] "GEO" "FR813" +#> [1440,] "GEO" "FR814" +#> [1441,] "GEO" "FR815" +#> [1442,] "GEO" "FR82" +#> [1443,] "GEO" "FR821-823" +#> [1444,] "GEO" "FR821" +#> [1445,] "GEO" "FR822" +#> [1446,] "GEO" "FR823" +#> [1447,] "GEO" "FR824" +#> [1448,] "GEO" "FR825" +#> [1449,] "GEO" "FR826" +#> [1450,] "GEO" "FR83" +#> [1451,] "GEO" "FR831" +#> [1452,] "GEO" "FR832" +#> [1453,] "GEO" "FRA" +#> [1454,] "GEO" "FRA1" +#> [1455,] "GEO" "FRA10" +#> [1456,] "GEO" "FRA2" +#> [1457,] "GEO" "FRA20" +#> [1458,] "GEO" "FRA3" +#> [1459,] "GEO" "FRA30" +#> [1460,] "GEO" "FRA4" +#> [1461,] "GEO" "FRA40" +#> [1462,] "GEO" "FRA5" +#> [1463,] "GEO" "FRA50" +#> [1464,] "GEO" "FR9" +#> [1465,] "GEO" "FR91" +#> [1466,] "GEO" "FR910" +#> [1467,] "GEO" "FR92" +#> [1468,] "GEO" "FR920" +#> [1469,] "GEO" "FR93" +#> [1470,] "GEO" "FR930" +#> [1471,] "GEO" "FR94" +#> [1472,] "GEO" "FR940" +#> [1473,] "GEO" "YT" +#> [1474,] "GEO" "FRZ" +#> [1475,] "GEO" "FRZZ" +#> [1476,] "GEO" "FRZZZ" +#> [1477,] "GEO" "FR_CAP" +#> [1478,] "GEO" "FRX" +#> [1479,] "GEO" "FRXX" +#> [1480,] "GEO" "FRXXX" +#> [1481,] "GEO" "FR_NAL" +#> [1482,] "GEO" "HR" +#> [1483,] "GEO" "HR0" +#> [1484,] "GEO" "HR02" +#> [1485,] "GEO" "HR021" +#> [1486,] "GEO" "HR022" +#> [1487,] "GEO" "HR023" +#> [1488,] "GEO" "HR024" +#> [1489,] "GEO" "HR025" +#> [1490,] "GEO" "HR026" +#> [1491,] "GEO" "HR027" +#> [1492,] "GEO" "HR028" +#> [1493,] "GEO" "HR03" +#> [1494,] "GEO" "HR031" +#> [1495,] "GEO" "HR032" +#> [1496,] "GEO" "HR033" +#> [1497,] "GEO" "HR034" +#> [1498,] "GEO" "HR035" +#> [1499,] "GEO" "HR036" +#> [1500,] "GEO" "HR037" +#> [1501,] "GEO" "HR04" +#> [1502,] "GEO" "HR041" +#> [1503,] "GEO" "HR042" +#> [1504,] "GEO" "HR043" +#> [1505,] "GEO" "HR044" +#> [1506,] "GEO" "HR045" +#> [1507,] "GEO" "HR046" +#> [1508,] "GEO" "HR047" +#> [1509,] "GEO" "HR048" +#> [1510,] "GEO" "HR049" +#> [1511,] "GEO" "HR04A" +#> [1512,] "GEO" "HR04B" +#> [1513,] "GEO" "HR04C" +#> [1514,] "GEO" "HR04D" +#> [1515,] "GEO" "HR04E" +#> [1516,] "GEO" "HR05" +#> [1517,] "GEO" "HR050" +#> [1518,] "GEO" "HR06" +#> [1519,] "GEO" "HR061" +#> [1520,] "GEO" "HR062" +#> [1521,] "GEO" "HR063" +#> [1522,] "GEO" "HR064" +#> [1523,] "GEO" "HR065" +#> [1524,] "GEO" "HRZ" +#> [1525,] "GEO" "HRZZ" +#> [1526,] "GEO" "HRZZZ" +#> [1527,] "GEO" "HR_CAP" +#> [1528,] "GEO" "HRX" +#> [1529,] "GEO" "HRXX" +#> [1530,] "GEO" "HRXXX" +#> [1531,] "GEO" "HR01" +#> [1532,] "GEO" "HR011" +#> [1533,] "GEO" "HR012" +#> [1534,] "GEO" "HR013" +#> [1535,] "GEO" "HR014" +#> [1536,] "GEO" "HR015" +#> [1537,] "GEO" "HR016" +#> [1538,] "GEO" "IT" +#> [1539,] "GEO" "ITC-E" +#> [1540,] "GEO" "ITC" +#> [1541,] "GEO" "ITC1" +#> [1542,] "GEO" "ITC11" +#> [1543,] "GEO" "ITC12" +#> [1544,] "GEO" "ITC13" +#> [1545,] "GEO" "ITC14" +#> [1546,] "GEO" "ITC15" +#> [1547,] "GEO" "ITC16" +#> [1548,] "GEO" "ITC17" +#> [1549,] "GEO" "ITC18" +#> [1550,] "GEO" "ITC2" +#> [1551,] "GEO" "ITC20" +#> [1552,] "GEO" "ITC3" +#> [1553,] "GEO" "ITC31" +#> [1554,] "GEO" "ITC32" +#> [1555,] "GEO" "ITC33" +#> [1556,] "GEO" "ITC34" +#> [1557,] "GEO" "ITC4" +#> [1558,] "GEO" "ITC41" +#> [1559,] "GEO" "ITC42" +#> [1560,] "GEO" "ITC43" +#> [1561,] "GEO" "ITC44" +#> [1562,] "GEO" "ITC45" +#> [1563,] "GEO" "ITC46" +#> [1564,] "GEO" "ITC47" +#> [1565,] "GEO" "ITC48" +#> [1566,] "GEO" "ITC49" +#> [1567,] "GEO" "ITC4A" +#> [1568,] "GEO" "ITC4B" +#> [1569,] "GEO" "ITC4C" +#> [1570,] "GEO" "ITC4D" +#> [1571,] "GEO" "ITH" +#> [1572,] "GEO" "ITH1" +#> [1573,] "GEO" "ITH10" +#> [1574,] "GEO" "ITH2" +#> [1575,] "GEO" "ITH20" +#> [1576,] "GEO" "ITH3" +#> [1577,] "GEO" "ITH31" +#> [1578,] "GEO" "ITH32" +#> [1579,] "GEO" "ITH33" +#> [1580,] "GEO" "ITH34" +#> [1581,] "GEO" "ITH35" +#> [1582,] "GEO" "ITH36" +#> [1583,] "GEO" "ITH37" +#> [1584,] "GEO" "ITH4" +#> [1585,] "GEO" "ITH41" +#> [1586,] "GEO" "ITH42" +#> [1587,] "GEO" "ITH43" +#> [1588,] "GEO" "ITH44" +#> [1589,] "GEO" "ITH5" +#> [1590,] "GEO" "ITH51" +#> [1591,] "GEO" "ITH52" +#> [1592,] "GEO" "ITH53" +#> [1593,] "GEO" "ITH54" +#> [1594,] "GEO" "ITH55" +#> [1595,] "GEO" "ITH56" +#> [1596,] "GEO" "ITH57" +#> [1597,] "GEO" "ITH58" +#> [1598,] "GEO" "ITH59" +#> [1599,] "GEO" "ITD" +#> [1600,] "GEO" "ITD1_D2" +#> [1601,] "GEO" "ITD1" +#> [1602,] "GEO" "ITD10" +#> [1603,] "GEO" "ITD2" +#> [1604,] "GEO" "ITD20" +#> [1605,] "GEO" "ITD3" +#> [1606,] "GEO" "ITD31" +#> [1607,] "GEO" "ITD32" +#> [1608,] "GEO" "ITD33" +#> [1609,] "GEO" "ITD34" +#> [1610,] "GEO" "ITD35" +#> [1611,] "GEO" "ITD36" +#> [1612,] "GEO" "ITD37" +#> [1613,] "GEO" "ITD4" +#> [1614,] "GEO" "ITD41" +#> [1615,] "GEO" "ITD42" +#> [1616,] "GEO" "ITD43" +#> [1617,] "GEO" "ITD44" +#> [1618,] "GEO" "ITD5" +#> [1619,] "GEO" "ITD51" +#> [1620,] "GEO" "ITD52" +#> [1621,] "GEO" "ITD53" +#> [1622,] "GEO" "ITD54" +#> [1623,] "GEO" "ITD55" +#> [1624,] "GEO" "ITD56" +#> [1625,] "GEO" "ITD57" +#> [1626,] "GEO" "ITD58" +#> [1627,] "GEO" "ITD59" +#> [1628,] "GEO" "ITI" +#> [1629,] "GEO" "ITI1" +#> [1630,] "GEO" "ITI11" +#> [1631,] "GEO" "ITI12" +#> [1632,] "GEO" "ITI13" +#> [1633,] "GEO" "ITI14" +#> [1634,] "GEO" "ITI15" +#> [1635,] "GEO" "ITI16" +#> [1636,] "GEO" "ITI17" +#> [1637,] "GEO" "ITI18" +#> [1638,] "GEO" "ITI19" +#> [1639,] "GEO" "ITI1A" +#> [1640,] "GEO" "ITI2" +#> [1641,] "GEO" "ITI21" +#> [1642,] "GEO" "ITI22" +#> [1643,] "GEO" "ITI3" +#> [1644,] "GEO" "ITI31" +#> [1645,] "GEO" "ITI32" +#> [1646,] "GEO" "ITI33" +#> [1647,] "GEO" "ITI34" +#> [1648,] "GEO" "ITI35" +#> [1649,] "GEO" "ITI4" +#> [1650,] "GEO" "ITI41" +#> [1651,] "GEO" "ITI42" +#> [1652,] "GEO" "ITI43" +#> [1653,] "GEO" "ITI44" +#> [1654,] "GEO" "ITI45" +#> [1655,] "GEO" "ITE" +#> [1656,] "GEO" "ITE1" +#> [1657,] "GEO" "ITE11" +#> [1658,] "GEO" "ITE12" +#> [1659,] "GEO" "ITE13" +#> [1660,] "GEO" "ITE14" +#> [1661,] "GEO" "ITE15" +#> [1662,] "GEO" "ITE16" +#> [1663,] "GEO" "ITE17" +#> [1664,] "GEO" "ITE18" +#> [1665,] "GEO" "ITE19" +#> [1666,] "GEO" "ITE1A" +#> [1667,] "GEO" "ITE2" +#> [1668,] "GEO" "ITE21" +#> [1669,] "GEO" "ITE22" +#> [1670,] "GEO" "ITE3" +#> [1671,] "GEO" "ITE31" +#> [1672,] "GEO" "ITE32" +#> [1673,] "GEO" "ITE33" +#> [1674,] "GEO" "ITE34" +#> [1675,] "GEO" "ITE4" +#> [1676,] "GEO" "ITE41" +#> [1677,] "GEO" "ITE42" +#> [1678,] "GEO" "ITE43" +#> [1679,] "GEO" "ITE44" +#> [1680,] "GEO" "ITE45" +#> [1681,] "GEO" "ITF_G" +#> [1682,] "GEO" "ITF" +#> [1683,] "GEO" "ITF1" +#> [1684,] "GEO" "ITF11" +#> [1685,] "GEO" "ITF12" +#> [1686,] "GEO" "ITF13" +#> [1687,] "GEO" "ITF14" +#> [1688,] "GEO" "ITF2" +#> [1689,] "GEO" "ITF21" +#> [1690,] "GEO" "ITF22" +#> [1691,] "GEO" "ITF3" +#> [1692,] "GEO" "ITF31" +#> [1693,] "GEO" "ITF32" +#> [1694,] "GEO" "ITF33" +#> [1695,] "GEO" "ITF34" +#> [1696,] "GEO" "ITF35" +#> [1697,] "GEO" "ITF4" +#> [1698,] "GEO" "ITF41" +#> [1699,] "GEO" "ITF42" +#> [1700,] "GEO" "ITF43" +#> [1701,] "GEO" "ITF44" +#> [1702,] "GEO" "ITF45" +#> [1703,] "GEO" "ITF46" +#> [1704,] "GEO" "ITF47" +#> [1705,] "GEO" "ITF48" +#> [1706,] "GEO" "ITF5" +#> [1707,] "GEO" "ITF51" +#> [1708,] "GEO" "ITF52" +#> [1709,] "GEO" "ITF6" +#> [1710,] "GEO" "ITF61" +#> [1711,] "GEO" "ITF62" +#> [1712,] "GEO" "ITF63" +#> [1713,] "GEO" "ITF64" +#> [1714,] "GEO" "ITF65" +#> [1715,] "GEO" "ITG" +#> [1716,] "GEO" "ITG1" +#> [1717,] "GEO" "ITG11" +#> [1718,] "GEO" "ITG12" +#> [1719,] "GEO" "ITG13" +#> [1720,] "GEO" "ITG14" +#> [1721,] "GEO" "ITG15" +#> [1722,] "GEO" "ITG16" +#> [1723,] "GEO" "ITG17" +#> [1724,] "GEO" "ITG18" +#> [1725,] "GEO" "ITG19" +#> [1726,] "GEO" "ITG2" +#> [1727,] "GEO" "ITG21" +#> [1728,] "GEO" "ITG22" +#> [1729,] "GEO" "ITG23" +#> [1730,] "GEO" "ITG24" +#> [1731,] "GEO" "ITG25" +#> [1732,] "GEO" "ITG26" +#> [1733,] "GEO" "ITG27" +#> [1734,] "GEO" "ITG28" +#> [1735,] "GEO" "ITG29" +#> [1736,] "GEO" "ITG2A" +#> [1737,] "GEO" "ITG2B" +#> [1738,] "GEO" "ITG2C" +#> [1739,] "GEO" "ITG2D" +#> [1740,] "GEO" "ITG2E" +#> [1741,] "GEO" "ITG2F" +#> [1742,] "GEO" "ITG2G" +#> [1743,] "GEO" "ITG2H" +#> [1744,] "GEO" "ITZ" +#> [1745,] "GEO" "ITZZ" +#> [1746,] "GEO" "ITZZZ" +#> [1747,] "GEO" "IT_CAP" +#> [1748,] "GEO" "IT_DEL" +#> [1749,] "GEO" "ITX" +#> [1750,] "GEO" "ITXX" +#> [1751,] "GEO" "ITXXX" +#> [1752,] "GEO" "IT_NAL" +#> [1753,] "GEO" "CY" +#> [1754,] "GEO" "CY0" +#> [1755,] "GEO" "CY00" +#> [1756,] "GEO" "CY000" +#> [1757,] "GEO" "CYZ" +#> [1758,] "GEO" "CYZZ" +#> [1759,] "GEO" "CYZZZ" +#> [1760,] "GEO" "CY_CAP" +#> [1761,] "GEO" "CYX" +#> [1762,] "GEO" "CYXX" +#> [1763,] "GEO" "CYXXX" +#> [1764,] "GEO" "LV" +#> [1765,] "GEO" "LV0" +#> [1766,] "GEO" "LV00" +#> [1767,] "GEO" "LV001" +#> [1768,] "GEO" "LV002" +#> [1769,] "GEO" "LV003" +#> [1770,] "GEO" "LV004" +#> [1771,] "GEO" "LV005" +#> [1772,] "GEO" "LV006" +#> [1773,] "GEO" "LV007" +#> [1774,] "GEO" "LV008" +#> [1775,] "GEO" "LV009" +#> [1776,] "GEO" "LVZ" +#> [1777,] "GEO" "LVZZ" +#> [1778,] "GEO" "LVZZZ" +#> [1779,] "GEO" "LV_CAP" +#> [1780,] "GEO" "LVX" +#> [1781,] "GEO" "LVXX" +#> [1782,] "GEO" "LVXXX" +#> [1783,] "GEO" "LT" +#> [1784,] "GEO" "LT0" +#> [1785,] "GEO" "LT01" +#> [1786,] "GEO" "LT011" +#> [1787,] "GEO" "LT02" +#> [1788,] "GEO" "LT021" +#> [1789,] "GEO" "LT022" +#> [1790,] "GEO" "LT023" +#> [1791,] "GEO" "LT024" +#> [1792,] "GEO" "LT025" +#> [1793,] "GEO" "LT026" +#> [1794,] "GEO" "LT027" +#> [1795,] "GEO" "LT028" +#> [1796,] "GEO" "LT029" +#> [1797,] "GEO" "LT00" +#> [1798,] "GEO" "LT001" +#> [1799,] "GEO" "LT002" +#> [1800,] "GEO" "LT003" +#> [1801,] "GEO" "LT004" +#> [1802,] "GEO" "LT005" +#> [1803,] "GEO" "LT006" +#> [1804,] "GEO" "LT007" +#> [1805,] "GEO" "LT008" +#> [1806,] "GEO" "LT009" +#> [1807,] "GEO" "LT00A" +#> [1808,] "GEO" "LTZ" +#> [1809,] "GEO" "LTZZ" +#> [1810,] "GEO" "LTZZZ" +#> [1811,] "GEO" "LT_CAP" +#> [1812,] "GEO" "LTX" +#> [1813,] "GEO" "LTXX" +#> [1814,] "GEO" "LTXXX" +#> [1815,] "GEO" "LU" +#> [1816,] "GEO" "LU0" +#> [1817,] "GEO" "LU00" +#> [1818,] "GEO" "LU000" +#> [1819,] "GEO" "LUZ" +#> [1820,] "GEO" "LUZZ" +#> [1821,] "GEO" "LUZZZ" +#> [1822,] "GEO" "LU_CAP" +#> [1823,] "GEO" "LUX" +#> [1824,] "GEO" "LUXX" +#> [1825,] "GEO" "LUXXX" +#> [1826,] "GEO" "HU" +#> [1827,] "GEO" "HU1" +#> [1828,] "GEO" "HU11" +#> [1829,] "GEO" "HU110" +#> [1830,] "GEO" "HU12" +#> [1831,] "GEO" "HU120" +#> [1832,] "GEO" "HU10" +#> [1833,] "GEO" "HU101" +#> [1834,] "GEO" "HU102" +#> [1835,] "GEO" "HU2" +#> [1836,] "GEO" "HU21" +#> [1837,] "GEO" "HU211" +#> [1838,] "GEO" "HU212" +#> [1839,] "GEO" "HU213" +#> [1840,] "GEO" "HU22" +#> [1841,] "GEO" "HU221" +#> [1842,] "GEO" "HU222" +#> [1843,] "GEO" "HU223" +#> [1844,] "GEO" "HU23" +#> [1845,] "GEO" "HU231" +#> [1846,] "GEO" "HU232" +#> [1847,] "GEO" "HU233" +#> [1848,] "GEO" "HU3" +#> [1849,] "GEO" "HU31" +#> [1850,] "GEO" "HU311" +#> [1851,] "GEO" "HU312" +#> [1852,] "GEO" "HU313" +#> [1853,] "GEO" "HU32" +#> [1854,] "GEO" "HU321" +#> [1855,] "GEO" "HU322" +#> [1856,] "GEO" "HU323" +#> [1857,] "GEO" "HU33" +#> [1858,] "GEO" "HU331" +#> [1859,] "GEO" "HU332" +#> [1860,] "GEO" "HU333" +#> [1861,] "GEO" "HUZ" +#> [1862,] "GEO" "HUZZ" +#> [1863,] "GEO" "HUZZZ" +#> [1864,] "GEO" "HU_CAP" +#> [1865,] "GEO" "HUX" +#> [1866,] "GEO" "HUXX" +#> [1867,] "GEO" "HUXXX" +#> [1868,] "GEO" "HU_ALF" +#> [1869,] "GEO" "HU_ESDU" +#> [1870,] "GEO" "MT" +#> [1871,] "GEO" "MT0" +#> [1872,] "GEO" "MT00" +#> [1873,] "GEO" "MT001" +#> [1874,] "GEO" "MT002" +#> [1875,] "GEO" "MTZ" +#> [1876,] "GEO" "MTZZ" +#> [1877,] "GEO" "MTZZZ" +#> [1878,] "GEO" "MT_CAP" +#> [1879,] "GEO" "MTX" +#> [1880,] "GEO" "MTXX" +#> [1881,] "GEO" "MTXXX" +#> [1882,] "GEO" "NL" +#> [1883,] "GEO" "NL1" +#> [1884,] "GEO" "NL11" +#> [1885,] "GEO" "NL111" +#> [1886,] "GEO" "NL112" +#> [1887,] "GEO" "NL113" +#> [1888,] "GEO" "NL12" +#> [1889,] "GEO" "NL121" +#> [1890,] "GEO" "NL122" +#> [1891,] "GEO" "NL123" +#> [1892,] "GEO" "NL124" +#> [1893,] "GEO" "NL125" +#> [1894,] "GEO" "NL126" +#> [1895,] "GEO" "NL13" +#> [1896,] "GEO" "NL131" +#> [1897,] "GEO" "NL132" +#> [1898,] "GEO" "NL133" +#> [1899,] "GEO" "NL2" +#> [1900,] "GEO" "NL21" +#> [1901,] "GEO" "NL211" +#> [1902,] "GEO" "NL212" +#> [1903,] "GEO" "NL213" +#> [1904,] "GEO" "NL22" +#> [1905,] "GEO" "NL221" +#> [1906,] "GEO" "NL222" +#> [1907,] "GEO" "NL223" +#> [1908,] "GEO" "NL224" +#> [1909,] "GEO" "NL225" +#> [1910,] "GEO" "NL226" +#> [1911,] "GEO" "NL23" +#> [1912,] "GEO" "NL230" +#> [1913,] "GEO" "NL3" +#> [1914,] "GEO" "NL31" +#> [1915,] "GEO" "NL310" +#> [1916,] "GEO" "NL32" +#> [1917,] "GEO" "NL321" +#> [1918,] "GEO" "NL322" +#> [1919,] "GEO" "NL323" +#> [1920,] "GEO" "NL324" +#> [1921,] "GEO" "NL325" +#> [1922,] "GEO" "NL326" +#> [1923,] "GEO" "NL327" +#> [1924,] "GEO" "NL328" +#> [1925,] "GEO" "NL329" +#> [1926,] "GEO" "NL33" +#> [1927,] "GEO" "NL331" +#> [1928,] "GEO" "NL332" +#> [1929,] "GEO" "NL333" +#> [1930,] "GEO" "NL334" +#> [1931,] "GEO" "NL335" +#> [1932,] "GEO" "NL336" +#> [1933,] "GEO" "NL337" +#> [1934,] "GEO" "NL338" +#> [1935,] "GEO" "NL339" +#> [1936,] "GEO" "NL33A" +#> [1937,] "GEO" "NL33B" +#> [1938,] "GEO" "NL33C" +#> [1939,] "GEO" "NL34" +#> [1940,] "GEO" "NL341" +#> [1941,] "GEO" "NL342" +#> [1942,] "GEO" "NL4" +#> [1943,] "GEO" "NL41" +#> [1944,] "GEO" "NL411" +#> [1945,] "GEO" "NL412" +#> [1946,] "GEO" "NL413" +#> [1947,] "GEO" "NL414" +#> [1948,] "GEO" "NL42" +#> [1949,] "GEO" "NL421" +#> [1950,] "GEO" "NL422" +#> [1951,] "GEO" "NL423" +#> [1952,] "GEO" "NLZ" +#> [1953,] "GEO" "NLZZ" +#> [1954,] "GEO" "NLZZZ" +#> [1955,] "GEO" "NL_S_W" +#> [1956,] "GEO" "NL_RMD" +#> [1957,] "GEO" "NL_NZKG" +#> [1958,] "GEO" "NL_CAP" +#> [1959,] "GEO" "NLX" +#> [1960,] "GEO" "NLXX" +#> [1961,] "GEO" "NLXXX" +#> [1962,] "GEO" "NL_NAL" +#> [1963,] "GEO" "AT" +#> [1964,] "GEO" "AT1" +#> [1965,] "GEO" "AT11" +#> [1966,] "GEO" "AT111" +#> [1967,] "GEO" "AT112" +#> [1968,] "GEO" "AT113" +#> [1969,] "GEO" "AT12" +#> [1970,] "GEO" "AT121" +#> [1971,] "GEO" "AT122" +#> [1972,] "GEO" "AT123" +#> [1973,] "GEO" "AT124" +#> [1974,] "GEO" "AT125" +#> [1975,] "GEO" "AT126" +#> [1976,] "GEO" "AT127" +#> [1977,] "GEO" "AT13_OTHBL" +#> [1978,] "GEO" "AT13_31_33" +#> [1979,] "GEO" "AT13" +#> [1980,] "GEO" "AT130" +#> [1981,] "GEO" "AT2" +#> [1982,] "GEO" "AT21" +#> [1983,] "GEO" "AT211" +#> [1984,] "GEO" "AT212" +#> [1985,] "GEO" "AT213" +#> [1986,] "GEO" "AT22" +#> [1987,] "GEO" "AT221" +#> [1988,] "GEO" "AT222" +#> [1989,] "GEO" "AT223" +#> [1990,] "GEO" "AT224" +#> [1991,] "GEO" "AT225" +#> [1992,] "GEO" "AT226" +#> [1993,] "GEO" "AT3" +#> [1994,] "GEO" "AT31" +#> [1995,] "GEO" "AT311" +#> [1996,] "GEO" "AT312" +#> [1997,] "GEO" "AT313" +#> [1998,] "GEO" "AT314" +#> [1999,] "GEO" "AT315" +#> [2000,] "GEO" "AT32" +#> [2001,] "GEO" "AT321" +#> [2002,] "GEO" "AT322" +#> [2003,] "GEO" "AT323" +#> [2004,] "GEO" "AT33" +#> [2005,] "GEO" "AT331" +#> [2006,] "GEO" "AT332" +#> [2007,] "GEO" "AT333" +#> [2008,] "GEO" "AT334" +#> [2009,] "GEO" "AT335" +#> [2010,] "GEO" "AT34" +#> [2011,] "GEO" "AT341" +#> [2012,] "GEO" "AT342" +#> [2013,] "GEO" "ATZ" +#> [2014,] "GEO" "ATZZ" +#> [2015,] "GEO" "ATZZZ" +#> [2016,] "GEO" "AT_CAP" +#> [2017,] "GEO" "ATX" +#> [2018,] "GEO" "ATXX" +#> [2019,] "GEO" "ATXXX" +#> [2020,] "GEO" "PL" +#> [2021,] "GEO" "PL1" +#> [2022,] "GEO" "PL11" +#> [2023,] "GEO" "PL111" +#> [2024,] "GEO" "PL112" +#> [2025,] "GEO" "PL113" +#> [2026,] "GEO" "PL114" +#> [2027,] "GEO" "PL115" +#> [2028,] "GEO" "PL116" +#> [2029,] "GEO" "PL117" +#> [2030,] "GEO" "PL12" +#> [2031,] "GEO" "PL121" +#> [2032,] "GEO" "PL122" +#> [2033,] "GEO" "PL124" +#> [2034,] "GEO" "PL126" +#> [2035,] "GEO" "PL127" +#> [2036,] "GEO" "PL128" +#> [2037,] "GEO" "PL129" +#> [2038,] "GEO" "PL12A" +#> [2039,] "GEO" "PL12B" +#> [2040,] "GEO" "PL12C" +#> [2041,] "GEO" "PL12D" +#> [2042,] "GEO" "PL12E" +#> [2043,] "GEO" "PL2" +#> [2044,] "GEO" "PL21" +#> [2045,] "GEO" "PL211" +#> [2046,] "GEO" "PL212" +#> [2047,] "GEO" "PL213" +#> [2048,] "GEO" "PL214" +#> [2049,] "GEO" "PL215" +#> [2050,] "GEO" "PL216" +#> [2051,] "GEO" "PL217" +#> [2052,] "GEO" "PL218" +#> [2053,] "GEO" "PL219" +#> [2054,] "GEO" "PL21A" +#> [2055,] "GEO" "PL22" +#> [2056,] "GEO" "PL224" +#> [2057,] "GEO" "PL225" +#> [2058,] "GEO" "PL226" +#> [2059,] "GEO" "PL227" +#> [2060,] "GEO" "PL228" +#> [2061,] "GEO" "PL229" +#> [2062,] "GEO" "PL22A" +#> [2063,] "GEO" "PL22B" +#> [2064,] "GEO" "PL22C" +#> [2065,] "GEO" "PL3" +#> [2066,] "GEO" "PL31" +#> [2067,] "GEO" "PL311" +#> [2068,] "GEO" "PL312" +#> [2069,] "GEO" "PL313" +#> [2070,] "GEO" "PL314" +#> [2071,] "GEO" "PL315" +#> [2072,] "GEO" "PL32" +#> [2073,] "GEO" "PL321" +#> [2074,] "GEO" "PL322" +#> [2075,] "GEO" "PL323" +#> [2076,] "GEO" "PL324" +#> [2077,] "GEO" "PL325" +#> [2078,] "GEO" "PL326" +#> [2079,] "GEO" "PL33" +#> [2080,] "GEO" "PL330" +#> [2081,] "GEO" "PL331" +#> [2082,] "GEO" "PL332" +#> [2083,] "GEO" "PL34" +#> [2084,] "GEO" "PL341" +#> [2085,] "GEO" "PL342" +#> [2086,] "GEO" "PL343" +#> [2087,] "GEO" "PL344" +#> [2088,] "GEO" "PL345" +#> [2089,] "GEO" "PL4" +#> [2090,] "GEO" "PL41" +#> [2091,] "GEO" "PL411" +#> [2092,] "GEO" "PL412" +#> [2093,] "GEO" "PL413" +#> [2094,] "GEO" "PL414" +#> [2095,] "GEO" "PL415" +#> [2096,] "GEO" "PL416" +#> [2097,] "GEO" "PL417" +#> [2098,] "GEO" "PL418" +#> [2099,] "GEO" "PL42" +#> [2100,] "GEO" "PL421" +#> [2101,] "GEO" "PL422" +#> [2102,] "GEO" "PL423" +#> [2103,] "GEO" "PL424" +#> [2104,] "GEO" "PL425" +#> [2105,] "GEO" "PL426" +#> [2106,] "GEO" "PL427" +#> [2107,] "GEO" "PL428" +#> [2108,] "GEO" "PL43" +#> [2109,] "GEO" "PL431" +#> [2110,] "GEO" "PL432" +#> [2111,] "GEO" "PL5" +#> [2112,] "GEO" "PL51" +#> [2113,] "GEO" "PL511" +#> [2114,] "GEO" "PL512" +#> [2115,] "GEO" "PL513" +#> [2116,] "GEO" "PL514" +#> [2117,] "GEO" "PL515" +#> [2118,] "GEO" "PL516" +#> [2119,] "GEO" "PL517" +#> [2120,] "GEO" "PL518" +#> [2121,] "GEO" "PL52" +#> [2122,] "GEO" "PL520" +#> [2123,] "GEO" "PL521" +#> [2124,] "GEO" "PL522" +#> [2125,] "GEO" "PL523" +#> [2126,] "GEO" "PL524" +#> [2127,] "GEO" "PL6" +#> [2128,] "GEO" "PL61" +#> [2129,] "GEO" "PL611" +#> [2130,] "GEO" "PL612" +#> [2131,] "GEO" "PL613" +#> [2132,] "GEO" "PL614" +#> [2133,] "GEO" "PL615" +#> [2134,] "GEO" "PL616" +#> [2135,] "GEO" "PL617" +#> [2136,] "GEO" "PL618" +#> [2137,] "GEO" "PL619" +#> [2138,] "GEO" "PL62" +#> [2139,] "GEO" "PL621" +#> [2140,] "GEO" "PL622" +#> [2141,] "GEO" "PL623" +#> [2142,] "GEO" "PL63" +#> [2143,] "GEO" "PL631" +#> [2144,] "GEO" "PL632" +#> [2145,] "GEO" "PL633" +#> [2146,] "GEO" "PL634" +#> [2147,] "GEO" "PL635" +#> [2148,] "GEO" "PL636" +#> [2149,] "GEO" "PL637" +#> [2150,] "GEO" "PL638" +#> [2151,] "GEO" "PL7" +#> [2152,] "GEO" "PL71" +#> [2153,] "GEO" "PL711" +#> [2154,] "GEO" "PL712" +#> [2155,] "GEO" "PL713" +#> [2156,] "GEO" "PL714" +#> [2157,] "GEO" "PL715" +#> [2158,] "GEO" "PL72" +#> [2159,] "GEO" "PL721" +#> [2160,] "GEO" "PL722" +#> [2161,] "GEO" "PL8" +#> [2162,] "GEO" "PL81" +#> [2163,] "GEO" "PL811" +#> [2164,] "GEO" "PL812" +#> [2165,] "GEO" "PL814" +#> [2166,] "GEO" "PL815" +#> [2167,] "GEO" "PL82" +#> [2168,] "GEO" "PL821" +#> [2169,] "GEO" "PL822" +#> [2170,] "GEO" "PL823" +#> [2171,] "GEO" "PL824" +#> [2172,] "GEO" "PL84" +#> [2173,] "GEO" "PL841" +#> [2174,] "GEO" "PL842" +#> [2175,] "GEO" "PL843" +#> [2176,] "GEO" "PL9" +#> [2177,] "GEO" "PL91" +#> [2178,] "GEO" "PL911" +#> [2179,] "GEO" "PL912" +#> [2180,] "GEO" "PL913" +#> [2181,] "GEO" "PL92" +#> [2182,] "GEO" "PL921" +#> [2183,] "GEO" "PL922" +#> [2184,] "GEO" "PL923" +#> [2185,] "GEO" "PL924" +#> [2186,] "GEO" "PL925" +#> [2187,] "GEO" "PL926" +#> [2188,] "GEO" "PL01" +#> [2189,] "GEO" "PL02" +#> [2190,] "GEO" "PL03" +#> [2191,] "GEO" "PL04" +#> [2192,] "GEO" "PL05" +#> [2193,] "GEO" "PL06" +#> [2194,] "GEO" "PL07" +#> [2195,] "GEO" "PL08" +#> [2196,] "GEO" "PL09" +#> [2197,] "GEO" "PL0A" +#> [2198,] "GEO" "PL0B" +#> [2199,] "GEO" "PL0C" +#> [2200,] "GEO" "PL0D" +#> [2201,] "GEO" "PL0E" +#> [2202,] "GEO" "PL0F" +#> [2203,] "GEO" "PL0G" +#> [2204,] "GEO" "PLZ" +#> [2205,] "GEO" "PLZZ" +#> [2206,] "GEO" "PLZZZ" +#> [2207,] "GEO" "PL_CAP" +#> [2208,] "GEO" "PLX" +#> [2209,] "GEO" "PLXX" +#> [2210,] "GEO" "PLXXX" +#> [2211,] "GEO" "PT" +#> [2212,] "GEO" "PT1" +#> [2213,] "GEO" "PT11" +#> [2214,] "GEO" "PT111" +#> [2215,] "GEO" "PT112" +#> [2216,] "GEO" "PT113" +#> [2217,] "GEO" "PT114" +#> [2218,] "GEO" "PT115" +#> [2219,] "GEO" "PT116" +#> [2220,] "GEO" "PT117" +#> [2221,] "GEO" "PT118" +#> [2222,] "GEO" "PT119" +#> [2223,] "GEO" "PT11A" +#> [2224,] "GEO" "PT11B" +#> [2225,] "GEO" "PT11C" +#> [2226,] "GEO" "PT11D" +#> [2227,] "GEO" "PT11E" +#> [2228,] "GEO" "PT11EDM" +#> [2229,] "GEO" "PT12" +#> [2230,] "GEO" "PT12BL" +#> [2231,] "GEO" "PT12BI" +#> [2232,] "GEO" "PT13" +#> [2233,] "GEO" "PT13203" +#> [2234,] "GEO" "PT13RO" +#> [2235,] "GEO" "PT14" +#> [2236,] "GEO" "PT15" +#> [2237,] "GEO" "PT150" +#> [2238,] "GEO" "PT16" +#> [2239,] "GEO" "PT161" +#> [2240,] "GEO" "PT162" +#> [2241,] "GEO" "PT163" +#> [2242,] "GEO" "PT164" +#> [2243,] "GEO" "PT165" +#> [2244,] "GEO" "PT166" +#> [2245,] "GEO" "PT167" +#> [2246,] "GEO" "PT168" +#> [2247,] "GEO" "PT169" +#> [2248,] "GEO" "PT16A" +#> [2249,] "GEO" "PT16B" +#> [2250,] "GEO" "PT16C" +#> [2251,] "GEO" "PT16D" +#> [2252,] "GEO" "PT16E" +#> [2253,] "GEO" "PT16F" +#> [2254,] "GEO" "PT16G" +#> [2255,] "GEO" "PT16H" +#> [2256,] "GEO" "PT16I" +#> [2257,] "GEO" "PT16J" +#> [2258,] "GEO" "PT17" +#> [2259,] "GEO" "PT170" +#> [2260,] "GEO" "PT171" +#> [2261,] "GEO" "PT172" +#> [2262,] "GEO" "PT18" +#> [2263,] "GEO" "PT181" +#> [2264,] "GEO" "PT182" +#> [2265,] "GEO" "PT183" +#> [2266,] "GEO" "PT184" +#> [2267,] "GEO" "PT185" +#> [2268,] "GEO" "PT186" +#> [2269,] "GEO" "PT187" +#> [2270,] "GEO" "PT2" +#> [2271,] "GEO" "PT20" +#> [2272,] "GEO" "PT200" +#> [2273,] "GEO" "PT3" +#> [2274,] "GEO" "PT30" +#> [2275,] "GEO" "PT300" +#> [2276,] "GEO" "PTZ" +#> [2277,] "GEO" "PTZZ" +#> [2278,] "GEO" "PTZZZ" +#> [2279,] "GEO" "PT_CAP" +#> [2280,] "GEO" "PTX" +#> [2281,] "GEO" "PTXX" +#> [2282,] "GEO" "PTXXX" +#> [2283,] "GEO" "RO" +#> [2284,] "GEO" "RO1" +#> [2285,] "GEO" "RO11" +#> [2286,] "GEO" "RO111" +#> [2287,] "GEO" "RO112" +#> [2288,] "GEO" "RO113" +#> [2289,] "GEO" "RO114" +#> [2290,] "GEO" "RO115" +#> [2291,] "GEO" "RO116" +#> [2292,] "GEO" "RO12" +#> [2293,] "GEO" "RO121" +#> [2294,] "GEO" "RO122" +#> [2295,] "GEO" "RO123" +#> [2296,] "GEO" "RO124" +#> [2297,] "GEO" "RO125" +#> [2298,] "GEO" "RO126" +#> [2299,] "GEO" "RO2" +#> [2300,] "GEO" "RO21" +#> [2301,] "GEO" "RO211" +#> [2302,] "GEO" "RO212" +#> [2303,] "GEO" "RO213" +#> [2304,] "GEO" "RO214" +#> [2305,] "GEO" "RO215" +#> [2306,] "GEO" "RO216" +#> [2307,] "GEO" "RO22" +#> [2308,] "GEO" "RO221" +#> [2309,] "GEO" "RO222" +#> [2310,] "GEO" "RO223" +#> [2311,] "GEO" "RO224" +#> [2312,] "GEO" "RO225" +#> [2313,] "GEO" "RO226" +#> [2314,] "GEO" "RO3" +#> [2315,] "GEO" "RO31" +#> [2316,] "GEO" "RO311" +#> [2317,] "GEO" "RO312" +#> [2318,] "GEO" "RO313" +#> [2319,] "GEO" "RO314" +#> [2320,] "GEO" "RO315" +#> [2321,] "GEO" "RO316" +#> [2322,] "GEO" "RO317" +#> [2323,] "GEO" "RO32" +#> [2324,] "GEO" "RO321" +#> [2325,] "GEO" "RO322" +#> [2326,] "GEO" "RO4" +#> [2327,] "GEO" "RO41" +#> [2328,] "GEO" "RO411" +#> [2329,] "GEO" "RO412" +#> [2330,] "GEO" "RO413" +#> [2331,] "GEO" "RO414" +#> [2332,] "GEO" "RO415" +#> [2333,] "GEO" "RO42" +#> [2334,] "GEO" "RO421" +#> [2335,] "GEO" "RO422" +#> [2336,] "GEO" "RO423" +#> [2337,] "GEO" "RO424" +#> [2338,] "GEO" "ROZ" +#> [2339,] "GEO" "ROZZ" +#> [2340,] "GEO" "ROZZZ" +#> [2341,] "GEO" "RO0" +#> [2342,] "GEO" "RO01" +#> [2343,] "GEO" "RO011" +#> [2344,] "GEO" "RO012" +#> [2345,] "GEO" "RO013" +#> [2346,] "GEO" "RO014" +#> [2347,] "GEO" "RO015" +#> [2348,] "GEO" "RO016" +#> [2349,] "GEO" "RO02" +#> [2350,] "GEO" "RO021" +#> [2351,] "GEO" "RO022" +#> [2352,] "GEO" "RO023" +#> [2353,] "GEO" "RO024" +#> [2354,] "GEO" "RO025" +#> [2355,] "GEO" "RO026" +#> [2356,] "GEO" "RO03" +#> [2357,] "GEO" "RO031" +#> [2358,] "GEO" "RO032" +#> [2359,] "GEO" "RO033" +#> [2360,] "GEO" "RO034" +#> [2361,] "GEO" "RO035" +#> [2362,] "GEO" "RO036" +#> [2363,] "GEO" "RO037" +#> [2364,] "GEO" "RO04" +#> [2365,] "GEO" "RO041" +#> [2366,] "GEO" "RO042" +#> [2367,] "GEO" "RO043" +#> [2368,] "GEO" "RO044" +#> [2369,] "GEO" "RO045" +#> [2370,] "GEO" "RO05" +#> [2371,] "GEO" "RO051" +#> [2372,] "GEO" "RO052" +#> [2373,] "GEO" "RO053" +#> [2374,] "GEO" "RO054" +#> [2375,] "GEO" "RO06" +#> [2376,] "GEO" "RO061" +#> [2377,] "GEO" "RO062" +#> [2378,] "GEO" "RO063" +#> [2379,] "GEO" "RO064" +#> [2380,] "GEO" "RO065" +#> [2381,] "GEO" "RO066" +#> [2382,] "GEO" "RO07" +#> [2383,] "GEO" "RO071" +#> [2384,] "GEO" "RO072" +#> [2385,] "GEO" "RO073" +#> [2386,] "GEO" "RO074" +#> [2387,] "GEO" "RO075" +#> [2388,] "GEO" "RO076" +#> [2389,] "GEO" "RO08" +#> [2390,] "GEO" "RO081" +#> [2391,] "GEO" "RO082" +#> [2392,] "GEO" "RO_CAP" +#> [2393,] "GEO" "ROX" +#> [2394,] "GEO" "ROXX" +#> [2395,] "GEO" "ROXXX" +#> [2396,] "GEO" "SI" +#> [2397,] "GEO" "SI0" +#> [2398,] "GEO" "SI03" +#> [2399,] "GEO" "SI031" +#> [2400,] "GEO" "SI032" +#> [2401,] "GEO" "SI033" +#> [2402,] "GEO" "SI034" +#> [2403,] "GEO" "SI035" +#> [2404,] "GEO" "SI036" +#> [2405,] "GEO" "SI037" +#> [2406,] "GEO" "SI038" +#> [2407,] "GEO" "SI01" +#> [2408,] "GEO" "SI011" +#> [2409,] "GEO" "SI012" +#> [2410,] "GEO" "SI013" +#> [2411,] "GEO" "SI014" +#> [2412,] "GEO" "SI015" +#> [2413,] "GEO" "SI016" +#> [2414,] "GEO" "SI017" +#> [2415,] "GEO" "SI018" +#> [2416,] "GEO" "SI04" +#> [2417,] "GEO" "SI041" +#> [2418,] "GEO" "SI042" +#> [2419,] "GEO" "SI043" +#> [2420,] "GEO" "SI044" +#> [2421,] "GEO" "SI02" +#> [2422,] "GEO" "SI021" +#> [2423,] "GEO" "SI022" +#> [2424,] "GEO" "SI023" +#> [2425,] "GEO" "SI024" +#> [2426,] "GEO" "SIZ" +#> [2427,] "GEO" "SIZZ" +#> [2428,] "GEO" "SIZZZ" +#> [2429,] "GEO" "SI_CAP" +#> [2430,] "GEO" "SIX" +#> [2431,] "GEO" "SIXX" +#> [2432,] "GEO" "SIXXX" +#> [2433,] "GEO" "SI_POD1" +#> [2434,] "GEO" "SI_POD2" +#> [2435,] "GEO" "SI_POS1" +#> [2436,] "GEO" "SI_POS2" +#> [2437,] "GEO" "SI_POS3" +#> [2438,] "GEO" "SI_PRI1" +#> [2439,] "GEO" "SI_PRI2" +#> [2440,] "GEO" "SI_PRI3" +#> [2441,] "GEO" "SI_PRI4" +#> [2442,] "GEO" "SI_OUTW" +#> [2443,] "GEO" "SK" +#> [2444,] "GEO" "SK0" +#> [2445,] "GEO" "SK01" +#> [2446,] "GEO" "SK010" +#> [2447,] "GEO" "SK02" +#> [2448,] "GEO" "SK021" +#> [2449,] "GEO" "SK022" +#> [2450,] "GEO" "SK023" +#> [2451,] "GEO" "SK03" +#> [2452,] "GEO" "SK031" +#> [2453,] "GEO" "SK032" +#> [2454,] "GEO" "SK04" +#> [2455,] "GEO" "SK041" +#> [2456,] "GEO" "SK042" +#> [2457,] "GEO" "SKZ" +#> [2458,] "GEO" "SKZZ" +#> [2459,] "GEO" "SKZZZ" +#> [2460,] "GEO" "SK_CAP" +#> [2461,] "GEO" "SKX" +#> [2462,] "GEO" "SKXX" +#> [2463,] "GEO" "SKXXX" +#> [2464,] "GEO" "SK_MAL" +#> [2465,] "GEO" "SK_JUZ" +#> [2466,] "GEO" "SK_STR" +#> [2467,] "GEO" "SK_NIT" +#> [2468,] "GEO" "SK_VYC" +#> [2469,] "GEO" "SK_TOK" +#> [2470,] "GEO" "FI" +#> [2471,] "GEO" "FI1" +#> [2472,] "GEO" "FI11_12_2" +#> [2473,] "GEO" "FI11" +#> [2474,] "GEO" "FI12" +#> [2475,] "GEO" "FI13" +#> [2476,] "GEO" "FI131" +#> [2477,] "GEO" "FI132" +#> [2478,] "GEO" "FI133" +#> [2479,] "GEO" "FI134" +#> [2480,] "GEO" "FI14" +#> [2481,] "GEO" "FI15" +#> [2482,] "GEO" "FI16" +#> [2483,] "GEO" "FI18_20" +#> [2484,] "GEO" "FI18" +#> [2485,] "GEO" "FI181_182" +#> [2486,] "GEO" "FI181" +#> [2487,] "GEO" "FI182" +#> [2488,] "GEO" "FI183" +#> [2489,] "GEO" "FI184" +#> [2490,] "GEO" "FI185" +#> [2491,] "GEO" "FI186" +#> [2492,] "GEO" "FI187" +#> [2493,] "GEO" "FI19_20" +#> [2494,] "GEO" "FI19" +#> [2495,] "GEO" "FI191" +#> [2496,] "GEO" "FI192" +#> [2497,] "GEO" "FI193" +#> [2498,] "GEO" "FI194" +#> [2499,] "GEO" "FI195" +#> [2500,] "GEO" "FI196" +#> [2501,] "GEO" "FI197" +#> [2502,] "GEO" "FI1A" +#> [2503,] "GEO" "FI1A1" +#> [2504,] "GEO" "FI1A2" +#> [2505,] "GEO" "FI1A3" +#> [2506,] "GEO" "FI1B" +#> [2507,] "GEO" "FI1B1" +#> [2508,] "GEO" "FI1C" +#> [2509,] "GEO" "FI1C1" +#> [2510,] "GEO" "FI1C2" +#> [2511,] "GEO" "FI1C3" +#> [2512,] "GEO" "FI1C4" +#> [2513,] "GEO" "FI1C5" +#> [2514,] "GEO" "FI1D" +#> [2515,] "GEO" "FI1D1" +#> [2516,] "GEO" "FI1D2" +#> [2517,] "GEO" "FI1D3" +#> [2518,] "GEO" "FI1D4" +#> [2519,] "GEO" "FI1D5" +#> [2520,] "GEO" "FI1D6" +#> [2521,] "GEO" "FI1D7" +#> [2522,] "GEO" "FI1D8" +#> [2523,] "GEO" "FI1D9" +#> [2524,] "GEO" "FI2" +#> [2525,] "GEO" "FI20" +#> [2526,] "GEO" "FI200" +#> [2527,] "GEO" "FIZ" +#> [2528,] "GEO" "FIZZ" +#> [2529,] "GEO" "FIZZZ" +#> [2530,] "GEO" "FI_CAP" +#> [2531,] "GEO" "FIX" +#> [2532,] "GEO" "FIXX" +#> [2533,] "GEO" "FIXXX" +#> [2534,] "GEO" "FI_NAL" +#> [2535,] "GEO" "SE" +#> [2536,] "GEO" "SE1" +#> [2537,] "GEO" "SE11" +#> [2538,] "GEO" "SE110" +#> [2539,] "GEO" "SE12" +#> [2540,] "GEO" "SE121" +#> [2541,] "GEO" "SE122" +#> [2542,] "GEO" "SE123" +#> [2543,] "GEO" "SE124" +#> [2544,] "GEO" "SE125" +#> [2545,] "GEO" "SE2" +#> [2546,] "GEO" "SE21" +#> [2547,] "GEO" "SE211" +#> [2548,] "GEO" "SE212" +#> [2549,] "GEO" "SE213" +#> [2550,] "GEO" "SE214" +#> [2551,] "GEO" "SE22" +#> [2552,] "GEO" "SE221" +#> [2553,] "GEO" "SE224" +#> [2554,] "GEO" "SE23" +#> [2555,] "GEO" "SE231" +#> [2556,] "GEO" "SE232" +#> [2557,] "GEO" "SE3" +#> [2558,] "GEO" "SE31" +#> [2559,] "GEO" "SE311" +#> [2560,] "GEO" "SE312" +#> [2561,] "GEO" "SE313" +#> [2562,] "GEO" "SE32" +#> [2563,] "GEO" "SE321" +#> [2564,] "GEO" "SE322" +#> [2565,] "GEO" "SE33" +#> [2566,] "GEO" "SE331" +#> [2567,] "GEO" "SE332" +#> [2568,] "GEO" "SEZ" +#> [2569,] "GEO" "SEZZ" +#> [2570,] "GEO" "SEZZZ" +#> [2571,] "GEO" "SE021" +#> [2572,] "GEO" "SE025" +#> [2573,] "GEO" "SE03" +#> [2574,] "GEO" "SE05" +#> [2575,] "GEO" "SE_CAP" +#> [2576,] "GEO" "SEX" +#> [2577,] "GEO" "SEXX" +#> [2578,] "GEO" "SEXXX" +#> [2579,] "GEO" "BLEU" +#> [2580,] "GEO" "BNL" +#> [2581,] "GEO" "BAL" +#> [2582,] "GEO" "CHUNNEL" +#> [2583,] "GEO" "EU_NEU" +#> [2584,] "GEO" "EU27_2020_NEU27_2020" +#> [2585,] "GEO" "EU28_NEU28" +#> [2586,] "GEO" "EU27_2020_NEA19" +#> [2587,] "GEO" "EU28_NEA19" +#> [2588,] "GEO" "NMS_NEA19" +#> [2589,] "GEO" "EU27_2020_NEA18" +#> [2590,] "GEO" "EU28_NEA18" +#> [2591,] "GEO" "EU27_2020_NEA17" +#> [2592,] "GEO" "EU28_NEA17" +#> [2593,] "GEO" "EU_OTH" +#> [2594,] "GEO" "EU27_2020_OTH" +#> [2595,] "GEO" "EU25_OTH" +#> [2596,] "GEO" "EU15_OTH" +#> [2597,] "GEO" "INT_EU" +#> [2598,] "GEO" "INT_EU27_2020" +#> [2599,] "GEO" "INT_EU28" +#> [2600,] "GEO" "INT_EU27_2007" +#> [2601,] "GEO" "INT_EU25" +#> [2602,] "GEO" "INT_EU15" +#> [2603,] "GEO" "INT_NMS10" +#> [2604,] "GEO" "INT_NMS12" +#> [2605,] "GEO" "INT_EA" +#> [2606,] "GEO" "INT_EU_NAL" +#> [2607,] "GEO" "INT_EU28_NAL" +#> [2608,] "GEO" "INT_EU25_NAL" +#> [2609,] "GEO" "INT_EU15_NAL" +#> [2610,] "GEO" "INT_EA_NAL" +#> [2611,] "GEO" "EU27_2020_EFTA_FOR" +#> [2612,] "GEO" "EU28_EFTA_FOR" +#> [2613,] "GEO" "EU_FOR" +#> [2614,] "GEO" "EU27_2020_FOR" +#> [2615,] "GEO" "EU28_FOR" +#> [2616,] "GEO" "EU27_2007_FOR" +#> [2617,] "GEO" "EU25_FOR" +#> [2618,] "GEO" "EU15_FOR" +#> [2619,] "GEO" "EU12_FOR" +#> [2620,] "GEO" "EEA" +#> [2621,] "GEO" "EEA30_2020" +#> [2622,] "GEO" "EEA31" +#> [2623,] "GEO" "EEA30_2007" +#> [2624,] "GEO" "EEA28" +#> [2625,] "GEO" "EEA18" +#> [2626,] "GEO" "EEA_X_LI" +#> [2627,] "GEO" "EEA_NEU" +#> [2628,] "GEO" "EEA18_OTH" +#> [2629,] "GEO" "EFTA" +#> [2630,] "GEO" "IS" +#> [2631,] "GEO" "IS0" +#> [2632,] "GEO" "IS00" +#> [2633,] "GEO" "IS001" +#> [2634,] "GEO" "IS002" +#> [2635,] "GEO" "ISZ" +#> [2636,] "GEO" "ISZZ" +#> [2637,] "GEO" "ISZZZ" +#> [2638,] "GEO" "IS_CAP" +#> [2639,] "GEO" "ISX" +#> [2640,] "GEO" "ISXX" +#> [2641,] "GEO" "ISXXX" +#> [2642,] "GEO" "CH_LI" +#> [2643,] "GEO" "LI" +#> [2644,] "GEO" "LI0" +#> [2645,] "GEO" "LI00" +#> [2646,] "GEO" "LI000" +#> [2647,] "GEO" "LIZ" +#> [2648,] "GEO" "LIZZ" +#> [2649,] "GEO" "LIZZZ" +#> [2650,] "GEO" "LI_CAP" +#> [2651,] "GEO" "LIX" +#> [2652,] "GEO" "LIXX" +#> [2653,] "GEO" "LIXXX" +#> [2654,] "GEO" "NO" +#> [2655,] "GEO" "NO0" +#> [2656,] "GEO" "NO01_02_031-033" +#> [2657,] "GEO" "NO01" +#> [2658,] "GEO" "NO011" +#> [2659,] "GEO" "NO012" +#> [2660,] "GEO" "NO02" +#> [2661,] "GEO" "NO020" +#> [2662,] "GEO" "NO021" +#> [2663,] "GEO" "NO022" +#> [2664,] "GEO" "NO03" +#> [2665,] "GEO" "NO031" +#> [2666,] "GEO" "NO032" +#> [2667,] "GEO" "NO033" +#> [2668,] "GEO" "NO034_041_042" +#> [2669,] "GEO" "NO034" +#> [2670,] "GEO" "NO04" +#> [2671,] "GEO" "NO041" +#> [2672,] "GEO" "NO042" +#> [2673,] "GEO" "NO043" +#> [2674,] "GEO" "NO05" +#> [2675,] "GEO" "NO051" +#> [2676,] "GEO" "NO052" +#> [2677,] "GEO" "NO053" +#> [2678,] "GEO" "NO06" +#> [2679,] "GEO" "NO060" +#> [2680,] "GEO" "NO061" +#> [2681,] "GEO" "NO062" +#> [2682,] "GEO" "NO07" +#> [2683,] "GEO" "NO071" +#> [2684,] "GEO" "NO072" +#> [2685,] "GEO" "NO073" +#> [2686,] "GEO" "NO074" +#> [2687,] "GEO" "NO08" +#> [2688,] "GEO" "NO081" +#> [2689,] "GEO" "NO082" +#> [2690,] "GEO" "NO09" +#> [2691,] "GEO" "NO091" +#> [2692,] "GEO" "NO092" +#> [2693,] "GEO" "NO0A" +#> [2694,] "GEO" "NO0A1" +#> [2695,] "GEO" "NO0A2" +#> [2696,] "GEO" "NO0A3" +#> [2697,] "GEO" "NO0B" +#> [2698,] "GEO" "NO0B1" +#> [2699,] "GEO" "NO0B2" +#> [2700,] "GEO" "NOZ" +#> [2701,] "GEO" "NOZZ" +#> [2702,] "GEO" "NOZZZ" +#> [2703,] "GEO" "NO_CAP" +#> [2704,] "GEO" "NOX" +#> [2705,] "GEO" "NOXX" +#> [2706,] "GEO" "NOXXX" +#> [2707,] "GEO" "CH" +#> [2708,] "GEO" "CH0" +#> [2709,] "GEO" "CH01" +#> [2710,] "GEO" "CH011" +#> [2711,] "GEO" "CH012" +#> [2712,] "GEO" "CH013" +#> [2713,] "GEO" "CH02" +#> [2714,] "GEO" "CH021" +#> [2715,] "GEO" "CH022" +#> [2716,] "GEO" "CH023" +#> [2717,] "GEO" "CH024" +#> [2718,] "GEO" "CH025" +#> [2719,] "GEO" "CH03" +#> [2720,] "GEO" "CH031" +#> [2721,] "GEO" "CH032" +#> [2722,] "GEO" "CH033" +#> [2723,] "GEO" "CH04" +#> [2724,] "GEO" "CH040" +#> [2725,] "GEO" "CH05" +#> [2726,] "GEO" "CH051" +#> [2727,] "GEO" "CH052" +#> [2728,] "GEO" "CH053" +#> [2729,] "GEO" "CH054" +#> [2730,] "GEO" "CH055" +#> [2731,] "GEO" "CH056" +#> [2732,] "GEO" "CH057" +#> [2733,] "GEO" "CH06" +#> [2734,] "GEO" "CH061" +#> [2735,] "GEO" "CH062" +#> [2736,] "GEO" "CH063" +#> [2737,] "GEO" "CH064" +#> [2738,] "GEO" "CH065" +#> [2739,] "GEO" "CH066" +#> [2740,] "GEO" "CH07" +#> [2741,] "GEO" "CH070" +#> [2742,] "GEO" "CHZ" +#> [2743,] "GEO" "CHZZ" +#> [2744,] "GEO" "CHZZZ" +#> [2745,] "GEO" "CH_CAP" +#> [2746,] "GEO" "CH_DEL" +#> [2747,] "GEO" "CHX" +#> [2748,] "GEO" "CHXX" +#> [2749,] "GEO" "CHXXX" +#> [2750,] "GEO" "EFTA_FOR" +#> [2751,] "GEO" "EFTA_OTH" +#> [2752,] "GEO" "UK" +#> [2753,] "GEO" "UKC-M" +#> [2754,] "GEO" "UKC-L" +#> [2755,] "GEO" "UKC" +#> [2756,] "GEO" "UKC1" +#> [2757,] "GEO" "UKC11" +#> [2758,] "GEO" "UKC12" +#> [2759,] "GEO" "UKC13" +#> [2760,] "GEO" "UKC14" +#> [2761,] "GEO" "UKC2" +#> [2762,] "GEO" "UKC21" +#> [2763,] "GEO" "UKC22" +#> [2764,] "GEO" "UKC23" +#> [2765,] "GEO" "UKD" +#> [2766,] "GEO" "UKD1" +#> [2767,] "GEO" "UKD11" +#> [2768,] "GEO" "UKD12" +#> [2769,] "GEO" "UKD2" +#> [2770,] "GEO" "UKD21" +#> [2771,] "GEO" "UKD22" +#> [2772,] "GEO" "UKD3-D5" +#> [2773,] "GEO" "UKD3" +#> [2774,] "GEO" "UKD31" +#> [2775,] "GEO" "UKD32" +#> [2776,] "GEO" "UKD33" +#> [2777,] "GEO" "UKD34" +#> [2778,] "GEO" "UKD35" +#> [2779,] "GEO" "UKD36" +#> [2780,] "GEO" "UKD37" +#> [2781,] "GEO" "UKD4" +#> [2782,] "GEO" "UKD41" +#> [2783,] "GEO" "UKD42" +#> [2784,] "GEO" "UKD43" +#> [2785,] "GEO" "UKD44" +#> [2786,] "GEO" "UKD45" +#> [2787,] "GEO" "UKD46" +#> [2788,] "GEO" "UKD47" +#> [2789,] "GEO" "UKD5" +#> [2790,] "GEO" "UKD51" +#> [2791,] "GEO" "UKD52" +#> [2792,] "GEO" "UKD53" +#> [2793,] "GEO" "UKD54" +#> [2794,] "GEO" "UKD6" +#> [2795,] "GEO" "UKD61" +#> [2796,] "GEO" "UKD62" +#> [2797,] "GEO" "UKD63" +#> [2798,] "GEO" "UKD7" +#> [2799,] "GEO" "UKD71" +#> [2800,] "GEO" "UKD72" +#> [2801,] "GEO" "UKD73" +#> [2802,] "GEO" "UKD74" +#> [2803,] "GEO" "UKE" +#> [2804,] "GEO" "UKE1" +#> [2805,] "GEO" "UKE11" +#> [2806,] "GEO" "UKE12" +#> [2807,] "GEO" "UKE13" +#> [2808,] "GEO" "UKE2" +#> [2809,] "GEO" "UKE21" +#> [2810,] "GEO" "UKE22" +#> [2811,] "GEO" "UKE3_E4" +#> [2812,] "GEO" "UKE3" +#> [2813,] "GEO" "UKE31" +#> [2814,] "GEO" "UKE32" +#> [2815,] "GEO" "UKE4" +#> [2816,] "GEO" "UKE41" +#> [2817,] "GEO" "UKE42" +#> [2818,] "GEO" "UKE43" +#> [2819,] "GEO" "UKE44" +#> [2820,] "GEO" "UKE45" +#> [2821,] "GEO" "UKF" +#> [2822,] "GEO" "UKF1" +#> [2823,] "GEO" "UKF11" +#> [2824,] "GEO" "UKF12" +#> [2825,] "GEO" "UKF13" +#> [2826,] "GEO" "UKF14" +#> [2827,] "GEO" "UKF15" +#> [2828,] "GEO" "UKF16" +#> [2829,] "GEO" "UKF2" +#> [2830,] "GEO" "UKF21" +#> [2831,] "GEO" "UKF22" +#> [2832,] "GEO" "UKF23" +#> [2833,] "GEO" "UKF24" +#> [2834,] "GEO" "UKF25" +#> [2835,] "GEO" "UKF3" +#> [2836,] "GEO" "UKF30" +#> [2837,] "GEO" "UKG" +#> [2838,] "GEO" "UKG1_G3" +#> [2839,] "GEO" "UKG1" +#> [2840,] "GEO" "UKG11" +#> [2841,] "GEO" "UKG12" +#> [2842,] "GEO" "UKG13" +#> [2843,] "GEO" "UKG2" +#> [2844,] "GEO" "UKG21" +#> [2845,] "GEO" "UKG22" +#> [2846,] "GEO" "UKG23" +#> [2847,] "GEO" "UKG24" +#> [2848,] "GEO" "UKG3" +#> [2849,] "GEO" "UKG31" +#> [2850,] "GEO" "UKG32" +#> [2851,] "GEO" "UKG33" +#> [2852,] "GEO" "UKG34" +#> [2853,] "GEO" "UKG35" +#> [2854,] "GEO" "UKG36" +#> [2855,] "GEO" "UKG37" +#> [2856,] "GEO" "UKG38" +#> [2857,] "GEO" "UKG39" +#> [2858,] "GEO" "UKH" +#> [2859,] "GEO" "UKH1" +#> [2860,] "GEO" "UKH11" +#> [2861,] "GEO" "UKH12" +#> [2862,] "GEO" "UKH13" +#> [2863,] "GEO" "UKH14" +#> [2864,] "GEO" "UKH15" +#> [2865,] "GEO" "UKH16" +#> [2866,] "GEO" "UKH17" +#> [2867,] "GEO" "UKH2" +#> [2868,] "GEO" "UKH21" +#> [2869,] "GEO" "UKH22" +#> [2870,] "GEO" "UKH23" +#> [2871,] "GEO" "UKH24" +#> [2872,] "GEO" "UKH25" +#> [2873,] "GEO" "UKH3" +#> [2874,] "GEO" "UKH31" +#> [2875,] "GEO" "UKH32" +#> [2876,] "GEO" "UKH33" +#> [2877,] "GEO" "UKH34" +#> [2878,] "GEO" "UKH35" +#> [2879,] "GEO" "UKH36" +#> [2880,] "GEO" "UKH37" +#> [2881,] "GEO" "UKI_J" +#> [2882,] "GEO" "UKI_J1" +#> [2883,] "GEO" "UKI" +#> [2884,] "GEO" "UKI1" +#> [2885,] "GEO" "UKI11" +#> [2886,] "GEO" "UKI12" +#> [2887,] "GEO" "UKI2" +#> [2888,] "GEO" "UKI21" +#> [2889,] "GEO" "UKI22" +#> [2890,] "GEO" "UKI23" +#> [2891,] "GEO" "UKI3" +#> [2892,] "GEO" "UKI31" +#> [2893,] "GEO" "UKI32" +#> [2894,] "GEO" "UKI33" +#> [2895,] "GEO" "UKI34" +#> [2896,] "GEO" "UKI4" +#> [2897,] "GEO" "UKI41" +#> [2898,] "GEO" "UKI42" +#> [2899,] "GEO" "UKI43" +#> [2900,] "GEO" "UKI44" +#> [2901,] "GEO" "UKI45" +#> [2902,] "GEO" "UKI5" +#> [2903,] "GEO" "UKI51" +#> [2904,] "GEO" "UKI52" +#> [2905,] "GEO" "UKI53" +#> [2906,] "GEO" "UKI54" +#> [2907,] "GEO" "UKI6" +#> [2908,] "GEO" "UKI61" +#> [2909,] "GEO" "UKI62" +#> [2910,] "GEO" "UKI63" +#> [2911,] "GEO" "UKI7" +#> [2912,] "GEO" "UKI71" +#> [2913,] "GEO" "UKI72" +#> [2914,] "GEO" "UKI73" +#> [2915,] "GEO" "UKI74" +#> [2916,] "GEO" "UKI75" +#> [2917,] "GEO" "UKJ" +#> [2918,] "GEO" "UKJ1" +#> [2919,] "GEO" "UKJ11" +#> [2920,] "GEO" "UKJ12" +#> [2921,] "GEO" "UKJ13" +#> [2922,] "GEO" "UKJ14" +#> [2923,] "GEO" "UKJ2" +#> [2924,] "GEO" "UKJ21" +#> [2925,] "GEO" "UKJ22" +#> [2926,] "GEO" "UKJ23" +#> [2927,] "GEO" "UKJ24" +#> [2928,] "GEO" "UKJ25" +#> [2929,] "GEO" "UKJ26" +#> [2930,] "GEO" "UKJ27" +#> [2931,] "GEO" "UKJ28" +#> [2932,] "GEO" "UKJ3" +#> [2933,] "GEO" "UKJ31" +#> [2934,] "GEO" "UKJ32" +#> [2935,] "GEO" "UKJ33" +#> [2936,] "GEO" "UKJ34" +#> [2937,] "GEO" "UKJ35" +#> [2938,] "GEO" "UKJ36" +#> [2939,] "GEO" "UKJ37" +#> [2940,] "GEO" "UKJ4" +#> [2941,] "GEO" "UKJ41" +#> [2942,] "GEO" "UKJ42" +#> [2943,] "GEO" "UKJ43" +#> [2944,] "GEO" "UKJ44" +#> [2945,] "GEO" "UKJ45" +#> [2946,] "GEO" "UKJ46" +#> [2947,] "GEO" "UKK" +#> [2948,] "GEO" "UKK1" +#> [2949,] "GEO" "UKK11" +#> [2950,] "GEO" "UKK12" +#> [2951,] "GEO" "UKK13" +#> [2952,] "GEO" "UKK14" +#> [2953,] "GEO" "UKK15" +#> [2954,] "GEO" "UKK2" +#> [2955,] "GEO" "UKK21" +#> [2956,] "GEO" "UKK22" +#> [2957,] "GEO" "UKK23" +#> [2958,] "GEO" "UKK24" +#> [2959,] "GEO" "UKK25" +#> [2960,] "GEO" "UKK3" +#> [2961,] "GEO" "UKK30" +#> [2962,] "GEO" "UKK4" +#> [2963,] "GEO" "UKK41" +#> [2964,] "GEO" "UKK42" +#> [2965,] "GEO" "UKK43" +#> [2966,] "GEO" "UKL" +#> [2967,] "GEO" "UKL1" +#> [2968,] "GEO" "UKL11" +#> [2969,] "GEO" "UKL12" +#> [2970,] "GEO" "UKL13" +#> [2971,] "GEO" "UKL14" +#> [2972,] "GEO" "UKL15" +#> [2973,] "GEO" "UKL16" +#> [2974,] "GEO" "UKL17" +#> [2975,] "GEO" "UKL18" +#> [2976,] "GEO" "UKL2" +#> [2977,] "GEO" "UKL21" +#> [2978,] "GEO" "UKL22" +#> [2979,] "GEO" "UKL23" +#> [2980,] "GEO" "UKL24" +#> [2981,] "GEO" "UKM" +#> [2982,] "GEO" "UKM1" +#> [2983,] "GEO" "UKM10" +#> [2984,] "GEO" "UKM2" +#> [2985,] "GEO" "UKM21" +#> [2986,] "GEO" "UKM22" +#> [2987,] "GEO" "UKM23" +#> [2988,] "GEO" "UKM24" +#> [2989,] "GEO" "UKM25" +#> [2990,] "GEO" "UKM26" +#> [2991,] "GEO" "UKM27" +#> [2992,] "GEO" "UKM28" +#> [2993,] "GEO" "UKM3" +#> [2994,] "GEO" "UKM31" +#> [2995,] "GEO" "UKM32" +#> [2996,] "GEO" "UKM33" +#> [2997,] "GEO" "UKM34" +#> [2998,] "GEO" "UKA2211" +#> [2999,] "GEO" "UKM35" +#> [3000,] "GEO" "UKM36" +#> [3001,] "GEO" "UKM37" +#> [3002,] "GEO" "UKM38" +#> [3003,] "GEO" "UKM4" +#> [3004,] "GEO" "UKM42" +#> [3005,] "GEO" "UKM5" +#> [3006,] "GEO" "UKM50" +#> [3007,] "GEO" "UKM6" +#> [3008,] "GEO" "UKM61" +#> [3009,] "GEO" "UKM62" +#> [3010,] "GEO" "UKM63" +#> [3011,] "GEO" "UKM64" +#> [3012,] "GEO" "UKM65" +#> [3013,] "GEO" "UKM66" +#> [3014,] "GEO" "UKM7" +#> [3015,] "GEO" "UKM71" +#> [3016,] "GEO" "UKM72" +#> [3017,] "GEO" "UKM73" +#> [3018,] "GEO" "UKM75" +#> [3019,] "GEO" "UKM76" +#> [3020,] "GEO" "UKM77" +#> [3021,] "GEO" "UKM78" +#> [3022,] "GEO" "UKM8" +#> [3023,] "GEO" "UKM81" +#> [3024,] "GEO" "UKM82" +#> [3025,] "GEO" "UKM83" +#> [3026,] "GEO" "UKM84" +#> [3027,] "GEO" "UKM9" +#> [3028,] "GEO" "UKM91" +#> [3029,] "GEO" "UKM92" +#> [3030,] "GEO" "UKM93" +#> [3031,] "GEO" "UKM94" +#> [3032,] "GEO" "UKM95" +#> [3033,] "GEO" "UKN" +#> [3034,] "GEO" "UKN0" +#> [3035,] "GEO" "UKN01" +#> [3036,] "GEO" "UKN02" +#> [3037,] "GEO" "UKN03" +#> [3038,] "GEO" "UKN04" +#> [3039,] "GEO" "UKN05" +#> [3040,] "GEO" "UKN06" +#> [3041,] "GEO" "UKN07" +#> [3042,] "GEO" "UKN08" +#> [3043,] "GEO" "UKN09" +#> [3044,] "GEO" "UKN0A" +#> [3045,] "GEO" "UKN0B" +#> [3046,] "GEO" "UKN0C" +#> [3047,] "GEO" "UKN0D" +#> [3048,] "GEO" "UKN0E" +#> [3049,] "GEO" "UKN0F" +#> [3050,] "GEO" "UKN0G" +#> [3051,] "GEO" "UKN10" +#> [3052,] "GEO" "UKN11" +#> [3053,] "GEO" "UKN12" +#> [3054,] "GEO" "UKN13" +#> [3055,] "GEO" "UKN14" +#> [3056,] "GEO" "UKN15" +#> [3057,] "GEO" "UKN16" +#> [3058,] "GEO" "UKZ" +#> [3059,] "GEO" "UKZZ" +#> [3060,] "GEO" "UKZZZ" +#> [3061,] "GEO" "UK1" +#> [3062,] "GEO" "UK11" +#> [3063,] "GEO" "UK111" +#> [3064,] "GEO" "UK112" +#> [3065,] "GEO" "UK12" +#> [3066,] "GEO" "UK13" +#> [3067,] "GEO" "UK131" +#> [3068,] "GEO" "UK132" +#> [3069,] "GEO" "UK2" +#> [3070,] "GEO" "UK21" +#> [3071,] "GEO" "UK22" +#> [3072,] "GEO" "UK23" +#> [3073,] "GEO" "UK24" +#> [3074,] "GEO" "UK3" +#> [3075,] "GEO" "UK31" +#> [3076,] "GEO" "UK311" +#> [3077,] "GEO" "UK312" +#> [3078,] "GEO" "UK32" +#> [3079,] "GEO" "UK321" +#> [3080,] "GEO" "UK322" +#> [3081,] "GEO" "UK33" +#> [3082,] "GEO" "UK4" +#> [3083,] "GEO" "UK401" +#> [3084,] "GEO" "UK402" +#> [3085,] "GEO" "UK403" +#> [3086,] "GEO" "UK5" +#> [3087,] "GEO" "UK51" +#> [3088,] "GEO" "UK511" +#> [3089,] "GEO" "UK512" +#> [3090,] "GEO" "UK52" +#> [3091,] "GEO" "UK521" +#> [3092,] "GEO" "UK522" +#> [3093,] "GEO" "UK523" +#> [3094,] "GEO" "UK53" +#> [3095,] "GEO" "UK531" +#> [3096,] "GEO" "UK532" +#> [3097,] "GEO" "UK533" +#> [3098,] "GEO" "UK54" +#> [3099,] "GEO" "UK55" +#> [3100,] "GEO" "UK56" +#> [3101,] "GEO" "UK561" +#> [3102,] "GEO" "UK562" +#> [3103,] "GEO" "UK57" +#> [3104,] "GEO" "UK6" +#> [3105,] "GEO" "UK61" +#> [3106,] "GEO" "UK611" +#> [3107,] "GEO" "UK612" +#> [3108,] "GEO" "UK613" +#> [3109,] "GEO" "UK62" +#> [3110,] "GEO" "UK621" +#> [3111,] "GEO" "UK622" +#> [3112,] "GEO" "UK63" +#> [3113,] "GEO" "UK631" +#> [3114,] "GEO" "UK632" +#> [3115,] "GEO" "UK7" +#> [3116,] "GEO" "UK71" +#> [3117,] "GEO" "UK711" +#> [3118,] "GEO" "UK712" +#> [3119,] "GEO" "UK72" +#> [3120,] "GEO" "UK721" +#> [3121,] "GEO" "UK722" +#> [3122,] "GEO" "UK73" +#> [3123,] "GEO" "UK8" +#> [3124,] "GEO" "UK81" +#> [3125,] "GEO" "UK82" +#> [3126,] "GEO" "UK83" +#> [3127,] "GEO" "UK84" +#> [3128,] "GEO" "UK9" +#> [3129,] "GEO" "UK91" +#> [3130,] "GEO" "UK911" +#> [3131,] "GEO" "UK912" +#> [3132,] "GEO" "UK913" +#> [3133,] "GEO" "UK914" +#> [3134,] "GEO" "UK92" +#> [3135,] "GEO" "UK921" +#> [3136,] "GEO" "UK922" +#> [3137,] "GEO" "UK923" +#> [3138,] "GEO" "UK924" +#> [3139,] "GEO" "UKA" +#> [3140,] "GEO" "UKA1" +#> [3141,] "GEO" "UKA11" +#> [3142,] "GEO" "UKA12" +#> [3143,] "GEO" "UKA13" +#> [3144,] "GEO" "UKA14" +#> [3145,] "GEO" "UKA15" +#> [3146,] "GEO" "UKA2" +#> [3147,] "GEO" "UKA21" +#> [3148,] "GEO" "UKA22" +#> [3149,] "GEO" "UKA3" +#> [3150,] "GEO" "UKA31" +#> [3151,] "GEO" "UKA32" +#> [3152,] "GEO" "UKA4" +#> [3153,] "GEO" "UKB" +#> [3154,] "GEO" "UK_CAP" +#> [3155,] "GEO" "UK_DEL" +#> [3156,] "GEO" "UKX" +#> [3157,] "GEO" "UKXX" +#> [3158,] "GEO" "UKXXX" +#> [3159,] "GEO" "UK_NAL" +#> [3160,] "GEO" "UK_OCT" +#> [3161,] "GEO" "CPC1" +#> [3162,] "GEO" "CC_V" +#> [3163,] "GEO" "CC5_15" +#> [3164,] "GEO" "CC5_15_FOR" +#> [3165,] "GEO" "CC6_14" +#> [3166,] "GEO" "CC5_13" +#> [3167,] "GEO" "CC5_13_FOR_X_IS" +#> [3168,] "GEO" "CC6_12" +#> [3169,] "GEO" "CC5_10" +#> [3170,] "GEO" "CC4_10" +#> [3171,] "GEO" "CC3_07" +#> [3172,] "GEO" "CC5_06" +#> [3173,] "GEO" "CC4_05" +#> [3174,] "GEO" "ME" +#> [3175,] "GEO" "ME0" +#> [3176,] "GEO" "ME00" +#> [3177,] "GEO" "ME000" +#> [3178,] "GEO" "MEZ" +#> [3179,] "GEO" "MEZZ" +#> [3180,] "GEO" "MEZZZ" +#> [3181,] "GEO" "ME_CAP" +#> [3182,] "GEO" "MEX" +#> [3183,] "GEO" "MEXX" +#> [3184,] "GEO" "MEXXX" +#> [3185,] "GEO" "MK" +#> [3186,] "GEO" "MK0" +#> [3187,] "GEO" "MK00" +#> [3188,] "GEO" "MK001" +#> [3189,] "GEO" "MK002" +#> [3190,] "GEO" "MK003" +#> [3191,] "GEO" "MK004" +#> [3192,] "GEO" "MK005" +#> [3193,] "GEO" "MK006" +#> [3194,] "GEO" "MK007" +#> [3195,] "GEO" "MK008" +#> [3196,] "GEO" "MKZ" +#> [3197,] "GEO" "MKZZ" +#> [3198,] "GEO" "MKZZZ" +#> [3199,] "GEO" "MK_CAP" +#> [3200,] "GEO" "MKX" +#> [3201,] "GEO" "MKXX" +#> [3202,] "GEO" "MKXXX" +#> [3203,] "GEO" "AL" +#> [3204,] "GEO" "AL0" +#> [3205,] "GEO" "AL01" +#> [3206,] "GEO" "AL011" +#> [3207,] "GEO" "AL012" +#> [3208,] "GEO" "AL013" +#> [3209,] "GEO" "AL014" +#> [3210,] "GEO" "AL015" +#> [3211,] "GEO" "AL02" +#> [3212,] "GEO" "AL021" +#> [3213,] "GEO" "AL022" +#> [3214,] "GEO" "AL03" +#> [3215,] "GEO" "AL031" +#> [3216,] "GEO" "AL032" +#> [3217,] "GEO" "AL033" +#> [3218,] "GEO" "AL034" +#> [3219,] "GEO" "AL035" +#> [3220,] "GEO" "ALZ" +#> [3221,] "GEO" "ALZZ" +#> [3222,] "GEO" "ALZZZ" +#> [3223,] "GEO" "AL_CAP" +#> [3224,] "GEO" "ALX" +#> [3225,] "GEO" "ALXX" +#> [3226,] "GEO" "ALXXX" +#> [3227,] "GEO" "RS" +#> [3228,] "GEO" "RS1" +#> [3229,] "GEO" "RS11" +#> [3230,] "GEO" "RS110" +#> [3231,] "GEO" "RS12" +#> [3232,] "GEO" "RS121" +#> [3233,] "GEO" "RS122" +#> [3234,] "GEO" "RS123" +#> [3235,] "GEO" "RS124" +#> [3236,] "GEO" "RS125" +#> [3237,] "GEO" "RS126" +#> [3238,] "GEO" "RS127" +#> [3239,] "GEO" "RS2" +#> [3240,] "GEO" "RS21" +#> [3241,] "GEO" "RS211" +#> [3242,] "GEO" "RS212" +#> [3243,] "GEO" "RS213" +#> [3244,] "GEO" "RS214" +#> [3245,] "GEO" "RS215" +#> [3246,] "GEO" "RS216" +#> [3247,] "GEO" "RS217" +#> [3248,] "GEO" "RS218" +#> [3249,] "GEO" "RS22" +#> [3250,] "GEO" "RS221" +#> [3251,] "GEO" "RS222" +#> [3252,] "GEO" "RS223" +#> [3253,] "GEO" "RS224" +#> [3254,] "GEO" "RS225" +#> [3255,] "GEO" "RS226" +#> [3256,] "GEO" "RS227" +#> [3257,] "GEO" "RS228" +#> [3258,] "GEO" "RS229" +#> [3259,] "GEO" "RSZ" +#> [3260,] "GEO" "RSZZ" +#> [3261,] "GEO" "RSZZZ" +#> [3262,] "GEO" "RS_CAP" +#> [3263,] "GEO" "RSX" +#> [3264,] "GEO" "RSXX" +#> [3265,] "GEO" "RSXXX" +#> [3266,] "GEO" "TR" +#> [3267,] "GEO" "TR1" +#> [3268,] "GEO" "TR10" +#> [3269,] "GEO" "TR100" +#> [3270,] "GEO" "TR2" +#> [3271,] "GEO" "TR21" +#> [3272,] "GEO" "TR211" +#> [3273,] "GEO" "TR212" +#> [3274,] "GEO" "TR213" +#> [3275,] "GEO" "TR22" +#> [3276,] "GEO" "TR221" +#> [3277,] "GEO" "TR222" +#> [3278,] "GEO" "TR3" +#> [3279,] "GEO" "TR31" +#> [3280,] "GEO" "TR310" +#> [3281,] "GEO" "TR32" +#> [3282,] "GEO" "TR321" +#> [3283,] "GEO" "TR322" +#> [3284,] "GEO" "TR323" +#> [3285,] "GEO" "TR33" +#> [3286,] "GEO" "TR331" +#> [3287,] "GEO" "TR332" +#> [3288,] "GEO" "TR333" +#> [3289,] "GEO" "TR334" +#> [3290,] "GEO" "TR4" +#> [3291,] "GEO" "TR41" +#> [3292,] "GEO" "TR411" +#> [3293,] "GEO" "TR412" +#> [3294,] "GEO" "TR413" +#> [3295,] "GEO" "TR42" +#> [3296,] "GEO" "TR421" +#> [3297,] "GEO" "TR422" +#> [3298,] "GEO" "TR423" +#> [3299,] "GEO" "TR424" +#> [3300,] "GEO" "TR425" +#> [3301,] "GEO" "TR5" +#> [3302,] "GEO" "TR51" +#> [3303,] "GEO" "TR510" +#> [3304,] "GEO" "TR52" +#> [3305,] "GEO" "TR521" +#> [3306,] "GEO" "TR522" +#> [3307,] "GEO" "TR6" +#> [3308,] "GEO" "TR61" +#> [3309,] "GEO" "TR611" +#> [3310,] "GEO" "TR612" +#> [3311,] "GEO" "TR613" +#> [3312,] "GEO" "TR62" +#> [3313,] "GEO" "TR621" +#> [3314,] "GEO" "TR622" +#> [3315,] "GEO" "TR63" +#> [3316,] "GEO" "TR631" +#> [3317,] "GEO" "TR632" +#> [3318,] "GEO" "TR633" +#> [3319,] "GEO" "TR7" +#> [3320,] "GEO" "TR71" +#> [3321,] "GEO" "TR711" +#> [3322,] "GEO" "TR712" +#> [3323,] "GEO" "TR713" +#> [3324,] "GEO" "TR714" +#> [3325,] "GEO" "TR715" +#> [3326,] "GEO" "TR72" +#> [3327,] "GEO" "TR721" +#> [3328,] "GEO" "TR722" +#> [3329,] "GEO" "TR723" +#> [3330,] "GEO" "TR8" +#> [3331,] "GEO" "TR81" +#> [3332,] "GEO" "TR811" +#> [3333,] "GEO" "TR812" +#> [3334,] "GEO" "TR813" +#> [3335,] "GEO" "TR82" +#> [3336,] "GEO" "TR821" +#> [3337,] "GEO" "TR822" +#> [3338,] "GEO" "TR823" +#> [3339,] "GEO" "TR83" +#> [3340,] "GEO" "TR831" +#> [3341,] "GEO" "TR832" +#> [3342,] "GEO" "TR833" +#> [3343,] "GEO" "TR834" +#> [3344,] "GEO" "TR9" +#> [3345,] "GEO" "TR90" +#> [3346,] "GEO" "TR901" +#> [3347,] "GEO" "TR902" +#> [3348,] "GEO" "TR903" +#> [3349,] "GEO" "TR904" +#> [3350,] "GEO" "TR905" +#> [3351,] "GEO" "TR906" +#> [3352,] "GEO" "TRA" +#> [3353,] "GEO" "TRA1" +#> [3354,] "GEO" "TRA11" +#> [3355,] "GEO" "TRA12" +#> [3356,] "GEO" "TRA13" +#> [3357,] "GEO" "TRA2" +#> [3358,] "GEO" "TRA21" +#> [3359,] "GEO" "TRA22" +#> [3360,] "GEO" "TRA23" +#> [3361,] "GEO" "TRA24" +#> [3362,] "GEO" "TRB" +#> [3363,] "GEO" "TRB1" +#> [3364,] "GEO" "TRB11" +#> [3365,] "GEO" "TRB12" +#> [3366,] "GEO" "TRB13" +#> [3367,] "GEO" "TRB14" +#> [3368,] "GEO" "TRB2" +#> [3369,] "GEO" "TRB21" +#> [3370,] "GEO" "TRB22" +#> [3371,] "GEO" "TRB23" +#> [3372,] "GEO" "TRB24" +#> [3373,] "GEO" "TRC" +#> [3374,] "GEO" "TRC1" +#> [3375,] "GEO" "TRC11" +#> [3376,] "GEO" "TRC12" +#> [3377,] "GEO" "TRC13" +#> [3378,] "GEO" "TRC2" +#> [3379,] "GEO" "TRC21" +#> [3380,] "GEO" "TRC22" +#> [3381,] "GEO" "TRC3" +#> [3382,] "GEO" "TRC31" +#> [3383,] "GEO" "TRC32" +#> [3384,] "GEO" "TRC33" +#> [3385,] "GEO" "TRC34" +#> [3386,] "GEO" "TRZ" +#> [3387,] "GEO" "TRZZ" +#> [3388,] "GEO" "TRZZZ" +#> [3389,] "GEO" "TR_CAP" +#> [3390,] "GEO" "TRX" +#> [3391,] "GEO" "TRXX" +#> [3392,] "GEO" "TRXXX" +#> [3393,] "GEO" "EUR_C_E" +#> [3394,] "GEO" "EUR_C_E_OTH" +#> [3395,] "GEO" "WBC" +#> [3396,] "GEO" "CEEC" +#> [3397,] "GEO" "AD" +#> [3398,] "GEO" "BY" +#> [3399,] "GEO" "BY_CAP" +#> [3400,] "GEO" "BA" +#> [3401,] "GEO" "BA_CAP" +#> [3402,] "GEO" "BA_DEL" +#> [3403,] "GEO" "GG_JE" +#> [3404,] "GEO" "GG" +#> [3405,] "GEO" "JE" +#> [3406,] "GEO" "FO" +#> [3407,] "GEO" "GI" +#> [3408,] "GEO" "VA" +#> [3409,] "GEO" "IM" +#> [3410,] "GEO" "XK" +#> [3411,] "GEO" "XK_CAP" +#> [3412,] "GEO" "MD" +#> [3413,] "GEO" "MD_CAP" +#> [3414,] "GEO" "MC" +#> [3415,] "GEO" "RU" +#> [3416,] "GEO" "RU_CAP" +#> [3417,] "GEO" "SM" +#> [3418,] "GEO" "SJ" +#> [3419,] "GEO" "UA" +#> [3420,] "GEO" "UA_CAP" +#> [3421,] "GEO" "NCL" +#> [3422,] "GEO" "CZ_SK" +#> [3423,] "GEO" "RS_ME" +#> [3424,] "GEO" "EX_YU" +#> [3425,] "GEO" "EX_YU_OTH" +#> [3426,] "GEO" "EX_SU" +#> [3427,] "GEO" "EX_SU_EUR" +#> [3428,] "GEO" "EX_SU_OTH" +#> [3429,] "GEO" "NCL_OTH" +#> [3430,] "GEO" "CIS" +#> [3431,] "GEO" "EXT" +#> [3432,] "GEO" "HDC_EXT" +#> [3433,] "GEO" "MDC_EXT" +#> [3434,] "GEO" "LDC_EXT" +#> [3435,] "GEO" "EXT_EU" +#> [3436,] "GEO" "EXT_EU27_2020" +#> [3437,] "GEO" "EXT_EU28" +#> [3438,] "GEO" "EXT_EU27_2007" +#> [3439,] "GEO" "EXT_EU25" +#> [3440,] "GEO" "EXT_EU15" +#> [3441,] "GEO" "EXT_EU12" +#> [3442,] "GEO" "EXT_EA" +#> [3443,] "GEO" "EXT_EA19" +#> [3444,] "GEO" "EXT_EA18" +#> [3445,] "GEO" "EXT_EA17" +#> [3446,] "GEO" "EXT_EA16" +#> [3447,] "GEO" "EXT_EA15" +#> [3448,] "GEO" "EXT_EA13" +#> [3449,] "GEO" "EXT_EA12" +#> [3450,] "GEO" "EXT_EA11" +#> [3451,] "GEO" "EXT_EU_NAL" +#> [3452,] "GEO" "EXT_EU27_2020_NAL" +#> [3453,] "GEO" "EXT_EU28_NAL" +#> [3454,] "GEO" "EXT_EU27_2007_NAL" +#> [3455,] "GEO" "EXT_EU25_NAL" +#> [3456,] "GEO" "EXT_EA_NAL" +#> [3457,] "GEO" "EXT_FOR_HDI" +#> [3458,] "GEO" "EXT_FOR_HDI_VH" +#> [3459,] "GEO" "EXT_FOR_HDI_H" +#> [3460,] "GEO" "EXT_FOR_HDI_M" +#> [3461,] "GEO" "EXT_FOR_HDI_L" +#> [3462,] "GEO" "NEU" +#> [3463,] "GEO" "NEU_HDI_VH" +#> [3464,] "GEO" "NEU_HDI_H" +#> [3465,] "GEO" "NEU_HDI_M" +#> [3466,] "GEO" "NEU_HDI_L" +#> [3467,] "GEO" "NEU_NHDI" +#> [3468,] "GEO" "NEU27_2020_NEFTA" +#> [3469,] "GEO" "NEU28_NEFTA" +#> [3470,] "GEO" "NEU27_2020" +#> [3471,] "GEO" "NEU28" +#> [3472,] "GEO" "NEU_FOR" +#> [3473,] "GEO" "NEU27_2020_FOR" +#> [3474,] "GEO" "NEU28_FOR" +#> [3475,] "GEO" "NEU27_2007_FOR" +#> [3476,] "GEO" "NEU27_2007_FOR_STLS" +#> [3477,] "GEO" "NEU15_FOR" +#> [3478,] "GEO" "EUR_NEU" +#> [3479,] "GEO" "EUR_NEU27_2020_NEFTA" +#> [3480,] "GEO" "EUR_NEU27_2020" +#> [3481,] "GEO" "EUR_NEU28" +#> [3482,] "GEO" "EUR_NEU27_2007" +#> [3483,] "GEO" "EUR_NEU25" +#> [3484,] "GEO" "EUR_NEU15" +#> [3485,] "GEO" "EUROTH" +#> [3486,] "GEO" "EUR_OTH" +#> [3487,] "GEO" "EUR_NSP" +#> [3488,] "GEO" "AFR" +#> [3489,] "GEO" "AFR_C_S" +#> [3490,] "GEO" "AFR_C" +#> [3491,] "GEO" "AO" +#> [3492,] "GEO" "AO_CAP" +#> [3493,] "GEO" "CM" +#> [3494,] "GEO" "CM_CAP" +#> [3495,] "GEO" "CF" +#> [3496,] "GEO" "CF_CAP" +#> [3497,] "GEO" "TD" +#> [3498,] "GEO" "TD_CAP" +#> [3499,] "GEO" "CG" +#> [3500,] "GEO" "CG_CAP" +#> [3501,] "GEO" "CD" +#> [3502,] "GEO" "CD_CAP" +#> [3503,] "GEO" "GQ" +#> [3504,] "GEO" "GQ_CAP" +#> [3505,] "GEO" "GA" +#> [3506,] "GEO" "GA_CAP" +#> [3507,] "GEO" "ST" +#> [3508,] "GEO" "ST_CAP" +#> [3509,] "GEO" "AFR_E" +#> [3510,] "GEO" "BI" +#> [3511,] "GEO" "BI_CAP" +#> [3512,] "GEO" "KM" +#> [3513,] "GEO" "KM_CAP" +#> [3514,] "GEO" "DJ" +#> [3515,] "GEO" "DJ_CAP" +#> [3516,] "GEO" "ER" +#> [3517,] "GEO" "ER_CAP" +#> [3518,] "GEO" "ET" +#> [3519,] "GEO" "ET_CAP" +#> [3520,] "GEO" "KE" +#> [3521,] "GEO" "KE_CAP" +#> [3522,] "GEO" "MG" +#> [3523,] "GEO" "MG_CAP" +#> [3524,] "GEO" "MW" +#> [3525,] "GEO" "MW_CAP" +#> [3526,] "GEO" "MU" +#> [3527,] "GEO" "MU_CAP" +#> [3528,] "GEO" "MZ" +#> [3529,] "GEO" "MZ_CAP" +#> [3530,] "GEO" "RW" +#> [3531,] "GEO" "RW_CAP" +#> [3532,] "GEO" "SC" +#> [3533,] "GEO" "SO" +#> [3534,] "GEO" "SO_CAP" +#> [3535,] "GEO" "UG" +#> [3536,] "GEO" "UG_CAP" +#> [3537,] "GEO" "TZ" +#> [3538,] "GEO" "TZ_CAP" +#> [3539,] "GEO" "ZM" +#> [3540,] "GEO" "ZM_CAP" +#> [3541,] "GEO" "ZW" +#> [3542,] "GEO" "ZW_CAP" +#> [3543,] "GEO" "AFR_N" +#> [3544,] "GEO" "DZ" +#> [3545,] "GEO" "DZ_CAP" +#> [3546,] "GEO" "EG" +#> [3547,] "GEO" "EG_CAP" +#> [3548,] "GEO" "LY" +#> [3549,] "GEO" "LY_CAP" +#> [3550,] "GEO" "MA" +#> [3551,] "GEO" "MA_CAP" +#> [3552,] "GEO" "SS" +#> [3553,] "GEO" "SS_CAP" +#> [3554,] "GEO" "SD" +#> [3555,] "GEO" "SD_CAP" +#> [3556,] "GEO" "TN" +#> [3557,] "GEO" "TN_CAP" +#> [3558,] "GEO" "EH" +#> [3559,] "GEO" "AFR_S" +#> [3560,] "GEO" "BW" +#> [3561,] "GEO" "BW_CAP" +#> [3562,] "GEO" "LS" +#> [3563,] "GEO" "LS_CAP" +#> [3564,] "GEO" "NA" +#> [3565,] "GEO" "NA_CAP" +#> [3566,] "GEO" "ZA" +#> [3567,] "GEO" "ZA_CAP" +#> [3568,] "GEO" "SZ" +#> [3569,] "GEO" "SZ_CAP" +#> [3570,] "GEO" "AFR_W" +#> [3571,] "GEO" "BJ" +#> [3572,] "GEO" "BJ_DEL" +#> [3573,] "GEO" "BF" +#> [3574,] "GEO" "BF_CAP" +#> [3575,] "GEO" "CV" +#> [3576,] "GEO" "CV_CAP" +#> [3577,] "GEO" "CI" +#> [3578,] "GEO" "CI_DEL" +#> [3579,] "GEO" "GM" +#> [3580,] "GEO" "GM_CAP" +#> [3581,] "GEO" "GH" +#> [3582,] "GEO" "GH_CAP" +#> [3583,] "GEO" "GN" +#> [3584,] "GEO" "GN_CAP" +#> [3585,] "GEO" "GW" +#> [3586,] "GEO" "GW_CAP" +#> [3587,] "GEO" "LR" +#> [3588,] "GEO" "LR_CAP" +#> [3589,] "GEO" "ML" +#> [3590,] "GEO" "ML_CAP" +#> [3591,] "GEO" "MR" +#> [3592,] "GEO" "MR_CAP" +#> [3593,] "GEO" "NE" +#> [3594,] "GEO" "NE_CAP" +#> [3595,] "GEO" "NG" +#> [3596,] "GEO" "NG_CAP" +#> [3597,] "GEO" "NG_DEL" +#> [3598,] "GEO" "SH" +#> [3599,] "GEO" "SN" +#> [3600,] "GEO" "SN_CAP" +#> [3601,] "GEO" "SL" +#> [3602,] "GEO" "SL_CAP" +#> [3603,] "GEO" "TG" +#> [3604,] "GEO" "TG_CAP" +#> [3605,] "GEO" "AFR_OTH" +#> [3606,] "GEO" "AFR_NSP" +#> [3607,] "GEO" "AME" +#> [3608,] "GEO" "AME_N" +#> [3609,] "GEO" "BM" +#> [3610,] "GEO" "CA_US" +#> [3611,] "GEO" "CA" +#> [3612,] "GEO" "CA_CAP" +#> [3613,] "GEO" "GL" +#> [3614,] "GEO" "GL_CAP" +#> [3615,] "GEO" "PM" +#> [3616,] "GEO" "US" +#> [3617,] "GEO" "US_CAP" +#> [3618,] "GEO" "US_DEL" +#> [3619,] "GEO" "AME_N_OTH" +#> [3620,] "GEO" "AME_N_NSP" +#> [3621,] "GEO" "AME_X_N" +#> [3622,] "GEO" "AME_C_CRB" +#> [3623,] "GEO" "CRB" +#> [3624,] "GEO" "AI" +#> [3625,] "GEO" "AG" +#> [3626,] "GEO" "AW" +#> [3627,] "GEO" "BS" +#> [3628,] "GEO" "BB" +#> [3629,] "GEO" "BB_CAP" +#> [3630,] "GEO" "BQ" +#> [3631,] "GEO" "VG" +#> [3632,] "GEO" "KY" +#> [3633,] "GEO" "CU" +#> [3634,] "GEO" "CU_CAP" +#> [3635,] "GEO" "CW" +#> [3636,] "GEO" "DM" +#> [3637,] "GEO" "DO" +#> [3638,] "GEO" "DO_CAP" +#> [3639,] "GEO" "GD" +#> [3640,] "GEO" "HT" +#> [3641,] "GEO" "HT_CAP" +#> [3642,] "GEO" "JM" +#> [3643,] "GEO" "JM_CAP" +#> [3644,] "GEO" "MS" +#> [3645,] "GEO" "AN" +#> [3646,] "GEO" "PR" +#> [3647,] "GEO" "BL" +#> [3648,] "GEO" "KN" +#> [3649,] "GEO" "LC" +#> [3650,] "GEO" "MF" +#> [3651,] "GEO" "VC" +#> [3652,] "GEO" "SX" +#> [3653,] "GEO" "TT" +#> [3654,] "GEO" "TT_CAP" +#> [3655,] "GEO" "TC" +#> [3656,] "GEO" "VI" +#> [3657,] "GEO" "CRB_OTH" +#> [3658,] "GEO" "AME_C_S" +#> [3659,] "GEO" "AME_LAT" +#> [3660,] "GEO" "AME_C" +#> [3661,] "GEO" "BZ" +#> [3662,] "GEO" "BZ_DEL" +#> [3663,] "GEO" "CP" +#> [3664,] "GEO" "CR" +#> [3665,] "GEO" "CR_CAP" +#> [3666,] "GEO" "SV" +#> [3667,] "GEO" "SV_CAP" +#> [3668,] "GEO" "GT" +#> [3669,] "GEO" "GT_CAP" +#> [3670,] "GEO" "HN" +#> [3671,] "GEO" "HN_CAP" +#> [3672,] "GEO" "MX" +#> [3673,] "GEO" "MX_CAP" +#> [3674,] "GEO" "NI" +#> [3675,] "GEO" "NI_CAP" +#> [3676,] "GEO" "PA" +#> [3677,] "GEO" "PA_CAP" +#> [3678,] "GEO" "AME_C_OTH" +#> [3679,] "GEO" "AME_S" +#> [3680,] "GEO" "AR" +#> [3681,] "GEO" "AR_CAP" +#> [3682,] "GEO" "BO" +#> [3683,] "GEO" "BO_CAP" +#> [3684,] "GEO" "BR" +#> [3685,] "GEO" "BR_CAP" +#> [3686,] "GEO" "CL" +#> [3687,] "GEO" "CL_CAP" +#> [3688,] "GEO" "CO" +#> [3689,] "GEO" "CO_CAP" +#> [3690,] "GEO" "EC" +#> [3691,] "GEO" "EC_CAP" +#> [3692,] "GEO" "FK" +#> [3693,] "GEO" "GY" +#> [3694,] "GEO" "GY_CAP" +#> [3695,] "GEO" "PY" +#> [3696,] "GEO" "PY_CAP" +#> [3697,] "GEO" "PE" +#> [3698,] "GEO" "PE_CAP" +#> [3699,] "GEO" "SR" +#> [3700,] "GEO" "SR_CAP" +#> [3701,] "GEO" "UY" +#> [3702,] "GEO" "UY_CAP" +#> [3703,] "GEO" "VE" +#> [3704,] "GEO" "VE_CAP" +#> [3705,] "GEO" "AME_C_S_OTH" +#> [3706,] "GEO" "AME_S_OTH" +#> [3707,] "GEO" "AME_X_N_OTH" +#> [3708,] "GEO" "AME_X_N_NSP" +#> [3709,] "GEO" "AME_OTH" +#> [3710,] "GEO" "ASI" +#> [3711,] "GEO" "ASI_C" +#> [3712,] "GEO" "KZ" +#> [3713,] "GEO" "KZ_CAP" +#> [3714,] "GEO" "KZ_DEL" +#> [3715,] "GEO" "KG" +#> [3716,] "GEO" "KG_CAP" +#> [3717,] "GEO" "TJ" +#> [3718,] "GEO" "TJ_CAP" +#> [3719,] "GEO" "TM" +#> [3720,] "GEO" "TM_CAP" +#> [3721,] "GEO" "UZ" +#> [3722,] "GEO" "UZ_CAP" +#> [3723,] "GEO" "ASI_E" +#> [3724,] "GEO" "CN" +#> [3725,] "GEO" "CN_X_HK" +#> [3726,] "GEO" "CN_CAP" +#> [3727,] "GEO" "HK" +#> [3728,] "GEO" "HK_CAP" +#> [3729,] "GEO" "MO" +#> [3730,] "GEO" "JP" +#> [3731,] "GEO" "JP_CAP" +#> [3732,] "GEO" "JP_DEL" +#> [3733,] "GEO" "MN" +#> [3734,] "GEO" "MN_CAP" +#> [3735,] "GEO" "KP" +#> [3736,] "GEO" "KR" +#> [3737,] "GEO" "KR_CAP" +#> [3738,] "GEO" "TW" +#> [3739,] "GEO" "TW_CAP" +#> [3740,] "GEO" "ASI_E_OTH" +#> [3741,] "GEO" "ASI_S" +#> [3742,] "GEO" "AF" +#> [3743,] "GEO" "AF_CAP" +#> [3744,] "GEO" "BD" +#> [3745,] "GEO" "BD_CAP" +#> [3746,] "GEO" "BT" +#> [3747,] "GEO" "IO" +#> [3748,] "GEO" "IN" +#> [3749,] "GEO" "IN_CAP" +#> [3750,] "GEO" "IR" +#> [3751,] "GEO" "IR_CAP" +#> [3752,] "GEO" "MV" +#> [3753,] "GEO" "NP" +#> [3754,] "GEO" "NP_CAP" +#> [3755,] "GEO" "PK" +#> [3756,] "GEO" "PK_CAP" +#> [3757,] "GEO" "LK" +#> [3758,] "GEO" "LK_DEL" +#> [3759,] "GEO" "ASI_S_E" +#> [3760,] "GEO" "BN" +#> [3761,] "GEO" "KH" +#> [3762,] "GEO" "KH_CAP" +#> [3763,] "GEO" "ID" +#> [3764,] "GEO" "ID_CAP" +#> [3765,] "GEO" "ID_DEL" +#> [3766,] "GEO" "LA" +#> [3767,] "GEO" "LA_CAP" +#> [3768,] "GEO" "MY" +#> [3769,] "GEO" "MY_CAP" +#> [3770,] "GEO" "MM" +#> [3771,] "GEO" "MM_DEL" +#> [3772,] "GEO" "PH" +#> [3773,] "GEO" "PH_CAP" +#> [3774,] "GEO" "SG" +#> [3775,] "GEO" "SG_CAP" +#> [3776,] "GEO" "TH" +#> [3777,] "GEO" "TH_CAP" +#> [3778,] "GEO" "TL" +#> [3779,] "GEO" "TL_CAP" +#> [3780,] "GEO" "VN" +#> [3781,] "GEO" "VN_CAP" +#> [3782,] "GEO" "ASI_W_IR" +#> [3783,] "GEO" "ASI_W" +#> [3784,] "GEO" "AM" +#> [3785,] "GEO" "AM_CAP" +#> [3786,] "GEO" "AZ" +#> [3787,] "GEO" "AZ_CAP" +#> [3788,] "GEO" "BH" +#> [3789,] "GEO" "GE" +#> [3790,] "GEO" "GE_CAP" +#> [3791,] "GEO" "IQ" +#> [3792,] "GEO" "IQ_CAP" +#> [3793,] "GEO" "IL" +#> [3794,] "GEO" "IL_DEL" +#> [3795,] "GEO" "JO" +#> [3796,] "GEO" "JO_CAP" +#> [3797,] "GEO" "KW" +#> [3798,] "GEO" "KW_CAP" +#> [3799,] "GEO" "LB" +#> [3800,] "GEO" "LB_CAP" +#> [3801,] "GEO" "PS" +#> [3802,] "GEO" "PS_CAP" +#> [3803,] "GEO" "OM" +#> [3804,] "GEO" "QA" +#> [3805,] "GEO" "QA_CAP" +#> [3806,] "GEO" "SA" +#> [3807,] "GEO" "SA_CAP" +#> [3808,] "GEO" "SY" +#> [3809,] "GEO" "SY_CAP" +#> [3810,] "GEO" "AE" +#> [3811,] "GEO" "AE_CAP" +#> [3812,] "GEO" "YE" +#> [3813,] "GEO" "YE_CAP" +#> [3814,] "GEO" "EX_YE" +#> [3815,] "GEO" "EX_YD" +#> [3816,] "GEO" "ASI_NME" +#> [3817,] "GEO" "ASI_NME_OTH" +#> [3818,] "GEO" "ASI_G" +#> [3819,] "GEO" "ASI_W_OTH" +#> [3820,] "GEO" "EX_SU_ASI" +#> [3821,] "GEO" "ASI_OTH" +#> [3822,] "GEO" "ASI_NSP" +#> [3823,] "GEO" "ASI_OCE_OTH" +#> [3824,] "GEO" "OCE_PLR" +#> [3825,] "GEO" "OCE" +#> [3826,] "GEO" "AU_NZ" +#> [3827,] "GEO" "AU" +#> [3828,] "GEO" "AU_CAP" +#> [3829,] "GEO" "AU_ISL" +#> [3830,] "GEO" "CX" +#> [3831,] "GEO" "CC" +#> [3832,] "GEO" "HM" +#> [3833,] "GEO" "NF" +#> [3834,] "GEO" "NZ" +#> [3835,] "GEO" "NZ_CAP" +#> [3836,] "GEO" "NZ_ISL" +#> [3837,] "GEO" "MEL" +#> [3838,] "GEO" "FJ" +#> [3839,] "GEO" "FJ_CAP" +#> [3840,] "GEO" "NC" +#> [3841,] "GEO" "NC_CAP" +#> [3842,] "GEO" "PG" +#> [3843,] "GEO" "PG_CAP" +#> [3844,] "GEO" "SB" +#> [3845,] "GEO" "SB_CAP" +#> [3846,] "GEO" "VU" +#> [3847,] "GEO" "VU_CAP" +#> [3848,] "GEO" "MIC" +#> [3849,] "GEO" "GU" +#> [3850,] "GEO" "KI" +#> [3851,] "GEO" "MH" +#> [3852,] "GEO" "FM" +#> [3853,] "GEO" "FM_CAP" +#> [3854,] "GEO" "NR" +#> [3855,] "GEO" "MP" +#> [3856,] "GEO" "PW" +#> [3857,] "GEO" "POL" +#> [3858,] "GEO" "AS" +#> [3859,] "GEO" "CK" +#> [3860,] "GEO" "PF" +#> [3861,] "GEO" "NU" +#> [3862,] "GEO" "PN" +#> [3863,] "GEO" "WS" +#> [3864,] "GEO" "WS_CAP" +#> [3865,] "GEO" "TK" +#> [3866,] "GEO" "TO" +#> [3867,] "GEO" "TO_CAP" +#> [3868,] "GEO" "TV" +#> [3869,] "GEO" "WF" +#> [3870,] "GEO" "US_ISL" +#> [3871,] "GEO" "UM" +#> [3872,] "GEO" "OCE_OTH" +#> [3873,] "GEO" "OCE_NSP" +#> [3874,] "GEO" "PLR" +#> [3875,] "GEO" "AQ" +#> [3876,] "GEO" "BV" +#> [3877,] "GEO" "GS" +#> [3878,] "GEO" "TF" +#> [3879,] "GEO" "INST_NAT" +#> [3880,] "GEO" "PARL_NAT" +#> [3881,] "GEO" "GOV_NAT" +#> [3882,] "GEO" "ORG_INTL" +#> [3883,] "GEO" "EUI" +#> [3884,] "GEO" "EUI_X_EAI" +#> [3885,] "GEO" "EUI_X_ECB" +#> [3886,] "GEO" "PARL" +#> [3887,] "GEO" "COUNCIL" +#> [3888,] "GEO" "CONS" +#> [3889,] "GEO" "COMM" +#> [3890,] "GEO" "ESTAT" +#> [3891,] "GEO" "CURIA" +#> [3892,] "GEO" "ECB" +#> [3893,] "GEO" "ECA" +#> [3894,] "GEO" "EESC" +#> [3895,] "GEO" "COR" +#> [3896,] "GEO" "EIB" +#> [3897,] "GEO" "EIF" +#> [3898,] "GEO" "ESM" +#> [3899,] "GEO" "EFSF" +#> [3900,] "GEO" "EDF" +#> [3901,] "GEO" "SRB" +#> [3902,] "GEO" "EU_BDG" +#> [3903,] "GEO" "EUB_MNR" +#> [3904,] "GEO" "EUB_OTH" +#> [3905,] "GEO" "EUI_NBDG" +#> [3906,] "GEO" "ECSC" +#> [3907,] "GEO" "EMI" +#> [3908,] "GEO" "EMCF" +#> [3909,] "GEO" "EURATOM" +#> [3910,] "GEO" "UNO" +#> [3911,] "GEO" "UNICEF" +#> [3912,] "GEO" "UNHCR" +#> [3913,] "GEO" "UNRWA" +#> [3914,] "GEO" "ILO" +#> [3915,] "GEO" "FAO" +#> [3916,] "GEO" "UNESCO" +#> [3917,] "GEO" "WHO" +#> [3918,] "GEO" "IBRD" +#> [3919,] "GEO" "IDA" +#> [3920,] "GEO" "IFC" +#> [3921,] "GEO" "MIGA" +#> [3922,] "GEO" "IMF" +#> [3923,] "GEO" "ITU" +#> [3924,] "GEO" "IFAD" +#> [3925,] "GEO" "WTO" +#> [3926,] "GEO" "IAEA" +#> [3927,] "GEO" "UNO_OTH" +#> [3928,] "GEO" "ORG_OTH" +#> [3929,] "GEO" "ACP" +#> [3930,] "GEO" "ACP_AFR" +#> [3931,] "GEO" "ACP_CRB" +#> [3932,] "GEO" "ACP_PAC" +#> [3933,] "GEO" "AFDB" +#> [3934,] "GEO" "ALA" +#> [3935,] "GEO" "APEC" +#> [3936,] "GEO" "ASDB" +#> [3937,] "GEO" "ASEAN" +#> [3938,] "GEO" "BIS" +#> [3939,] "GEO" "BRIC" +#> [3940,] "GEO" "BRICS" +#> [3941,] "GEO" "CAN" +#> [3942,] "GEO" "CARICOM" +#> [3943,] "GEO" "CEMAC" +#> [3944,] "GEO" "COMESA" +#> [3945,] "GEO" "DAC" +#> [3946,] "GEO" "EASA" +#> [3947,] "GEO" "NEASA" +#> [3948,] "GEO" "EBRD" +#> [3949,] "GEO" "ECCAS" +#> [3950,] "GEO" "ECOWAS" +#> [3951,] "GEO" "EHEA" +#> [3952,] "GEO" "ESA" +#> [3953,] "GEO" "EURMED" +#> [3954,] "GEO" "FEMIP" +#> [3955,] "GEO" "FZ" +#> [3956,] "GEO" "G20" +#> [3957,] "GEO" "G20_X_EU27_2020" +#> [3958,] "GEO" "IDB" +#> [3959,] "GEO" "IF" +#> [3960,] "GEO" "MACR" +#> [3961,] "GEO" "MAGR" +#> [3962,] "GEO" "MED" +#> [3963,] "GEO" "MED_X_HR" +#> [3964,] "GEO" "MERCOSUR" +#> [3965,] "GEO" "NAFTA" +#> [3966,] "GEO" "NIB" +#> [3967,] "GEO" "ODA" +#> [3968,] "GEO" "OECD" +#> [3969,] "GEO" "OECD34" +#> [3970,] "GEO" "NOECD" +#> [3971,] "GEO" "OPEC" +#> [3972,] "GEO" "OPEC12" +#> [3973,] "GEO" "PALOP" +#> [3974,] "GEO" "SADC" +#> [3975,] "GEO" "SNTL_EU27_2020" +#> [3976,] "GEO" "SNTL_OTH_EU27_2020" +#> [3977,] "GEO" "SNTL_EFTA" +#> [3978,] "GEO" "SNTL_UK" +#> [3979,] "GEO" "UEMOA" +#> [3980,] "GEO" "USMCA" +#> [3981,] "GEO" "ORG_NEUR" +#> [3982,] "GEO" "CONTROL" +#> [3983,] "GEO" "DAE" +#> [3984,] "GEO" "DOM" +#> [3985,] "GEO" "DOM_FOR" +#> [3986,] "GEO" "DOT" +#> [3987,] "GEO" "ESC_UCI" +#> [3988,] "GEO" "EURONEXT" +#> [3989,] "GEO" "FOR_STLS" +#> [3990,] "GEO" "FOR" +#> [3991,] "GEO" "INR" +#> [3992,] "GEO" "LDC" +#> [3993,] "GEO" "LMIC" +#> [3994,] "GEO" "MADCT" +#> [3995,] "GEO" "MSHO" +#> [3996,] "GEO" "NAT" +#> [3997,] "GEO" "NIC_S1" +#> [3998,] "GEO" "NIC_S2A" +#> [3999,] "GEO" "NIC_S2LA" +#> [4000,] "GEO" "OFFSHO" +#> [4001,] "GEO" "OLIC" +#> [4002,] "GEO" "OMX" +#> [4003,] "GEO" "OUT" +#> [4004,] "GEO" "OUTR" +#> [4005,] "GEO" "OUT_C" +#> [4006,] "GEO" "RNC" +#> [4007,] "GEO" "STLS" +#> [4008,] "GEO" "THRD" +#> [4009,] "GEO" "THRD_CTZ" +#> [4010,] "GEO" "THRD_OTH" +#> [4011,] "GEO" "TRS" +#> [4012,] "GEO" "TOTAL" +#> [4013,] "GEO" "UMIC" +#> [4014,] "GEO" "UMIC_X_CN" +#> [4015,] "GEO" "WORLD" +#> [4016,] "GEO" "WRL_NAL" +#> [4017,] "GEO" "WRL_REST" +#> [4018,] "GEO" "WRL_X_REP" +#> [4019,] "GEO" "OTH" +#> [4020,] "GEO" "NAL" +#> [4021,] "GEO" "NAP" +#> [4022,] "GEO" "NRP" +#> [4023,] "GEO" "NSP" +#> [4024,] "GEO" "UNK" +#> xml_cln +#> [1,] "Europe" +#> [2,] "European Union (EU6-1958, EU9-1973, EU10-1981, EU12-1986, EU15-1995, EU25-2004, EU27-2007, EU28-2013, EU27-2020)" +#> [3,] "European Union (aggregate changing according to the context)" +#> [4,] "European Union - 27 countries (from 2020) and European Free Trade Association (EFTA) countries" +#> [5,] "European Union - 27 countries (from 2020) and Iceland under the Kyoto Protocol" +#> [6,] "European Union - 27 countries (from 2020)" +#> [7,] "European Union - 28 countries (2013-2020) and European Free Trade Association (EFTA) countries" +#> [8,] "European Union - 28 countries (2013-2020) and Iceland under the Kyoto Protocol" +#> [9,] "European Union - 28 countries (2013-2020)" +#> [10,] "European Union - 27 countries (2007-2013)" +#> [11,] "European Union - 25 countries (2004-2006)" +#> [12,] "European Union - 15 countries (1995-2004)" +#> [13,] "European Union - 15 countries (1995-2004) and Norway" +#> [14,] "New Member States - 13 countries (from 2013)" +#> [15,] "New Member States - 12 countries (2007-2013)" +#> [16,] "New Member States - 10 countries (2004-2006)" +#> [17,] "European Community - 12 countries (1986-1994)" +#> [18,] "European Community - 10 countries (1981-1985)" +#> [19,] "European Community - 9 countries (1973-1980)" +#> [20,] "European Community - 6 founder countries (1958-1972)" +#> [21,] "Euro area (EA11-1999, EA12-2001, EA13-2007, EA15-2008, EA16-2009, EA17-2011, EA18-2014, EA19-2015)" +#> [22,] "Euro area - 19 countries (from 2015)" +#> [23,] "Euro area - 18 countries (2014)" +#> [24,] "Euro area - 17 countries (2011-2013)" +#> [25,] "Euro area - 16 countries (2009-2010)" +#> [26,] "Euro area - 15 countries (2008)" +#> [27,] "Euro area - 13 countries (2007)" +#> [28,] "Euro area - 12 countries (2001-2006)" +#> [29,] "Euro area - 11 countries (1999-2000)" +#> [30,] "Belgium" +#> [31,] "Région de Bruxelles-Capitale/Brussels Hoofdstedelijk Gewest and Vlaams Gewest" +#> [32,] "Région de Bruxelles-Capitale/Brussels Hoofdstedelijk Gewest" +#> [33,] "Région de Bruxelles-Capitale/Brussels Hoofdstedelijk Gewest and Prov. Vlaams Brabant" +#> [34,] "Région de Bruxelles-Capitale/Brussels Hoofdstedelijk Gewest" +#> [35,] "Arr. de Bruxelles-Capitale/Arr. Brussel-Hoofdstad" +#> [36,] "Vlaams Gewest" +#> [37,] "Prov. Antwerpen" +#> [38,] "Arr. Antwerpen" +#> [39,] "Arr. Mechelen" +#> [40,] "Arr. Turnhout" +#> [41,] "Prov. Limburg (BE)" +#> [42,] "Arr. Hasselt (NUTS 2016)" +#> [43,] "Arr. Maaseik (NUTS 2016)" +#> [44,] "Arr. Tongeren" +#> [45,] "Arr. Hasselt" +#> [46,] "Arr. Maaseik" +#> [47,] "Prov. Oost-Vlaanderen" +#> [48,] "Arr. Aalst" +#> [49,] "Arr. Dendermonde" +#> [50,] "Arr. Eeklo" +#> [51,] "Arr. Gent" +#> [52,] "Arr. Oudenaarde" +#> [53,] "Arr. Sint-Niklaas" +#> [54,] "Prov. Vlaams-Brabant" +#> [55,] "Arr. Halle-Vilvoorde" +#> [56,] "Arr. Leuven" +#> [57,] "Prov. West-Vlaanderen" +#> [58,] "Arr. Brugge" +#> [59,] "Arr. Diksmuide" +#> [60,] "Arr. Ieper" +#> [61,] "Arr. Kortrijk" +#> [62,] "Arr. Oostende" +#> [63,] "Arr. Roeselare" +#> [64,] "Arr. Tielt" +#> [65,] "Arr. Veurne" +#> [66,] "Région wallonne" +#> [67,] "Prov. Brabant wallon" +#> [68,] "Arr. Nivelles" +#> [69,] "Prov. Hainaut" +#> [70,] "Arr. Ath (NUTS 2016)" +#> [71,] "Arr. Charleroi (NUTS 2016)" +#> [72,] "Arr. Mons" +#> [73,] "Arr. Mouscron (NUTS 2016)" +#> [74,] "Arr. Soignies (NUTS 2016)" +#> [75,] "Arr. Thuin (NUTS 2016)" +#> [76,] "Arr. Tournai (NUTS 2016)" +#> [77,] "Arr. Tournai-Mouscron" +#> [78,] "Arr. La Louvière" +#> [79,] "Arr. Ath" +#> [80,] "Arr. Charleroi" +#> [81,] "Arr. Soignies" +#> [82,] "Arr. Thuin" +#> [83,] "Prov. Liège" +#> [84,] "Arr. Huy" +#> [85,] "Arr. Liège" +#> [86,] "Arr. Waremme" +#> [87,] "Arr. Verviers" +#> [88,] "Arr. Verviers - communes francophones" +#> [89,] "Bezirk Verviers - Deutschsprachige Gemeinschaft" +#> [90,] "Prov. Luxembourg (BE)" +#> [91,] "Arr. Arlon" +#> [92,] "Arr. Bastogne" +#> [93,] "Arr. Marche-en-Famenne" +#> [94,] "Arr. Neufchâteau" +#> [95,] "Arr. Virton" +#> [96,] "Prov. Namur" +#> [97,] "Arr. Dinant" +#> [98,] "Arr. Namur" +#> [99,] "Arr. Philippeville" +#> [100,] "Extra-Regio NUTS 1" +#> [101,] "Extra-Regio NUTS 2" +#> [102,] "Extra-Regio NUTS 3" +#> [103,] "French Community in Belgium including small German-speaking Community" +#> [104,] "Flemish Community in Belgium" +#> [105,] "Bruxelles/Brussel" +#> [106,] "Not regionalised/Unknown NUTS 1" +#> [107,] "Not regionalised/Unknown NUTS 2" +#> [108,] "Not regionalised/Unknown NUTS 3" +#> [109,] "Belgium, not allocated" +#> [110,] "Bulgaria" +#> [111,] "Severna i yugoiztochna Bulgaria" +#> [112,] "Severozapaden" +#> [113,] "Vidin" +#> [114,] "Montana" +#> [115,] "Vratsa" +#> [116,] "Pleven" +#> [117,] "Lovech" +#> [118,] "Severen tsentralen" +#> [119,] "Veliko Tarnovo" +#> [120,] "Gabrovo" +#> [121,] "Ruse" +#> [122,] "Razgrad" +#> [123,] "Silistra" +#> [124,] "Severoiztochen" +#> [125,] "Varna" +#> [126,] "Dobrich" +#> [127,] "Shumen" +#> [128,] "Targovishte" +#> [129,] "Yugoiztochen" +#> [130,] "Burgas" +#> [131,] "Sliven" +#> [132,] "Yambol" +#> [133,] "Stara Zagora" +#> [134,] "Yugozapadna i yuzhna tsentralna Bulgaria" +#> [135,] "Yugozapaden" +#> [136,] "Sofia (stolitsa)" +#> [137,] "Sofia" +#> [138,] "Blagoevgrad" +#> [139,] "Pernik" +#> [140,] "Kyustendil" +#> [141,] "Yuzhen tsentralen" +#> [142,] "Plovdiv" +#> [143,] "Haskovo" +#> [144,] "Pazardzhik" +#> [145,] "Smolyan" +#> [146,] "Kardzhali" +#> [147,] "Extra-Regio NUTS 1" +#> [148,] "Extra-Regio NUTS 2" +#> [149,] "Extra-Regio NUTS 3" +#> [150,] "Severna Bulgaria (statistical region 2005)" +#> [151,] "Severozapaden (statistical region 2005)" +#> [152,] "Vidin (statistical region 2005)" +#> [153,] "Montana (statistical region 2005)" +#> [154,] "Vratsa (statistical region 2005)" +#> [155,] "Severen tsentralen (statistical region 2005)" +#> [156,] "Pleven (statistical region 2005)" +#> [157,] "Lovech (statistical region 2005)" +#> [158,] "Veliko Tarnovo (statistical region 2005)" +#> [159,] "Gabrovo (statistical region 2005)" +#> [160,] "Ruse (statistical region 2005)" +#> [161,] "Severoiztochen (statistical region 2005)" +#> [162,] "Varna (statistical region 2005)" +#> [163,] "Dobrich (statistical region 2005)" +#> [164,] "Shumen (statistical region 2005)" +#> [165,] "Targovishte (statistical region 2005)" +#> [166,] "Razgrad (statistical region 2005)" +#> [167,] "Silistra (statistical region 2005)" +#> [168,] "Yuzhna Bulgaria (statistical region 2005)" +#> [169,] "Yugozapaden (statistical region 2005)" +#> [170,] "Sofia (stolitsa) (statistical region 2005)" +#> [171,] "Sofia (statistical region 2005)" +#> [172,] "Blagoevgrad (statistical region 2005)" +#> [173,] "Pernik (statistical region 2005)" +#> [174,] "Kyustendil (statistical region 2005)" +#> [175,] "Yuzhen tsentralen (statistical region 2005)" +#> [176,] "Plovdiv (statistical region 2005)" +#> [177,] "Stara Zagora (statistical region 2005)" +#> [178,] "Haskovo (statistical region 2005)" +#> [179,] "Pazardzhik (statistical region 2005)" +#> [180,] "Smolyan (statistical region 2005)" +#> [181,] "Kardzhali (statistical region 2005)" +#> [182,] "Yugoiztochen (statistical region 2005)" +#> [183,] "Burgas (statistical region 2005)" +#> [184,] "Sliven (statistical region 2005)" +#> [185,] "Yambol (statistical region 2005)" +#> [186,] "Sofia" +#> [187,] "Not regionalised/Unknown NUTS 1" +#> [188,] "Not regionalised/Unknown NUTS 2" +#> [189,] "Not regionalised/Unknown NUTS 3" +#> [190,] "Czechia" +#> [191,] "Cesko" +#> [192,] "Praha" +#> [193,] "Hlavní mesto Praha" +#> [194,] "Strední Cechy" +#> [195,] "Stredoceský kraj" +#> [196,] "Jihozápad" +#> [197,] "Jihocecký kraj" +#> [198,] "Plzenský kraj" +#> [199,] "Severozápad" +#> [200,] "Karlovarský kraj" +#> [201,] "Ústecký kraj" +#> [202,] "Severovýchod" +#> [203,] "Liberecký kraj" +#> [204,] "Královéhradecký kraj" +#> [205,] "Pardubický kraj" +#> [206,] "Jihovýchod" +#> [207,] "Vysocina (NUTS 2003)" +#> [208,] "Jihomoravský (NUTS 2003)" +#> [209,] "Kraj Vysocina" +#> [210,] "Jihomoravský kraj" +#> [211,] "Strední Morava" +#> [212,] "Olomoucký kraj" +#> [213,] "Zlínský kraj" +#> [214,] "Moravskoslezsko" +#> [215,] "Moravskoslezský kraj" +#> [216,] "Extra-Regio NUTS 1" +#> [217,] "Extra-Regio NUTS 2" +#> [218,] "Extra-Regio NUTS 3" +#> [219,] "Praha" +#> [220,] "Not regionalised/Unknown NUTS 1" +#> [221,] "Not regionalised/Unknown NUTS 2" +#> [222,] "Not regionalised/Unknown NUTS 3" +#> [223,] "Cechy" +#> [224,] "Morava" +#> [225,] "Denmark" +#> [226,] "Danmark" +#> [227,] "Hovedstaden" +#> [228,] "Byen København" +#> [229,] "Københavns omegn" +#> [230,] "Nordsjælland" +#> [231,] "Bornholm" +#> [232,] "Sjælland" +#> [233,] "Østsjælland" +#> [234,] "Vest- og Sydsjælland" +#> [235,] "Syddanmark" +#> [236,] "Fyn" +#> [237,] "Sydjylland" +#> [238,] "Midtjylland" +#> [239,] "Vestjylland" +#> [240,] "Østjylland" +#> [241,] "Nordjylland" +#> [242,] "Nordjylland" +#> [243,] "Extra-Regio NUTS 1" +#> [244,] "Extra-Regio NUTS 2" +#> [245,] "Extra-Regio NUTS 3" +#> [246,] "København og Frederiksberg Kommuner, Roskilde amt, Københavns amt, Frederiksborg amt (NUTS 1999)" +#> [247,] "København og Frederiksberg Kommuner (NUTS 1999)" +#> [248,] "Københavns amt (NUTS 1999)" +#> [249,] "Frederiksborg amt (NUTS 1999)" +#> [250,] "Roskilde amt (NUTS 1999)" +#> [251,] "Vestsjællands amt (NUTS 1999)" +#> [252,] "Storstrøms amt (NUTS 1999)" +#> [253,] "Bornholms amt (NUTS 1999)" +#> [254,] "Fyns amt (NUTS 1999)" +#> [255,] "Sønderjyllands amt (NUTS 1999)" +#> [256,] "Ribe amt (NUTS 1999)" +#> [257,] "Vejle amt (NUTS 1999)" +#> [258,] "Ringkøbing amt (NUTS 1999)" +#> [259,] "Århus amt (NUTS 1999)" +#> [260,] "Viborg amt (NUTS 1999)" +#> [261,] "Nordjyllands amt (NUTS 1999)" +#> [262,] "København" +#> [263,] "Not regionalised/Unknown NUTS 1" +#> [264,] "Not regionalised/Unknown NUTS 2" +#> [265,] "Not regionalised/Unknown NUTS 3" +#> [266,] "Germany (until 1990 former territory of the FRG)" +#> [267,] "Germany including former GDR" +#> [268,] "Federal Republic of Germany (former territory of the FRG only)" +#> [269,] "Former German Democratic Republic (until 1990)/new Länder (from 1991)" +#> [270,] "Baden-Württemberg" +#> [271,] "Stuttgart" +#> [272,] "Stuttgart, Stadtkreis" +#> [273,] "Böblingen" +#> [274,] "Esslingen" +#> [275,] "Göppingen" +#> [276,] "Ludwigsburg" +#> [277,] "Rems-Murr-Kreis" +#> [278,] "Heilbronn, Stadtkreis" +#> [279,] "Heilbronn, Landkreis" +#> [280,] "Hohenlohekreis" +#> [281,] "Schwäbisch Hall" +#> [282,] "Main-Tauber-Kreis" +#> [283,] "Heidenheim" +#> [284,] "Ostalbkreis" +#> [285,] "Karlsruhe" +#> [286,] "Baden-Baden, Stadtkreis" +#> [287,] "Karlsruhe, Stadtkreis" +#> [288,] "Karlsruhe, Landkreis" +#> [289,] "Rastatt" +#> [290,] "Heidelberg, Stadtkreis" +#> [291,] "Mannheim, Stadtkreis" +#> [292,] "Neckar-Odenwald-Kreis" +#> [293,] "Rhein-Neckar-Kreis" +#> [294,] "Pforzheim, Stadtkreis" +#> [295,] "Calw" +#> [296,] "Enzkreis" +#> [297,] "Freudenstadt" +#> [298,] "Freiburg" +#> [299,] "Freiburg im Breisgau, Stadtkreis" +#> [300,] "Breisgau-Hochschwarzwald" +#> [301,] "Emmendingen" +#> [302,] "Ortenaukreis" +#> [303,] "Rottweil" +#> [304,] "Schwarzwald-Baar-Kreis" +#> [305,] "Tuttlingen" +#> [306,] "Konstanz" +#> [307,] "Lörrach" +#> [308,] "Waldshut" +#> [309,] "Tübingen" +#> [310,] "Reutlingen" +#> [311,] "Tübingen, Landkreis" +#> [312,] "Zollernalbkreis" +#> [313,] "Ulm, Stadtkreis" +#> [314,] "Alb-Donau-Kreis" +#> [315,] "Biberach" +#> [316,] "Bodenseekreis" +#> [317,] "Ravensburg" +#> [318,] "Sigmaringen" +#> [319,] "Baden-Württemberg East" +#> [320,] "Baden-Württemberg North West" +#> [321,] "Baden-Württemberg South West" +#> [322,] "Baden" +#> [323,] "Württemberg" +#> [324,] "Bayern" +#> [325,] "Oberbayern" +#> [326,] "Ingolstadt, Kreisfreie Stadt" +#> [327,] "München, Kreisfreie Stadt" +#> [328,] "Rosenheim, Kreisfreie Stadt" +#> [329,] "Altötting" +#> [330,] "Berchtesgadener Land" +#> [331,] "Bad Tölz-Wolfratshausen" +#> [332,] "Dachau" +#> [333,] "Ebersberg" +#> [334,] "Eichstätt" +#> [335,] "Erding" +#> [336,] "Freising" +#> [337,] "Fürstenfeldbruck" +#> [338,] "Garmisch-Partenkirchen" +#> [339,] "Landsberg am Lech" +#> [340,] "Miesbach" +#> [341,] "Mühldorf am Inn" +#> [342,] "München, Landkreis" +#> [343,] "Neuburg-Schrobenhausen" +#> [344,] "Pfaffenhofen an der Ilm" +#> [345,] "Rosenheim, Landkreis" +#> [346,] "Starnberg" +#> [347,] "Traunstein" +#> [348,] "Weilheim-Schongau" +#> [349,] "Niederbayern" +#> [350,] "Landshut, Kreisfreie Stadt" +#> [351,] "Passau, Kreisfreie Stadt" +#> [352,] "Straubing, Kreisfreie Stadt" +#> [353,] "Deggendorf" +#> [354,] "Freyung-Grafenau" +#> [355,] "Kelheim" +#> [356,] "Landshut, Landkreis" +#> [357,] "Passau, Landkreis" +#> [358,] "Regen" +#> [359,] "Rottal-Inn" +#> [360,] "Straubing-Bogen" +#> [361,] "Dingolfing-Landau" +#> [362,] "Oberpfalz" +#> [363,] "Amberg, Kreisfreie Stadt" +#> [364,] "Regensburg, Kreisfreie Stadt" +#> [365,] "Weiden in der Oberpfalz, Kreisfreie Stadt" +#> [366,] "Amberg-Sulzbach" +#> [367,] "Cham" +#> [368,] "Neumarkt in der Oberpfalz" +#> [369,] "Neustadt an der Waldnaab" +#> [370,] "Regensburg, Landkreis" +#> [371,] "Schwandorf" +#> [372,] "Tirschenreuth" +#> [373,] "Franken" +#> [374,] "Oberfranken" +#> [375,] "Bamberg, Kreisfreie Stadt" +#> [376,] "Bayreuth, Kreisfreie Stadt" +#> [377,] "Coburg, Kreisfreie Stadt" +#> [378,] "Hof, Kreisfreie Stadt" +#> [379,] "Bamberg, Landkreis" +#> [380,] "Bayreuth, Landkreis" +#> [381,] "Coburg, Landkreis" +#> [382,] "Forchheim" +#> [383,] "Hof, Landkreis" +#> [384,] "Kronach" +#> [385,] "Kulmbach" +#> [386,] "Lichtenfels" +#> [387,] "Wunsiedel im Fichtelgebirge" +#> [388,] "Mittelfranken" +#> [389,] "Ansbach, Kreisfreie Stadt" +#> [390,] "Erlangen, Kreisfreie Stadt" +#> [391,] "Fürth, Kreisfreie Stadt" +#> [392,] "Nürnberg, Kreisfreie Stadt" +#> [393,] "Schwabach, Kreisfreie Stadt" +#> [394,] "Ansbach, Landkreis" +#> [395,] "Erlangen-Höchstadt" +#> [396,] "Fürth, Landkreis" +#> [397,] "Nürnberger Land" +#> [398,] "Neustadt an der Aisch-Bad Windsheim" +#> [399,] "Roth" +#> [400,] "Weißenburg-Gunzenhausen" +#> [401,] "Unterfranken" +#> [402,] "Aschaffenburg, Kreisfreie Stadt" +#> [403,] "Schweinfurt, Kreisfreie Stadt" +#> [404,] "Würzburg, Kreisfreie Stadt" +#> [405,] "Aschaffenburg, Landkreis" +#> [406,] "Bad Kissingen" +#> [407,] "Rhön-Grabfeld" +#> [408,] "Haßberge" +#> [409,] "Kitzingen" +#> [410,] "Miltenberg" +#> [411,] "Main-Spessart" +#> [412,] "Schweinfurt, Landkreis" +#> [413,] "Würzburg, Landkreis" +#> [414,] "Schwaben" +#> [415,] "Augsburg, Kreisfreie Stadt" +#> [416,] "Kaufbeuren, Kreisfreie Stadt" +#> [417,] "Kempten (Allgäu), Kreisfreie Stadt" +#> [418,] "Memmingen, Kreisfreie Stadt" +#> [419,] "Aichach-Friedberg" +#> [420,] "Augsburg, Landkreis" +#> [421,] "Dillingen an der Donau" +#> [422,] "Günzburg" +#> [423,] "Neu-Ulm" +#> [424,] "Lindau (Bodensee)" +#> [425,] "Ostallgäu" +#> [426,] "Unterallgäu" +#> [427,] "Donau-Ries" +#> [428,] "Oberallgäu" +#> [429,] "Bayern - East" +#> [430,] "Bayern - North" +#> [431,] "Bayern - South" +#> [432,] "Berlin, Bremen, Hamburg" +#> [433,] "Berlin" +#> [434,] "Berlin" +#> [435,] "Berlin" +#> [436,] "Berlin-West, Stadt (NUTS 1999)" +#> [437,] "Berlin-Ost, Stadt (NUTS 1999)" +#> [438,] "Brandenburg" +#> [439,] "Brandenburg" +#> [440,] "Brandenburg an der Havel, Kreisfreie Stadt" +#> [441,] "Cottbus, Kreisfreie Stadt" +#> [442,] "Frankfurt (Oder), Kreisfreie Stadt" +#> [443,] "Potsdam, Kreisfreie Stadt" +#> [444,] "Barnim" +#> [445,] "Dahme-Spreewald" +#> [446,] "Elbe-Elster" +#> [447,] "Havelland" +#> [448,] "Märkisch-Oderland" +#> [449,] "Oberhavel" +#> [450,] "Oberspreewald-Lausitz" +#> [451,] "Oder-Spree" +#> [452,] "Ostprignitz-Ruppin" +#> [453,] "Potsdam-Mittelmark" +#> [454,] "Prignitz" +#> [455,] "Spree-Neiße" +#> [456,] "Teltow-Fläming" +#> [457,] "Uckermark" +#> [458,] "Brandenburg - Nordost (NUTS 2006)" +#> [459,] "Frankfurt (Oder), Kreisfreie Stadt (NUTS 2006)" +#> [460,] "Barnim (NUTS 2006)" +#> [461,] "Märkisch-Oderland (NUTS 2006)" +#> [462,] "Oberhavel (NUTS 2006)" +#> [463,] "Oder-Spree (NUTS 2006)" +#> [464,] "Ostprignitz-Ruppin (NUTS 2006)" +#> [465,] "Prignitz (NUTS 2006)" +#> [466,] "Uckermark (NUTS 2006)" +#> [467,] "Brandenburg - Südwest (NUTS 2006)" +#> [468,] "Brandenburg an der Havel, Kreisfreie Stadt (NUTS 2006)" +#> [469,] "Cottbus, Kreisfreie Stadt (NUTS 2006)" +#> [470,] "Potsdam, Kreisfreie Stadt (NUTS 2006)" +#> [471,] "Dahme-Spreewald (NUTS 2006)" +#> [472,] "Elbe-Elster (NUTS 2006)" +#> [473,] "Havelland (NUTS 2006)" +#> [474,] "Oberspreewald-Lausitz (NUTS 2006)" +#> [475,] "Potsdam-Mittelmark (NUTS 2006)" +#> [476,] "Spree-Neiße (NUTS 2006)" +#> [477,] "Teltow-Fläming (NUTS 2006)" +#> [478,] "Bremen" +#> [479,] "Bremen" +#> [480,] "Bremen, Kreisfreie Stadt" +#> [481,] "Bremerhaven, Kreisfreie Stadt" +#> [482,] "Hamburg" +#> [483,] "Hamburg" +#> [484,] "Hamburg" +#> [485,] "Hessen" +#> [486,] "Darmstadt" +#> [487,] "Darmstadt, Kreisfreie Stadt" +#> [488,] "Frankfurt am Main, Kreisfreie Stadt" +#> [489,] "Offenbach am Main, Kreisfreie Stadt" +#> [490,] "Wiesbaden, Kreisfreie Stadt" +#> [491,] "Bergstraße" +#> [492,] "Darmstadt-Dieburg" +#> [493,] "Groß-Gerau" +#> [494,] "Hochtaunuskreis" +#> [495,] "Main-Kinzig-Kreis" +#> [496,] "Main-Taunus-Kreis" +#> [497,] "Odenwaldkreis" +#> [498,] "Offenbach, Landkreis" +#> [499,] "Rheingau-Taunus-Kreis" +#> [500,] "Wetteraukreis" +#> [501,] "Gießen" +#> [502,] "Gießen, Landkreis" +#> [503,] "Lahn-Dill-Kreis" +#> [504,] "Limburg-Weilburg" +#> [505,] "Marburg-Biedenkopf" +#> [506,] "Vogelsbergkreis" +#> [507,] "Kassel" +#> [508,] "Kassel, Kreisfreie Stadt" +#> [509,] "Fulda" +#> [510,] "Hersfeld-Rotenburg" +#> [511,] "Kassel, Landkreis" +#> [512,] "Schwalm-Eder-Kreis" +#> [513,] "Waldeck-Frankenberg" +#> [514,] "Werra-Meißner-Kreis" +#> [515,] "Hessen - North" +#> [516,] "Hessen - South" +#> [517,] "Hessische Bergstraße" +#> [518,] "Rheingau" +#> [519,] "Mecklenburg-Vorpommern" +#> [520,] "Mecklenburg-Vorpommern" +#> [521,] "Greifswald, Kreisfreie Stadt (NUTS 2010)" +#> [522,] "Neubrandenburg, Kreisfreie Stadt (NUTS 2010)" +#> [523,] "Rostock, Kreisfreie Stadt" +#> [524,] "Schwerin, Kreisfreie Stadt" +#> [525,] "Stralsund, Kreisfreie Stadt (NUTS 2010)" +#> [526,] "Wismar, Kreisfreie Stadt (NUTS 2010)" +#> [527,] "Bad Doberan (NUTS 2010)" +#> [528,] "Demmin (NUTS 2010)" +#> [529,] "Güstrow (NUTS 2010)" +#> [530,] "Ludwigslust (NUTS 2010)" +#> [531,] "Mecklenburg-Strelitz (NUTS 2010)" +#> [532,] "Müritz (NUTS 2010)" +#> [533,] "Nordvorpommern (NUTS 2010)" +#> [534,] "Nordwestmecklenburg (NUTS 2010)" +#> [535,] "Ostvorpommern (NUTS 2010)" +#> [536,] "Parchim (NUTS 2010)" +#> [537,] "Rügen (NUTS 2010)" +#> [538,] "Uecker-Randow (NUTS 2010)" +#> [539,] "Mecklenburgische Seenplatte" +#> [540,] "Landkreis Rostock" +#> [541,] "Vorpommern-Rügen" +#> [542,] "Nordwestmecklenburg" +#> [543,] "Vorpommern-Greifswald" +#> [544,] "Ludwigslust-Parchim" +#> [545,] "Niedersachsen" +#> [546,] "Braunschweig" +#> [547,] "Braunschweig, Kreisfreie Stadt" +#> [548,] "Salzgitter, Kreisfreie Stadt" +#> [549,] "Wolfsburg, Kreisfreie Stadt" +#> [550,] "Gifhorn" +#> [551,] "Göttingen (NUTS 2013)" +#> [552,] "Goslar" +#> [553,] "Helmstedt" +#> [554,] "Northeim" +#> [555,] "Osterode am Harz (NUTS 2013)" +#> [556,] "Peine" +#> [557,] "Wolfenbüttel" +#> [558,] "Göttingen" +#> [559,] "Hannover" +#> [560,] "Hannover, Kreisfreie Stadt (NUTS 1999)" +#> [561,] "Diepholz" +#> [562,] "Hameln-Pyrmont" +#> [563,] "Hannover, Landkreis (NUTS 1999)" +#> [564,] "Hildesheim" +#> [565,] "Holzminden" +#> [566,] "Nienburg (Weser)" +#> [567,] "Schaumburg" +#> [568,] "Region Hannover" +#> [569,] "Lüneburg" +#> [570,] "Celle" +#> [571,] "Cuxhaven" +#> [572,] "Harburg" +#> [573,] "Lüchow-Dannenberg" +#> [574,] "Lüneburg, Landkreis" +#> [575,] "Osterholz" +#> [576,] "Rotenburg (Wümme)" +#> [577,] "Heidekreis" +#> [578,] "Stade" +#> [579,] "Uelzen" +#> [580,] "Verden" +#> [581,] "Weser-Ems" +#> [582,] "Delmenhorst, Kreisfreie Stadt" +#> [583,] "Emden, Kreisfreie Stadt" +#> [584,] "Oldenburg (Oldenburg), Kreisfreie Stadt" +#> [585,] "Osnabrück, Kreisfreie Stadt" +#> [586,] "Wilhelmshaven, Kreisfreie Stadt" +#> [587,] "Ammerland" +#> [588,] "Aurich" +#> [589,] "Cloppenburg" +#> [590,] "Emsland" +#> [591,] "Friesland (DE)" +#> [592,] "Grafschaft Bentheim" +#> [593,] "Leer" +#> [594,] "Oldenburg, Landkreis" +#> [595,] "Osnabrück, Landkreis" +#> [596,] "Vechta" +#> [597,] "Wesermarsch" +#> [598,] "Wittmund" +#> [599,] "Niedersachsen - North" +#> [600,] "Niedersachsen - South East" +#> [601,] "Niedersachsen - West" +#> [602,] "Nordrhein-Westfalen, Rheinland-Pfalz and Saarland" +#> [603,] "Nordrhein-Westfalen" +#> [604,] "Düsseldorf" +#> [605,] "Düsseldorf, Kreisfreie Stadt" +#> [606,] "Duisburg, Kreisfreie Stadt" +#> [607,] "Essen, Kreisfreie Stadt" +#> [608,] "Krefeld, Kreisfreie Stadt" +#> [609,] "Mönchengladbach, Kreisfreie Stadt" +#> [610,] "Mülheim an der Ruhr, Kreisfreie Stadt" +#> [611,] "Oberhausen, Kreisfreie Stadt" +#> [612,] "Remscheid, Kreisfreie Stadt" +#> [613,] "Solingen, Kreisfreie Stadt" +#> [614,] "Wuppertal, Kreisfreie Stadt" +#> [615,] "Kleve" +#> [616,] "Mettmann" +#> [617,] "Rhein-Kreis Neuss" +#> [618,] "Viersen" +#> [619,] "Wesel" +#> [620,] "Köln" +#> [621,] "Aachen, Kreisfreie Stadt (NUTS 2006)" +#> [622,] "Bonn, Kreisfreie Stadt" +#> [623,] "Köln, Kreisfreie Stadt" +#> [624,] "Leverkusen, Kreisfreie Stadt" +#> [625,] "Aachen, Kreis (NUTS 2006)" +#> [626,] "Düren" +#> [627,] "Rhein-Erft-Kreis" +#> [628,] "Euskirchen" +#> [629,] "Heinsberg" +#> [630,] "Oberbergischer Kreis" +#> [631,] "Rheinisch-Bergischer Kreis" +#> [632,] "Rhein-Sieg-Kreis" +#> [633,] "Städteregion Aachen" +#> [634,] "Münster" +#> [635,] "Bottrop, Kreisfreie Stadt" +#> [636,] "Gelsenkirchen, Kreisfreie Stadt" +#> [637,] "Münster, Kreisfreie Stadt" +#> [638,] "Borken" +#> [639,] "Coesfeld" +#> [640,] "Recklinghausen" +#> [641,] "Steinfurt" +#> [642,] "Warendorf" +#> [643,] "Detmold" +#> [644,] "Bielefeld, Kreisfreie Stadt" +#> [645,] "Gütersloh" +#> [646,] "Herford" +#> [647,] "Höxter" +#> [648,] "Lippe" +#> [649,] "Minden-Lübbecke" +#> [650,] "Paderborn" +#> [651,] "Arnsberg" +#> [652,] "Bochum, Kreisfreie Stadt" +#> [653,] "Dortmund, Kreisfreie Stadt" +#> [654,] "Hagen, Kreisfreie Stadt" +#> [655,] "Hamm, Kreisfreie Stadt" +#> [656,] "Herne, Kreisfreie Stadt" +#> [657,] "Ennepe-Ruhr-Kreis" +#> [658,] "Hochsauerlandkreis" +#> [659,] "Märkischer Kreis" +#> [660,] "Olpe" +#> [661,] "Siegen-Wittgenstein" +#> [662,] "Soest" +#> [663,] "Unna" +#> [664,] "Nordrhein-Westfalen - East" +#> [665,] "Nordrhein-Westfalen - North" +#> [666,] "Nordrhein-Westfalen - South West" +#> [667,] "Ruhrgebiet" +#> [668,] "Rheinland-Pfalz" +#> [669,] "Koblenz" +#> [670,] "Koblenz, Kreisfreie Stadt" +#> [671,] "Ahrweiler" +#> [672,] "Altenkirchen (Westerwald)" +#> [673,] "Bad Kreuznach" +#> [674,] "Birkenfeld" +#> [675,] "Cochem-Zell (NUTS 2013)" +#> [676,] "Mayen-Koblenz" +#> [677,] "Neuwied" +#> [678,] "Rhein-Hunsrück-Kreis (NUTS 2013)" +#> [679,] "Rhein-Lahn-Kreis" +#> [680,] "Westerwaldkreis" +#> [681,] "Cochem-Zell" +#> [682,] "Rhein-Hunsrück-Kreis" +#> [683,] "Trier" +#> [684,] "Trier, Kreisfreie Stadt" +#> [685,] "Bernkastel-Wittlich" +#> [686,] "Eifelkreis Bitburg-Prüm" +#> [687,] "Vulkaneifel" +#> [688,] "Trier-Saarburg" +#> [689,] "Rheinhessen-Pfalz" +#> [690,] "Frankenthal (Pfalz), Kreisfreie Stadt" +#> [691,] "Kaiserslautern, Kreisfreie Stadt" +#> [692,] "Landau in der Pfalz, Kreisfreie Stadt" +#> [693,] "Ludwigshafen am Rhein, Kreisfreie Stadt" +#> [694,] "Mainz, Kreisfreie Stadt" +#> [695,] "Neustadt an der Weinstraße, Kreisfreie Stadt" +#> [696,] "Pirmasens, Kreisfreie Stadt" +#> [697,] "Speyer, Kreisfreie Stadt" +#> [698,] "Worms, Kreisfreie Stadt" +#> [699,] "Zweibrücken, Kreisfreie Stadt" +#> [700,] "Alzey-Worms" +#> [701,] "Bad Dürkheim" +#> [702,] "Donnersbergkreis" +#> [703,] "Germersheim" +#> [704,] "Kaiserslautern, Landkreis" +#> [705,] "Kusel" +#> [706,] "Südliche Weinstraße" +#> [707,] "Rhein-Pfalz-Kreis" +#> [708,] "Mainz-Bingen" +#> [709,] "Südwestpfalz" +#> [710,] "Rheinland-Pfalz - North" +#> [711,] "Rheinland-Pfalz - South" +#> [712,] "Ahr" +#> [713,] "Mittelrhein" +#> [714,] "Mosel-Saar-Ruwer" +#> [715,] "Nahe" +#> [716,] "Rheinhessen" +#> [717,] "Rhein-Pfalz" +#> [718,] "Saarland" +#> [719,] "Saarland" +#> [720,] "Regionalverband Saarbrücken" +#> [721,] "Merzig-Wadern" +#> [722,] "Neunkirchen" +#> [723,] "Saarlouis" +#> [724,] "Saarpfalz-Kreis" +#> [725,] "St. Wendel" +#> [726,] "Sachsen" +#> [727,] "Chemnitz (NUTS 2006)" +#> [728,] "Chemnitz, Kreisfreie Stadt (NUTS 2006)" +#> [729,] "Plauen, Kreisfreie Stadt (NUTS 2006)" +#> [730,] "Zwickau, Kreisfreie Stadt (NUTS 2006)" +#> [731,] "Annaberg (NUTS 2006)" +#> [732,] "Chemnitzer Land (NUTS 2006)" +#> [733,] "Freiberg (NUTS 2006)" +#> [734,] "Vogtlandkreis (NUTS 2006)" +#> [735,] "Mittlerer Erzgebirgskreis (NUTS 2006)" +#> [736,] "Mittweida (NUTS 2006)" +#> [737,] "Stollberg (NUTS 2006)" +#> [738,] "Aue-Schwarzenberg (NUTS 2006)" +#> [739,] "Zwickauer Land (NUTS 2006)" +#> [740,] "Dresden" +#> [741,] "Dresden, Kreisfreie Stadt" +#> [742,] "Görlitz, Kreisfreie Stadt (NUTS 2006)" +#> [743,] "Hoyerswerda, Kreisfreie Stadt (NUTS 2006)" +#> [744,] "Bautzen (NUTS 2006)" +#> [745,] "Meißen (NUTS 2006)" +#> [746,] "Niederschlesischer Oberlausitzkreis (NUTS 2006)" +#> [747,] "Riesa-Großenhain (NUTS 2006)" +#> [748,] "Löbau-Zittau (NUTS 2006)" +#> [749,] "Sächsische Schweiz (NUTS 2006)" +#> [750,] "Weißeritzkreis (NUTS 2006)" +#> [751,] "Kamenz (NUTS 2006)" +#> [752,] "Bautzen" +#> [753,] "Görlitz" +#> [754,] "Meißen" +#> [755,] "Sächsische Schweiz-Osterzgebirge" +#> [756,] "Leipzig (NUTS 2006)" +#> [757,] "Leipzig, Kreisfreie Stadt (NUTS 2006)" +#> [758,] "Delitzsch (NUTS 2006)" +#> [759,] "Döbeln (NUTS 2006)" +#> [760,] "Leipziger Land (NUTS 2006)" +#> [761,] "Muldentalkreis (NUTS 2006)" +#> [762,] "Torgau-Oschatz (NUTS 2006)" +#> [763,] "Chemnitz" +#> [764,] "Chemnitz, Kreisfreie Stadt" +#> [765,] "Erzgebirgskreis" +#> [766,] "Mittelsachsen" +#> [767,] "Vogtlandkreis" +#> [768,] "Zwickau" +#> [769,] "Leipzig" +#> [770,] "Leipzig, Kreisfreie Stadt" +#> [771,] "Leipzig" +#> [772,] "Nordsachsen" +#> [773,] "Sachsen-Anhalt" +#> [774,] "Sachsen-Anhalt" +#> [775,] "Dessau-Roßlau, Kreisfreie Stadt" +#> [776,] "Halle (Saale), Kreisfreie Stadt" +#> [777,] "Magdeburg, Kreisfreie Stadt" +#> [778,] "Altmarkkreis Salzwedel" +#> [779,] "Anhalt-Bitterfeld" +#> [780,] "Jerichower Land" +#> [781,] "Börde" +#> [782,] "Burgenlandkreis (DE)" +#> [783,] "Harz" +#> [784,] "Mansfeld-Südharz" +#> [785,] "Saalekreis" +#> [786,] "Salzlandkreis" +#> [787,] "Stendal" +#> [788,] "Wittenberg" +#> [789,] "Dessau (NUTS 1999)" +#> [790,] "Dessau, Kreisfreie Stadt (NUTS 2003)" +#> [791,] "Anhalt-Zerbst (NUTS 2003)" +#> [792,] "Bernburg (NUTS 2003)" +#> [793,] "Bitterfeld (NUTS 2003)" +#> [794,] "Köthen (NUTS 2003)" +#> [795,] "Wittenberg (NUTS 2003)" +#> [796,] "Halle (NUTS 2003)" +#> [797,] "Burgenlandkreis (NUTS 2003)" +#> [798,] "Mansfelder Land (NUTS 2003)" +#> [799,] "Merseburg-Querfurt (NUTS 2003)" +#> [800,] "Saalkreis (NUTS 2003)" +#> [801,] "Sangerhausen (NUTS 2003)" +#> [802,] "Weißenfels (NUTS 2003)" +#> [803,] "Magdeburg (NUTS 2003)" +#> [804,] "Aschersleben-Staßfurt (NUTS 2003)" +#> [805,] "Bördekreis (NUTS 2003)" +#> [806,] "Halberstadt (NUTS 2003)" +#> [807,] "Jerichower Land (NUTS 2003)" +#> [808,] "Ohrekreis (NUTS 2003)" +#> [809,] "Stendal (NUTS 2003)" +#> [810,] "Quedlinburg (NUTS 2003)" +#> [811,] "Schönebeck (NUTS 2003)" +#> [812,] "Wernigerode (NUTS 2003)" +#> [813,] "Saale-Unstrut" +#> [814,] "Schleswig-Holstein" +#> [815,] "Schleswig-Holstein" +#> [816,] "Flensburg, Kreisfreie Stadt" +#> [817,] "Kiel, Kreisfreie Stadt" +#> [818,] "Lübeck, Kreisfreie Stadt" +#> [819,] "Neumünster, Kreisfreie Stadt" +#> [820,] "Dithmarschen" +#> [821,] "Herzogtum Lauenburg" +#> [822,] "Nordfriesland" +#> [823,] "Ostholstein" +#> [824,] "Pinneberg" +#> [825,] "Plön" +#> [826,] "Rendsburg-Eckernförde" +#> [827,] "Schleswig-Flensburg" +#> [828,] "Segeberg" +#> [829,] "Steinburg" +#> [830,] "Stormarn" +#> [831,] "Thüringen" +#> [832,] "Thüringen" +#> [833,] "Erfurt, Kreisfreie Stadt" +#> [834,] "Gera, Kreisfreie Stadt" +#> [835,] "Jena, Kreisfreie Stadt" +#> [836,] "Suhl, Kreisfreie Stadt" +#> [837,] "Weimar, Kreisfreie Stadt" +#> [838,] "Eichsfeld" +#> [839,] "Nordhausen" +#> [840,] "Unstrut-Hainich-Kreis" +#> [841,] "Kyffhäuserkreis" +#> [842,] "Schmalkalden-Meiningen" +#> [843,] "Gotha" +#> [844,] "Sömmerda" +#> [845,] "Hildburghausen" +#> [846,] "Ilm-Kreis" +#> [847,] "Weimarer Land" +#> [848,] "Sonneberg" +#> [849,] "Saalfeld-Rudolstadt" +#> [850,] "Saale-Holzland-Kreis" +#> [851,] "Saale-Orla-Kreis" +#> [852,] "Greiz" +#> [853,] "Altenburger Land" +#> [854,] "Eisenach, Kreisfreie Stadt" +#> [855,] "Wartburgkreis" +#> [856,] "Extra-Regio NUTS 1" +#> [857,] "Extra-Regio NUTS 2" +#> [858,] "Extra-Regio NUTS 3" +#> [859,] "Berlin" +#> [860,] "Karlsruhe" +#> [861,] "München" +#> [862,] "Bonn" +#> [863,] "Not regionalised/Unknown NUTS 1" +#> [864,] "Not regionalised/Unknown NUTS 2" +#> [865,] "Not regionalised/Unknown NUTS 3" +#> [866,] "Estonia" +#> [867,] "Eesti" +#> [868,] "Eesti" +#> [869,] "Põhja-Eesti" +#> [870,] "Lääne-Eesti" +#> [871,] "Kesk-Eesti (NUTS 2016)" +#> [872,] "Kirde-Eesti (NUTS 2016)" +#> [873,] "Lõuna-Eesti" +#> [874,] "Kesk-Eesti" +#> [875,] "Kirde-Eesti" +#> [876,] "Extra-Regio NUTS 1" +#> [877,] "Extra-Regio NUTS 2" +#> [878,] "Extra-Regio NUTS 3" +#> [879,] "Tallinn" +#> [880,] "Not regionalised/Unknown NUTS 1" +#> [881,] "Not regionalised/Unknown NUTS 2" +#> [882,] "Not regionalised/Unknown NUTS 3" +#> [883,] "Ireland" +#> [884,] "Éire/Ireland" +#> [885,] "Northern and Western" +#> [886,] "Border" +#> [887,] "West" +#> [888,] "Southern" +#> [889,] "Mid-West" +#> [890,] "South-East (IE)" +#> [891,] "South-West (IE)" +#> [892,] "Eastern and Midland" +#> [893,] "Dublin" +#> [894,] "Mid-East" +#> [895,] "Midland" +#> [896,] "Border, Midland and Western (NUTS 2013)" +#> [897,] "Border (NUTS 2013)" +#> [898,] "Cavan" +#> [899,] "Donegal" +#> [900,] "Leitrim" +#> [901,] "Louth" +#> [902,] "Monaghan" +#> [903,] "Sligo" +#> [904,] "Midland (NUTS 2013)" +#> [905,] "Laois" +#> [906,] "Longford" +#> [907,] "Offaly" +#> [908,] "Westmeath" +#> [909,] "West (NUTS 2013)" +#> [910,] "Galway" +#> [911,] "Mayo" +#> [912,] "Roscommon" +#> [913,] "Southern and Eastern (NUTS 2013)" +#> [914,] "Dublin (NUTS 2013)" +#> [915,] "Mid-East (NUTS 2013)" +#> [916,] "Kildare" +#> [917,] "Meath" +#> [918,] "Wicklow" +#> [919,] "Mid-West (NUTS 2013)" +#> [920,] "Clare" +#> [921,] "Limerick" +#> [922,] "Tipperary North Riding" +#> [923,] "South-East (NUTS 2013)" +#> [924,] "Carlow" +#> [925,] "Kilkenny" +#> [926,] "Tipperary South Riding" +#> [927,] "Waterford" +#> [928,] "Wexford" +#> [929,] "South-West (NUTS 2013)" +#> [930,] "Cork" +#> [931,] "Kerry" +#> [932,] "Extra-Regio NUTS 1" +#> [933,] "Extra-Regio NUTS 2" +#> [934,] "Extra-Regio NUTS 3" +#> [935,] "Dublin" +#> [936,] "Not regionalised/Unknown NUTS 1" +#> [937,] "Not regionalised/Unknown NUTS 2" +#> [938,] "Not regionalised/Unknown NUTS 3" +#> [939,] "Greece" +#> [940,] "Voreia Ellada (NUTS 2010)" +#> [941,] "Anatoliki Makedonia, Thraki (NUTS 2010)" +#> [942,] "Evros (NUTS 2010)" +#> [943,] "Xanthi (NUTS 2010)" +#> [944,] "Rodopi (NUTS 2010)" +#> [945,] "Drama (NUTS 2010)" +#> [946,] "Kavala (NUTS 2010)" +#> [947,] "Kentriki Makedonia (NUTS 2010)" +#> [948,] "Imathia (NUTS 2010)" +#> [949,] "Thessaloniki (NUTS 2010)" +#> [950,] "Kilkis (NUTS 2010)" +#> [951,] "Pella (NUTS 2010)" +#> [952,] "Pieria (NUTS 2010)" +#> [953,] "Serres (NUTS 2010)" +#> [954,] "Chalkidiki (NUTS 2010)" +#> [955,] "Dytiki Makedonia (NUTS 2010)" +#> [956,] "Grevena (NUTS 2010)" +#> [957,] "Kastoria (NUTS 2010)" +#> [958,] "Kozani (NUTS 2010)" +#> [959,] "Florina (NUTS 2010)" +#> [960,] "Thessalia (NUTS 2010)" +#> [961,] "Karditsa (NUTS 2010)" +#> [962,] "Larisa (NUTS 2010)" +#> [963,] "Magnisia (NUTS 2010)" +#> [964,] "Trikala (NUTS 2010)" +#> [965,] "Makedonia" +#> [966,] "Thraki" +#> [967,] "Kentriki Ellada (NUTS 2010)" +#> [968,] "Ipeiros (NUTS 2010)" +#> [969,] "Arta (NUTS 2010)" +#> [970,] "Thesprotia (NUTS 2010)" +#> [971,] "Ioannina (NUTS 2010)" +#> [972,] "Preveza (NUTS 2010)" +#> [973,] "Ionia Nisia (NUTS 2010)" +#> [974,] "Zakynthos (NUTS 2010)" +#> [975,] "Kerkyra (NUTS 2010)" +#> [976,] "Kefallinia (NUTS 2010)" +#> [977,] "Lefkada (NUTS 2010)" +#> [978,] "Dytiki Ellada (NUTS 2010)" +#> [979,] "Aitoloakarnania (NUTS 2010)" +#> [980,] "Achaia (NUTS 2010)" +#> [981,] "Ileia (NUTS 2010)" +#> [982,] "Sterea Ellada (NUTS 2010)" +#> [983,] "Voiotia (NUTS 2010)" +#> [984,] "Evvoia (NUTS 2010)" +#> [985,] "Evrytania (NUTS 2010)" +#> [986,] "Fthiotida (NUTS 2010)" +#> [987,] "Fokida (NUTS 2010)" +#> [988,] "Peloponnisos (NUTS 2010)" +#> [989,] "Argolida (NUTS 2010)" +#> [990,] "Arkadia (NUTS 2010)" +#> [991,] "Korinthia (NUTS 2010)" +#> [992,] "Lakonia (NUTS 2010)" +#> [993,] "Messinia (NUTS 2010)" +#> [994,] "Kentriki Ellada, Attiki" +#> [995,] "Kentriki Ellada, Evvoia" +#> [996,] "Attiki" +#> [997,] "Attiki" +#> [998,] "Attiki (NUTS 2010)" +#> [999,] "Voreios Tomeas Athinon" +#> [1000,] "Dytikos Tomeas Athinon" +#> [1001,] "Kentrikos Tomeas Athinon" +#> [1002,] "Notios Tomeas Athinon" +#> [1003,] "Anatoliki Attiki" +#> [1004,] "Dytiki Attiki" +#> [1005,] "Peiraias, Nisoi" +#> [1006,] "Attiki -East" +#> [1007,] "Pireas" +#> [1008,] "Attiki - West" +#> [1009,] "Nisia Aigaiou, Kriti" +#> [1010,] "Nisia Aigaiou" +#> [1011,] "Voreio Aigaio" +#> [1012,] "Lesvos, Limnos" +#> [1013,] "Ikaria, Samos" +#> [1014,] "Chios" +#> [1015,] "Notio Aigaio" +#> [1016,] "Kalymnos, Karpathos, Kasos, Kos, Rodos" +#> [1017,] "Andros, Thira, Kea, Milos, Mykonos, Naxos, Paros, Syros, Tinos" +#> [1018,] "Kriti" +#> [1019,] "Irakleio" +#> [1020,] "Lasithi" +#> [1021,] "Rethymni" +#> [1022,] "Chania" +#> [1023,] "Voreia Ellada" +#> [1024,] "Anatoliki Makedonia, Thraki" +#> [1025,] "Evros" +#> [1026,] "Xanthi" +#> [1027,] "Rodopi" +#> [1028,] "Drama" +#> [1029,] "Thasos, Kavala" +#> [1030,] "Kentriki Makedonia" +#> [1031,] "Imathia" +#> [1032,] "Thessaloniki" +#> [1033,] "Kilkis" +#> [1034,] "Pella" +#> [1035,] "Pieria" +#> [1036,] "Serres" +#> [1037,] "Chalkidiki" +#> [1038,] "Dytiki Makedonia" +#> [1039,] "Grevena, Kozani" +#> [1040,] "Kastoria" +#> [1041,] "Florina" +#> [1042,] "Ipeiros" +#> [1043,] "Arta, Preveza" +#> [1044,] "Thesprotia" +#> [1045,] "Ioannina" +#> [1046,] "Kentriki Ellada" +#> [1047,] "Thessalia" +#> [1048,] "Karditsa, Trikala" +#> [1049,] "Larisa" +#> [1050,] "Magnisia" +#> [1051,] "Ionia Nisia" +#> [1052,] "Zakynthos" +#> [1053,] "Kerkyra" +#> [1054,] "Ithaki, Kefallinia" +#> [1055,] "Lefkada" +#> [1056,] "Dytiki Ellada" +#> [1057,] "Aitoloakarnania" +#> [1058,] "Achaia" +#> [1059,] "Ileia" +#> [1060,] "Sterea Ellada" +#> [1061,] "Voiotia" +#> [1062,] "Evvoia" +#> [1063,] "Evrytania" +#> [1064,] "Fthiotida" +#> [1065,] "Fokida" +#> [1066,] "Peloponnisos" +#> [1067,] "Argolida, Arkadia" +#> [1068,] "Korinthia" +#> [1069,] "Lakonia, Messinia" +#> [1070,] "Self Governed Region NUTS 1" +#> [1071,] "Self Governed Region NUTS 2" +#> [1072,] "Self Governed Region NUTS 3" +#> [1073,] "Extra-Regio NUTS 1" +#> [1074,] "Extra-Regio NUTS 2" +#> [1075,] "Extra-Regio NUTS 3" +#> [1076,] "Athina" +#> [1077,] "Not regionalised/Unknown NUTS 1" +#> [1078,] "Not regionalised/Unknown NUTS 2" +#> [1079,] "Not regionalised/Unknown NUTS 3" +#> [1080,] "Greece, not allocated" +#> [1081,] "Spain" +#> [1082,] "Noroeste (ES)" +#> [1083,] "Galicia" +#> [1084,] "A Coruña" +#> [1085,] "Lugo" +#> [1086,] "Ourense" +#> [1087,] "Pontevedra" +#> [1088,] "Principado de Asturias" +#> [1089,] "Asturias" +#> [1090,] "Cantabria" +#> [1091,] "Cantabria" +#> [1092,] "Noreste (ES)" +#> [1093,] "País Vasco" +#> [1094,] "Araba/Álava" +#> [1095,] "Gipuzkoa, Bizkaia" +#> [1096,] "Gipuzkoa" +#> [1097,] "Bizkaia" +#> [1098,] "Comunidad Foral de Navarra" +#> [1099,] "Navarra" +#> [1100,] "La Rioja" +#> [1101,] "La Rioja" +#> [1102,] "Aragón" +#> [1103,] "Huesca, Teruel" +#> [1104,] "Huesca" +#> [1105,] "Teruel" +#> [1106,] "Zaragoza" +#> [1107,] "Comunidad de Madrid" +#> [1108,] "Comunidad de Madrid" +#> [1109,] "Madrid" +#> [1110,] "Centro (ES)" +#> [1111,] "Castilla y León" +#> [1112,] "Ávila, Palencia, Salamanca, Segovia, Soria" +#> [1113,] "Ávila" +#> [1114,] "Burgos" +#> [1115,] "León" +#> [1116,] "Palencia" +#> [1117,] "Salamanca" +#> [1118,] "Segovia" +#> [1119,] "Soria" +#> [1120,] "Valladolid" +#> [1121,] "Zamora" +#> [1122,] "Castilla-la Mancha" +#> [1123,] "Albacete" +#> [1124,] "Ciudad Real" +#> [1125,] "Cuenca" +#> [1126,] "Guadalajara" +#> [1127,] "Toledo" +#> [1128,] "Extremadura" +#> [1129,] "Badajoz" +#> [1130,] "Cáceres" +#> [1131,] "Este (ES)" +#> [1132,] "Cataluña" +#> [1133,] "Barcelona" +#> [1134,] "Girona, Lleida" +#> [1135,] "Girona" +#> [1136,] "Lleida" +#> [1137,] "Tarragona" +#> [1138,] "Comunitat Valenciana" +#> [1139,] "Alicante/Alacant" +#> [1140,] "Castellón/Castelló" +#> [1141,] "Valencia/València" +#> [1142,] "Illes Balears" +#> [1143,] "Illes Balears (NUTS 1999)" +#> [1144,] "Eivissa, Formentera" +#> [1145,] "Mallorca" +#> [1146,] "Menorca" +#> [1147,] "Sur (ES)" +#> [1148,] "Andalucía, Ceuta, Melilla" +#> [1149,] "Andalucía" +#> [1150,] "Almería, Granada, Jaén, Sevilla" +#> [1151,] "Almería" +#> [1152,] "Cádiz, Ceuta" +#> [1153,] "Cádiz" +#> [1154,] "Córdoba" +#> [1155,] "Granada" +#> [1156,] "Huelva" +#> [1157,] "Jaén" +#> [1158,] "Málaga, Melilla" +#> [1159,] "Málaga" +#> [1160,] "Sevilla" +#> [1161,] "Región de Murcia" +#> [1162,] "Murcia" +#> [1163,] "Ciudad de Ceuta" +#> [1164,] "Ceuta" +#> [1165,] "Ciudad de Melilla" +#> [1166,] "Melilla" +#> [1167,] "Canarias" +#> [1168,] "Canarias" +#> [1169,] "Las Palmas (NUTS 1999)" +#> [1170,] "Santa Cruz De Tenerife (NUTS 1999)" +#> [1171,] "El Hierro" +#> [1172,] "Fuerteventura" +#> [1173,] "Gran Canaria" +#> [1174,] "La Gomera" +#> [1175,] "La Palma" +#> [1176,] "Lanzarote" +#> [1177,] "Tenerife" +#> [1178,] "Extra-Regio NUTS 1" +#> [1179,] "Extra-Regio NUTS 2" +#> [1180,] "Extra-Regio NUTS 3" +#> [1181,] "Madrid" +#> [1182,] "Not regionalised/Unknown NUTS 1" +#> [1183,] "Not regionalised/Unknown NUTS 2" +#> [1184,] "Not regionalised/Unknown NUTS 3" +#> [1185,] "Spain, not allocated" +#> [1186,] "France" +#> [1187,] "France (metropolitan)" +#> [1188,] "Île de France" +#> [1189,] "Île de France" +#> [1190,] "Paris" +#> [1191,] "Seine-et-Marne" +#> [1192,] "Yvelines" +#> [1193,] "Essonne" +#> [1194,] "Hauts-de-Seine" +#> [1195,] "Seine-Saint-Denis" +#> [1196,] "Val-de-Marne" +#> [1197,] "Val-d'Oise" +#> [1198,] "Centre - Val de Loire" +#> [1199,] "Centre - Val de Loire" +#> [1200,] "Cher" +#> [1201,] "Eure-et-Loir" +#> [1202,] "Indre" +#> [1203,] "Indre-et-Loire" +#> [1204,] "Loir-et-Cher" +#> [1205,] "Loiret" +#> [1206,] "Bourgogne - Franche-Comté" +#> [1207,] "Bourgogne" +#> [1208,] "Côte-d'Or" +#> [1209,] "Nièvre" +#> [1210,] "Saône-et-Loire" +#> [1211,] "Yonne" +#> [1212,] "Franche-Comté" +#> [1213,] "Doubs" +#> [1214,] "Jura" +#> [1215,] "Haute-Saône" +#> [1216,] "Territoire de Belfort" +#> [1217,] "Normandie" +#> [1218,] "Basse-Normandie" +#> [1219,] "Calvados" +#> [1220,] "Manche" +#> [1221,] "Orne" +#> [1222,] "Haute-Normandie" +#> [1223,] "Eure" +#> [1224,] "Seine-Maritime" +#> [1225,] "Hauts-de-France" +#> [1226,] "Nord-Pas-de-Calais" +#> [1227,] "Nord" +#> [1228,] "Pas-de-Calais" +#> [1229,] "Picardie" +#> [1230,] "Aisne" +#> [1231,] "Oise" +#> [1232,] "Somme" +#> [1233,] "Grand Est" +#> [1234,] "Alsace" +#> [1235,] "Bas-Rhin" +#> [1236,] "Haut-Rhin" +#> [1237,] "Champagne-Ardenne" +#> [1238,] "Ardennes" +#> [1239,] "Aube" +#> [1240,] "Marne" +#> [1241,] "Haute-Marne" +#> [1242,] "Lorraine" +#> [1243,] "Meurthe-et-Moselle" +#> [1244,] "Meuse" +#> [1245,] "Moselle" +#> [1246,] "Vosges" +#> [1247,] "Pays-de-la-Loire" +#> [1248,] "Pays-de-la-Loire" +#> [1249,] "Loire-Atlantique" +#> [1250,] "Maine-et-Loire" +#> [1251,] "Mayenne" +#> [1252,] "Sarthe" +#> [1253,] "Vendée" +#> [1254,] "Bretagne" +#> [1255,] "Bretagne" +#> [1256,] "Côtes-d'Armor" +#> [1257,] "Finistère" +#> [1258,] "Ille-et-Vilaine" +#> [1259,] "Morbihan" +#> [1260,] "Nouvelle-Aquitaine" +#> [1261,] "Aquitaine" +#> [1262,] "Dordogne" +#> [1263,] "Gironde" +#> [1264,] "Landes" +#> [1265,] "Lot-et-Garonne" +#> [1266,] "Pyrénées-Atlantiques" +#> [1267,] "Limousin" +#> [1268,] "Corrèze" +#> [1269,] "Creuse" +#> [1270,] "Haute-Vienne" +#> [1271,] "Poitou-Charentes" +#> [1272,] "Charente" +#> [1273,] "Charente-Maritime" +#> [1274,] "Deux-Sèvres" +#> [1275,] "Vienne" +#> [1276,] "Occitanie" +#> [1277,] "Languedoc-Roussillon" +#> [1278,] "Aude" +#> [1279,] "Gard" +#> [1280,] "Hérault" +#> [1281,] "Lozère" +#> [1282,] "Pyrénées-Orientales" +#> [1283,] "Midi-Pyrénées" +#> [1284,] "Ariège" +#> [1285,] "Aveyron" +#> [1286,] "Haute-Garonne" +#> [1287,] "Gers" +#> [1288,] "Lot" +#> [1289,] "Hautes-Pyrénées" +#> [1290,] "Tarn" +#> [1291,] "Tarn-et-Garonne" +#> [1292,] "Auvergne - Rhône-Alpes" +#> [1293,] "Auvergne" +#> [1294,] "Allier" +#> [1295,] "Cantal" +#> [1296,] "Haute-Loire" +#> [1297,] "Puy-de-Dôme" +#> [1298,] "Rhône-Alpes" +#> [1299,] "Ain" +#> [1300,] "Ardèche" +#> [1301,] "Drôme" +#> [1302,] "Isère" +#> [1303,] "Loire" +#> [1304,] "Rhône" +#> [1305,] "Savoie" +#> [1306,] "Haute-Savoie" +#> [1307,] "Provence-Alpes-Côte d'Azur" +#> [1308,] "Provence-Alpes-Côte d'Azur" +#> [1309,] "Alpes-de-Haute-Provence" +#> [1310,] "Hautes-Alpes" +#> [1311,] "Alpes-Maritimes" +#> [1312,] "Bouches-du-Rhône" +#> [1313,] "Var" +#> [1314,] "Vaucluse" +#> [1315,] "Corse" +#> [1316,] "Corse" +#> [1317,] "Corse-du-Sud" +#> [1318,] "Haute-Corse" +#> [1319,] "RUP FR - Régions ultrapériphériques françaises" +#> [1320,] "Guadeloupe" +#> [1321,] "Guadeloupe" +#> [1322,] "Martinique" +#> [1323,] "Martinique" +#> [1324,] "Guyane" +#> [1325,] "Guyane" +#> [1326,] "La Réunion" +#> [1327,] "La Réunion" +#> [1328,] "Mayotte" +#> [1329,] "Mayotte" +#> [1330,] "Bassin Parisien (NUTS 2013)" +#> [1331,] "Champagne-Ardenne (NUTS 2013)" +#> [1332,] "Ardennes (NUTS 2013)" +#> [1333,] "Aube (NUTS 2013)" +#> [1334,] "Marne (NUTS 2013)" +#> [1335,] "Haute-Marne (NUTS 2013)" +#> [1336,] "Picardie (NUTS 2013)" +#> [1337,] "Aisne (NUTS 2013)" +#> [1338,] "Oise (NUTS 2013)" +#> [1339,] "Somme (NUTS 2013)" +#> [1340,] "Haute-Normandie (NUTS 2013)" +#> [1341,] "Eure (NUTS 2013)" +#> [1342,] "Seine-Maritime (NUTS 2013)" +#> [1343,] "Centre (FR) (NUTS 2013)" +#> [1344,] "Cher (NUTS 2013)" +#> [1345,] "Eure-et-Loir (NUTS 2013)" +#> [1346,] "Indre (NUTS 2013)" +#> [1347,] "Indre-et-Loire (NUTS 2013)" +#> [1348,] "Loir-et-Cher (NUTS 2013)" +#> [1349,] "Loiret (NUTS 2013)" +#> [1350,] "Basse-Normandie (NUTS 2013)" +#> [1351,] "Calvados (NUTS 2013)" +#> [1352,] "Manche (NUTS 2013)" +#> [1353,] "Orne (NUTS 2013)" +#> [1354,] "Bourgogne (NUTS 2013)" +#> [1355,] "Côte-d'Or (NUTS 2013)" +#> [1356,] "Nièvre (NUTS 2013)" +#> [1357,] "Saône-et-Loire (NUTS 2013)" +#> [1358,] "Yonne (NUTS 2013)" +#> [1359,] "Nord-Pas-de-Calais (NUTS 2013)" +#> [1360,] "Nord-Pas-de-Calais (NUTS 2013)" +#> [1361,] "Nord (FR) (NUTS 2013)" +#> [1362,] "Pas-de-Calais (NUTS 2013)" +#> [1363,] "Est (FR) (NUTS 2013)" +#> [1364,] "Lorraine (NUTS 2013)" +#> [1365,] "Meurthe-et-Moselle (NUTS 2013)" +#> [1366,] "Meuse (NUTS 2013)" +#> [1367,] "Moselle (NUTS 2013)" +#> [1368,] "Vosges (NUTS 2013)" +#> [1369,] "Alsace (NUTS 2013)" +#> [1370,] "Bas-Rhin (NUTS 2013)" +#> [1371,] "Haut-Rhin (NUTS 2013)" +#> [1372,] "Franche-Comté (NUTS 2013)" +#> [1373,] "Doubs (NUTS 2013)" +#> [1374,] "Jura (NUTS 2013)" +#> [1375,] "Haute-Saône (NUTS 2013)" +#> [1376,] "Territoire de Belfort (NUTS 2013)" +#> [1377,] "Ouest (FR) (NUTS 2013)" +#> [1378,] "Pays de la Loire (NUTS 2013)" +#> [1379,] "Pays-de-la-Loire except Mayenne (NUTS 2013)" +#> [1380,] "Loire-Atlantique (NUTS 2013)" +#> [1381,] "Maine-et-Loire (NUTS 2013)" +#> [1382,] "Mayenne (NUTS 2013)" +#> [1383,] "Sarthe (NUTS 2013)" +#> [1384,] "Vendée (NUTS 2013)" +#> [1385,] "Bretagne (NUTS 2013)" +#> [1386,] "Côtes-d'Armor (NUTS 2013)" +#> [1387,] "Finistère (NUTS 2013)" +#> [1388,] "Ille-et-Vilaine (NUTS 2013)" +#> [1389,] "Morbihan (NUTS 2013)" +#> [1390,] "Poitou-Charentes (NUTS 2013)" +#> [1391,] "Charente (NUTS 2013)" +#> [1392,] "Charente-Maritime (NUTS 2013)" +#> [1393,] "Deux-Sèvres, Vienne (NUTS 2013)" +#> [1394,] "Deux-Sèvres (NUTS 2013)" +#> [1395,] "Vienne (NUTS 2013)" +#> [1396,] "Sud-Ouest (FR) (NUTS 2013)" +#> [1397,] "Aquitaine (NUTS 2013)" +#> [1398,] "Aquitaine except Gironde (NUTS 2013)" +#> [1399,] "Dordogne (NUTS 2013)" +#> [1400,] "Gironde (NUTS 2013)" +#> [1401,] "Landes (NUTS 2013)" +#> [1402,] "Lot-et-Garonne (NUTS 2013)" +#> [1403,] "Pyrénées-Atlantiques (NUTS 2013)" +#> [1404,] "Midi-Pyrénées (NUTS 2013)" +#> [1405,] "Midi-Pyrénées except Gers (NUTS 2013)" +#> [1406,] "Ariège (NUTS 2013)" +#> [1407,] "Aveyron (NUTS 2013)" +#> [1408,] "Haute-Garonne (NUTS 2013)" +#> [1409,] "Gers (NUTS 2013)" +#> [1410,] "Lot (NUTS 2013)" +#> [1411,] "Hautes-Pyrénées (NUTS 2013)" +#> [1412,] "Tarn (NUTS 2013)" +#> [1413,] "Tarn-et-Garonne (NUTS 2013)" +#> [1414,] "Limousin (NUTS 2013)" +#> [1415,] "Corrèze, Haute-Vienne (NUTS 2013)" +#> [1416,] "Corrèze (NUTS 2013)" +#> [1417,] "Creuse (NUTS 2013)" +#> [1418,] "Haute-Vienne (NUTS 2013)" +#> [1419,] "Centre-Est (FR) (NUTS 2013)" +#> [1420,] "Rhône-Alpes (NUTS 2013)" +#> [1421,] "Rhône-Alpes except Ardèche (NUTS 2013)" +#> [1422,] "Ain (NUTS 2013)" +#> [1423,] "Ardèche (NUTS 2013)" +#> [1424,] "Drôme (NUTS 2013)" +#> [1425,] "Isère (NUTS 2013)" +#> [1426,] "Loire (NUTS 2013)" +#> [1427,] "Rhône (NUTS 2013)" +#> [1428,] "Savoie (NUTS 2013)" +#> [1429,] "Haute-Savoie (NUTS 2013)" +#> [1430,] "Auvergne (NUTS 2013)" +#> [1431,] "Allier (NUTS 2013)" +#> [1432,] "Cantal (NUTS 2013)" +#> [1433,] "Haute-Loire (NUTS 2013)" +#> [1434,] "Puy-de-Dôme (NUTS 2013)" +#> [1435,] "Méditerranée (NUTS 2013)" +#> [1436,] "Languedoc-Roussillon (NUTS 2013)" +#> [1437,] "Aude (NUTS 2013)" +#> [1438,] "Gard (NUTS 2013)" +#> [1439,] "Hérault (NUTS 2013)" +#> [1440,] "Lozère (NUTS 2013)" +#> [1441,] "Pyrénées-Orientales (NUTS 2013)" +#> [1442,] "Provence-Alpes-Côte d'Azur (NUTS 2013)" +#> [1443,] "Alpes-de-Haute-Provence, Hautes-Alpes, Alpes-Maritimes (NUTS 2013)" +#> [1444,] "Alpes-de-Haute-Provence (NUTS 2013)" +#> [1445,] "Hautes-Alpes (NUTS 2013)" +#> [1446,] "Alpes-Maritimes (NUTS 2013)" +#> [1447,] "Bouches-du-Rhône (NUTS 2013)" +#> [1448,] "Var (NUTS 2013)" +#> [1449,] "Vaucluse (NUTS 2013)" +#> [1450,] "Corse (NUTS 2013)" +#> [1451,] "Corse-du-Sud (NUTS 2013)" +#> [1452,] "Haute-Corse (NUTS 2013)" +#> [1453,] "Départements d'outre-mer (NUTS 2013)" +#> [1454,] "Guadeloupe (NUTS 2013)" +#> [1455,] "Guadeloupe (NUTS 2013)" +#> [1456,] "Martinique (NUTS 2013)" +#> [1457,] "Martinique (NUTS 2013)" +#> [1458,] "Guyane (NUTS 2013)" +#> [1459,] "Guyane (NUTS 2013)" +#> [1460,] "La Réunion (NUTS 2013)" +#> [1461,] "La Réunion (NUTS 2013)" +#> [1462,] "Mayotte (NUTS 2013)" +#> [1463,] "Mayotte (NUTS 2013)" +#> [1464,] "Départements d'outre-mer (NUTS 2010)" +#> [1465,] "Guadeloupe (NUTS 2010)" +#> [1466,] "Guadeloupe (NUTS 2010)" +#> [1467,] "Martinique (NUTS 2010)" +#> [1468,] "Martinique (NUTS 2010)" +#> [1469,] "Guyane (NUTS 2010)" +#> [1470,] "Guyane (NUTS 2010)" +#> [1471,] "Réunion (NUTS 2010)" +#> [1472,] "Réunion (NUTS 2010)" +#> [1473,] "Mayotte (FR - part of EU as of 01.01.2014)" +#> [1474,] "Extra-Regio NUTS 1" +#> [1475,] "Extra-Regio NUTS 2" +#> [1476,] "Extra-Regio NUTS 3" +#> [1477,] "Paris" +#> [1478,] "Not regionalised/Unknown NUTS 1" +#> [1479,] "Not regionalised/Unknown NUTS 2" +#> [1480,] "Not regionalised/Unknown NUTS 3" +#> [1481,] "France, not allocated" +#> [1482,] "Croatia" +#> [1483,] "Hrvatska" +#> [1484,] "Panonska Hrvatska" +#> [1485,] "Bjelovarsko-bilogorska zupanija" +#> [1486,] "Viroviticko-podravska zupanija" +#> [1487,] "Pozesko-slavonska zupanija" +#> [1488,] "Brodsko-posavska zupanija" +#> [1489,] "Osjecko-baranjska zupanija" +#> [1490,] "Vukovarsko-srijemska zupanija" +#> [1491,] "Karlovacka zupanija" +#> [1492,] "Sisacko-moslavacka zupanija" +#> [1493,] "Jadranska Hrvatska" +#> [1494,] "Primorsko-goranska zupanija" +#> [1495,] "Licko-senjska zupanija" +#> [1496,] "Zadarska zupanija" +#> [1497,] "Sibensko-kninska zupanija" +#> [1498,] "Splitsko-dalmatinska zupanija" +#> [1499,] "Istarska zupanija" +#> [1500,] "Dubrovacko-neretvanska zupanija" +#> [1501,] "Kontinentalna Hrvatska (NUTS 2016)" +#> [1502,] "Grad Zagreb (NUTS 2016)" +#> [1503,] "Zagrebacka zupanija (NUTS 2016)" +#> [1504,] "Krapinsko-zagorska zupanija (NUTS 2016)" +#> [1505,] "Varazdinska zupanija (NUTS 2016)" +#> [1506,] "Koprivnicko-krizevacka zupanija (NUTS 2016)" +#> [1507,] "Medimurska zupanija (NUTS 2016)" +#> [1508,] "Bjelovarsko-bilogorska zupanija (NUTS 2016)" +#> [1509,] "Viroviticko-podravska zupanija (NUTS 2016)" +#> [1510,] "Pozesko-slavonska zupanija (NUTS 2016)" +#> [1511,] "Brodsko-posavska zupanija (NUTS 2016)" +#> [1512,] "Osjecko-baranjska zupanija (NUTS 2016)" +#> [1513,] "Vukovarsko-srijemska zupanija (NUTS 2016)" +#> [1514,] "Karlovacka zupanija (NUTS 2016)" +#> [1515,] "Sisacko-moslavacka zupanija (NUTS 2016)" +#> [1516,] "Grad Zagreb" +#> [1517,] "Grad Zagreb" +#> [1518,] "Sjeverna Hrvatska" +#> [1519,] "Medimurska zupanija" +#> [1520,] "Varazdinska zupanija" +#> [1521,] "Koprivnicko-krizevacka zupanija" +#> [1522,] "Krapinsko-zagorska zupanija" +#> [1523,] "Zagrebacka zupanija" +#> [1524,] "Extra-Regio level 1" +#> [1525,] "Extra-Regio level 2" +#> [1526,] "Extra-Regio level 3" +#> [1527,] "Zagreb" +#> [1528,] "Not regionalised/Unknown NUTS 1" +#> [1529,] "Not regionalised/Unknown NUTS 2" +#> [1530,] "Not regionalised/Unknown NUTS 3" +#> [1531,] "Sjeverozapadna Hrvatska (former statistical region)" +#> [1532,] "Grad Zagreb (former statistical region)" +#> [1533,] "Zagrebacka zupanija (former statistical region)" +#> [1534,] "Krapinsko-zagorska zupanija (former statistical region)" +#> [1535,] "Varazdinska zupanija (former statistical region)" +#> [1536,] "Koprivnicko-krizevacka zupanija (former statistical region)" +#> [1537,] "Medimurska zupanija (former statistical region)" +#> [1538,] "Italy" +#> [1539,] "Nord-Ovest, Nord-Est, Centro (IT) (NUTS 2006)" +#> [1540,] "Nord-Ovest" +#> [1541,] "Piemonte" +#> [1542,] "Torino" +#> [1543,] "Vercelli" +#> [1544,] "Biella" +#> [1545,] "Verbano-Cusio-Ossola" +#> [1546,] "Novara" +#> [1547,] "Cuneo" +#> [1548,] "Asti" +#> [1549,] "Alessandria" +#> [1550,] "Valle d'Aosta/Vallée d'Aoste" +#> [1551,] "Valle d'Aosta/Vallée d'Aoste" +#> [1552,] "Liguria" +#> [1553,] "Imperia" +#> [1554,] "Savona" +#> [1555,] "Genova" +#> [1556,] "La Spezia" +#> [1557,] "Lombardia" +#> [1558,] "Varese" +#> [1559,] "Como" +#> [1560,] "Lecco" +#> [1561,] "Sondrio" +#> [1562,] "Milano (NUTS 2006)" +#> [1563,] "Bergamo" +#> [1564,] "Brescia" +#> [1565,] "Pavia" +#> [1566,] "Lodi" +#> [1567,] "Cremona" +#> [1568,] "Mantova" +#> [1569,] "Milano" +#> [1570,] "Monza e della Brianza" +#> [1571,] "Nord-Est" +#> [1572,] "Provincia Autonoma di Bolzano/Bozen" +#> [1573,] "Bolzano-Bozen" +#> [1574,] "Provincia Autonoma di Trento" +#> [1575,] "Trento" +#> [1576,] "Veneto" +#> [1577,] "Verona" +#> [1578,] "Vicenza" +#> [1579,] "Belluno" +#> [1580,] "Treviso" +#> [1581,] "Venezia" +#> [1582,] "Padova" +#> [1583,] "Rovigo" +#> [1584,] "Friuli-Venezia Giulia" +#> [1585,] "Pordenone" +#> [1586,] "Udine" +#> [1587,] "Gorizia" +#> [1588,] "Trieste" +#> [1589,] "Emilia-Romagna" +#> [1590,] "Piacenza" +#> [1591,] "Parma" +#> [1592,] "Reggio nell'Emilia" +#> [1593,] "Modena" +#> [1594,] "Bologna" +#> [1595,] "Ferrara" +#> [1596,] "Ravenna" +#> [1597,] "Forlì-Cesena" +#> [1598,] "Rimini" +#> [1599,] "Nord-Est (NUTS 2006)" +#> [1600,] "Province Autonome Bolzano/Bozen, Trento (NUTS 2006)" +#> [1601,] "Provincia Autonoma Bolzano/Bozen (NUTS 2006)" +#> [1602,] "Bolzano-Bozen (NUTS 2006)" +#> [1603,] "Provincia Autonoma Trento (NUTS 2006)" +#> [1604,] "Trento (NUTS 2006)" +#> [1605,] "Veneto (NUTS 2006)" +#> [1606,] "Verona (NUTS 2006)" +#> [1607,] "Vicenza (NUTS 2006)" +#> [1608,] "Belluno (NUTS 2006)" +#> [1609,] "Treviso (NUTS 2006)" +#> [1610,] "Venezia (NUTS 2006)" +#> [1611,] "Padova (NUTS 2006)" +#> [1612,] "Rovigo (NUTS 2006)" +#> [1613,] "Friuli-Venezia Giulia (NUTS 2006)" +#> [1614,] "Pordenone (NUTS 2006)" +#> [1615,] "Udine (NUTS 2006)" +#> [1616,] "Gorizia (NUTS 2006)" +#> [1617,] "Trieste (NUTS 2006)" +#> [1618,] "Emilia-Romagna (NUTS 2006)" +#> [1619,] "Piacenza (NUTS 2006)" +#> [1620,] "Parma (NUTS 2006)" +#> [1621,] "Reggio nell'Emilia (NUTS 2006)" +#> [1622,] "Modena (NUTS 2006)" +#> [1623,] "Bologna (NUTS 2006)" +#> [1624,] "Ferrara (NUTS 2006)" +#> [1625,] "Ravenna (NUTS 2006)" +#> [1626,] "Forlì-Cesena (NUTS 2006)" +#> [1627,] "Rimini (NUTS 2006)" +#> [1628,] "Centro (IT)" +#> [1629,] "Toscana" +#> [1630,] "Massa-Carrara" +#> [1631,] "Lucca" +#> [1632,] "Pistoia" +#> [1633,] "Firenze" +#> [1634,] "Prato" +#> [1635,] "Livorno" +#> [1636,] "Pisa" +#> [1637,] "Arezzo" +#> [1638,] "Siena" +#> [1639,] "Grosseto" +#> [1640,] "Umbria" +#> [1641,] "Perugia" +#> [1642,] "Terni" +#> [1643,] "Marche" +#> [1644,] "Pesaro e Urbino" +#> [1645,] "Ancona" +#> [1646,] "Macerata" +#> [1647,] "Ascoli Piceno" +#> [1648,] "Fermo" +#> [1649,] "Lazio" +#> [1650,] "Viterbo" +#> [1651,] "Rieti" +#> [1652,] "Roma" +#> [1653,] "Latina" +#> [1654,] "Frosinone" +#> [1655,] "Centro (I) (NUTS 2006)" +#> [1656,] "Toscana (NUTS 2006)" +#> [1657,] "Massa-Carrara (NUTS 2006)" +#> [1658,] "Lucca (NUTS 2006)" +#> [1659,] "Pistoia (NUTS 2006)" +#> [1660,] "Firenze (NUTS 2006)" +#> [1661,] "Prato (NUTS 2006)" +#> [1662,] "Livorno (NUTS 2006)" +#> [1663,] "Pisa (NUTS 2006)" +#> [1664,] "Arezzo (NUTS 2006)" +#> [1665,] "Siena (NUTS 2006)" +#> [1666,] "Grosseto (NUTS 2006)" +#> [1667,] "Umbria (NUTS 2006)" +#> [1668,] "Perugia (NUTS 2006)" +#> [1669,] "Terni (NUTS 2006)" +#> [1670,] "Marche (NUTS 2006)" +#> [1671,] "Pesaro e Urbino (NUTS 2006)" +#> [1672,] "Ancona (NUTS 2006)" +#> [1673,] "Macerata (NUTS 2006)" +#> [1674,] "Ascoli Piceno (NUTS 2006)" +#> [1675,] "Lazio (NUTS 2006)" +#> [1676,] "Viterbo (NUTS 2006)" +#> [1677,] "Rieti (NUTS 2006)" +#> [1678,] "Roma (NUTS 2006)" +#> [1679,] "Latina (NUTS 2006)" +#> [1680,] "Frosinone (NUTS 2006)" +#> [1681,] "Sud, Isole" +#> [1682,] "Sud" +#> [1683,] "Abruzzo" +#> [1684,] "L'Aquila" +#> [1685,] "Teramo" +#> [1686,] "Pescara" +#> [1687,] "Chieti" +#> [1688,] "Molise" +#> [1689,] "Isernia" +#> [1690,] "Campobasso" +#> [1691,] "Campania" +#> [1692,] "Caserta" +#> [1693,] "Benevento" +#> [1694,] "Napoli" +#> [1695,] "Avellino" +#> [1696,] "Salerno" +#> [1697,] "Puglia" +#> [1698,] "Foggia (NUTS 2006)" +#> [1699,] "Bari (NUTS 2006)" +#> [1700,] "Taranto" +#> [1701,] "Brindisi" +#> [1702,] "Lecce" +#> [1703,] "Foggia" +#> [1704,] "Bari" +#> [1705,] "Barletta-Andria-Trani" +#> [1706,] "Basilicata" +#> [1707,] "Potenza" +#> [1708,] "Matera" +#> [1709,] "Calabria" +#> [1710,] "Cosenza" +#> [1711,] "Crotone" +#> [1712,] "Catanzaro" +#> [1713,] "Vibo Valentia" +#> [1714,] "Reggio di Calabria" +#> [1715,] "Isole" +#> [1716,] "Sicilia" +#> [1717,] "Trapani" +#> [1718,] "Palermo" +#> [1719,] "Messina" +#> [1720,] "Agrigento" +#> [1721,] "Caltanissetta" +#> [1722,] "Enna" +#> [1723,] "Catania" +#> [1724,] "Ragusa" +#> [1725,] "Siracusa" +#> [1726,] "Sardegna" +#> [1727,] "Sassari (NUTS 2003)" +#> [1728,] "Nuoro (NUTS 2003)" +#> [1729,] "Oristano (NUTS 2003)" +#> [1730,] "Cagliari (NUTS 2003)" +#> [1731,] "Sassari (NUTS 2016)" +#> [1732,] "Nuoro (NUTS 2016)" +#> [1733,] "Cagliari (NUTS 2016)" +#> [1734,] "Oristano (NUTS 2016)" +#> [1735,] "Olbia-Tempio (NUTS 2016)" +#> [1736,] "Ogliastra (NUTS 2016)" +#> [1737,] "Medio Campidano (NUTS 2016)" +#> [1738,] "Carbonia-Iglesias (NUTS 2016)" +#> [1739,] "Sassari" +#> [1740,] "Nuoro" +#> [1741,] "Cagliari" +#> [1742,] "Oristano" +#> [1743,] "Sud Sardegna" +#> [1744,] "Extra-Regio NUTS 1" +#> [1745,] "Extra-Regio NUTS 2" +#> [1746,] "Extra-Regio NUTS 3" +#> [1747,] "Roma" +#> [1748,] "Varese" +#> [1749,] "Not regionalised/Unknown NUTS 1" +#> [1750,] "Not regionalised/Unknown NUTS 2" +#> [1751,] "Not regionalised/Unknown NUTS 3" +#> [1752,] "Italy, not allocated" +#> [1753,] "Cyprus" +#> [1754,] "Kypros" +#> [1755,] "Kypros" +#> [1756,] "Kypros" +#> [1757,] "Extra-Regio NUTS 1" +#> [1758,] "Extra-Regio NUTS 2" +#> [1759,] "Extra-Regio NUTS 3" +#> [1760,] "Lefkosia" +#> [1761,] "Not regionalised/Unknown NUTS 1" +#> [1762,] "Not regionalised/Unknown NUTS 2" +#> [1763,] "Not regionalised/Unknown NUTS 3" +#> [1764,] "Latvia" +#> [1765,] "Latvija" +#> [1766,] "Latvija" +#> [1767,] "Riga (statistical region 2001)" +#> [1768,] "Vidzeme (statistical region 2001)" +#> [1769,] "Kurzeme" +#> [1770,] "Zemgale (statistical region 2001)" +#> [1771,] "Latgale" +#> [1772,] "Riga" +#> [1773,] "Pieriga" +#> [1774,] "Vidzeme" +#> [1775,] "Zemgale" +#> [1776,] "Extra-Regio NUTS 1" +#> [1777,] "Extra-Regio NUTS 2" +#> [1778,] "Extra-Regio NUTS 3" +#> [1779,] "Riga" +#> [1780,] "Not regionalised/Unknown NUTS 1" +#> [1781,] "Not regionalised/Unknown NUTS 2" +#> [1782,] "Not regionalised/Unknown NUTS 3" +#> [1783,] "Lithuania" +#> [1784,] "Lietuva" +#> [1785,] "Sostines regionas" +#> [1786,] "Vilniaus apskritis" +#> [1787,] "Vidurio ir vakaru Lietuvos regionas" +#> [1788,] "Alytaus apskritis" +#> [1789,] "Kauno apskritis" +#> [1790,] "Klaipedos apskritis" +#> [1791,] "Marijampoles apskritis" +#> [1792,] "Panevezio apskritis" +#> [1793,] "Siauliu apskritis" +#> [1794,] "Taurages apskritis" +#> [1795,] "Telsiu apskritis" +#> [1796,] "Utenos apskritis" +#> [1797,] "Lietuva (NUTS 2013)" +#> [1798,] "Alytaus apskritis (NUTS 2013)" +#> [1799,] "Kauno apskritis (NUTS 2013)" +#> [1800,] "Klaipedos apskritis (NUTS 2013)" +#> [1801,] "Marijampoles apskritis (NUTS 2013)" +#> [1802,] "Panevezio apskritis (NUTS 2013)" +#> [1803,] "Siauliu apskritis (NUTS 2013)" +#> [1804,] "Taurages apskritis (NUTS 2013)" +#> [1805,] "Telsiu apskritis (NUTS 2013)" +#> [1806,] "Utenos apskritis (NUTS 2013)" +#> [1807,] "Vilniaus apskritis (NUTS 2013)" +#> [1808,] "Extra-Regio NUTS 1" +#> [1809,] "Extra-Regio NUTS 2" +#> [1810,] "Extra-Regio NUTS 3" +#> [1811,] "Vilnius" +#> [1812,] "Not regionalised/Unknown NUTS 1" +#> [1813,] "Not regionalised/Unknown NUTS 2" +#> [1814,] "Not regionalised/Unknown NUTS 3" +#> [1815,] "Luxembourg" +#> [1816,] "Luxembourg" +#> [1817,] "Luxembourg" +#> [1818,] "Luxembourg" +#> [1819,] "Extra-Regio NUTS 1" +#> [1820,] "Extra-Regio NUTS 2" +#> [1821,] "Extra-Regio NUTS 3" +#> [1822,] "Luxembourg" +#> [1823,] "Not regionalised/Unknown NUTS 1" +#> [1824,] "Not regionalised/Unknown NUTS 2" +#> [1825,] "Not regionalised/Unknown NUTS 3" +#> [1826,] "Hungary" +#> [1827,] "Közép-Magyarország" +#> [1828,] "Budapest" +#> [1829,] "Budapest" +#> [1830,] "Pest" +#> [1831,] "Pest" +#> [1832,] "Közép-Magyarország (NUTS 2013)" +#> [1833,] "Budapest (NUTS 2013)" +#> [1834,] "Pest (NUTS 2013)" +#> [1835,] "Dunántúl" +#> [1836,] "Közép-Dunántúl" +#> [1837,] "Fejér" +#> [1838,] "Komárom-Esztergom" +#> [1839,] "Veszprém" +#> [1840,] "Nyugat-Dunántúl" +#> [1841,] "Gyor-Moson-Sopron" +#> [1842,] "Vas" +#> [1843,] "Zala" +#> [1844,] "Dél-Dunántúl" +#> [1845,] "Baranya" +#> [1846,] "Somogy" +#> [1847,] "Tolna" +#> [1848,] "Alföld és Észak" +#> [1849,] "Észak-Magyarország" +#> [1850,] "Borsod-Abaúj-Zemplén" +#> [1851,] "Heves" +#> [1852,] "Nógrád" +#> [1853,] "Észak-Alföld" +#> [1854,] "Hajdú-Bihar" +#> [1855,] "Jász-Nagykun-Szolnok" +#> [1856,] "Szabolcs-Szatmár-Bereg" +#> [1857,] "Dél-Alföld" +#> [1858,] "Bács-Kiskun" +#> [1859,] "Békés" +#> [1860,] "Csongrád" +#> [1861,] "Extra-Regio NUTS 1" +#> [1862,] "Extra-Regio NUTS 2" +#> [1863,] "Extra-Regio NUTS 3" +#> [1864,] "Budapest" +#> [1865,] "Not regionalised/Unknown NUTS 1" +#> [1866,] "Not regionalised/Unknown NUTS 2" +#> [1867,] "Not regionalised/Unknown NUTS 3" +#> [1868,] "Alföld" +#> [1869,] "Észak-Dunántúl" +#> [1870,] "Malta" +#> [1871,] "Malta" +#> [1872,] "Malta" +#> [1873,] "Malta" +#> [1874,] "Gozo and Comino/Ghawdex u Kemmuna" +#> [1875,] "Extra-Regio NUTS 1" +#> [1876,] "Extra-Regio NUTS 2" +#> [1877,] "Extra-Regio NUTS 3" +#> [1878,] "Valletta" +#> [1879,] "Not regionalised/Unknown NUTS 1" +#> [1880,] "Not regionalised/Unknown NUTS 2" +#> [1881,] "Not regionalised/Unknown NUTS 3" +#> [1882,] "Netherlands" +#> [1883,] "Noord-Nederland" +#> [1884,] "Groningen" +#> [1885,] "Oost-Groningen" +#> [1886,] "Delfzijl en omgeving" +#> [1887,] "Overig Groningen" +#> [1888,] "Friesland (NL)" +#> [1889,] "Noord-Friesland (NUTS 2013)" +#> [1890,] "Zuidwest-Friesland (NUTS 2013)" +#> [1891,] "Zuidoost-Friesland (NUTS 2013)" +#> [1892,] "Noord-Friesland" +#> [1893,] "Zuidwest-Friesland" +#> [1894,] "Zuidoost-Friesland" +#> [1895,] "Drenthe" +#> [1896,] "Noord-Drenthe" +#> [1897,] "Zuidoost-Drenthe" +#> [1898,] "Zuidwest-Drenthe" +#> [1899,] "Oost-Nederland" +#> [1900,] "Overijssel" +#> [1901,] "Noord-Overijssel" +#> [1902,] "Zuidwest-Overijssel" +#> [1903,] "Twente" +#> [1904,] "Gelderland" +#> [1905,] "Veluwe" +#> [1906,] "Achterhoek (NUTS 2003)" +#> [1907,] "Arnhem/Nijmegen (NUTS 2003)" +#> [1908,] "Zuidwest-Gelderland" +#> [1909,] "Achterhoek" +#> [1910,] "Arnhem/Nijmegen" +#> [1911,] "Flevoland" +#> [1912,] "Flevoland" +#> [1913,] "West-Nederland" +#> [1914,] "Utrecht" +#> [1915,] "Utrecht" +#> [1916,] "Noord-Holland" +#> [1917,] "Kop van Noord-Holland" +#> [1918,] "Alkmaar en omgeving (NUTS 2013)" +#> [1919,] "IJmond" +#> [1920,] "Agglomeratie Haarlem" +#> [1921,] "Zaanstreek" +#> [1922,] "Groot-Amsterdam (NUTS 2013)" +#> [1923,] "Het Gooi en Vechtstreek" +#> [1924,] "Alkmaar en omgeving" +#> [1925,] "Groot-Amsterdam" +#> [1926,] "Zuid-Holland" +#> [1927,] "Agglomeratie Leiden en Bollenstreek (NUTS 2006)" +#> [1928,] "Agglomeratie 's-Gravenhage" +#> [1929,] "Delft en Westland" +#> [1930,] "Oost-Zuid-Holland (NUTS 2006)" +#> [1931,] "Groot-Rijnmond (NUTS 2006)" +#> [1932,] "Zuidoost-Zuid-Holland (NUTS 2006)" +#> [1933,] "Agglomeratie Leiden en Bollenstreek" +#> [1934,] "Oost-Zuid-Holland (NUTS 2013)" +#> [1935,] "Groot-Rijnmond (NUTS 2013)" +#> [1936,] "Zuidoost-Zuid-Holland" +#> [1937,] "Oost-Zuid-Holland" +#> [1938,] "Groot-Rijnmond" +#> [1939,] "Zeeland" +#> [1940,] "Zeeuwsch-Vlaanderen" +#> [1941,] "Overig Zeeland" +#> [1942,] "Zuid-Nederland" +#> [1943,] "Noord-Brabant" +#> [1944,] "West-Noord-Brabant" +#> [1945,] "Midden-Noord-Brabant" +#> [1946,] "Noordoost-Noord-Brabant" +#> [1947,] "Zuidoost-Noord-Brabant" +#> [1948,] "Limburg (NL)" +#> [1949,] "Noord-Limburg" +#> [1950,] "Midden-Limburg" +#> [1951,] "Zuid-Limburg" +#> [1952,] "Extra-Regio NUTS 1" +#> [1953,] "Extra-Regio NUTS 2" +#> [1954,] "Extra-Regio NUTS 3" +#> [1955,] "Zuidwest" +#> [1956,] "Rijnmond" +#> [1957,] "Noordzeekanaalgebied" +#> [1958,] "Amsterdam" +#> [1959,] "Not regionalised/Unknown NUTS 1" +#> [1960,] "Not regionalised/Unknown NUTS 2" +#> [1961,] "Not regionalised/Unknown NUTS 3" +#> [1962,] "Netherlands, not allocated" +#> [1963,] "Austria" +#> [1964,] "Ostösterreich" +#> [1965,] "Burgenland (AT)" +#> [1966,] "Mittelburgenland" +#> [1967,] "Nordburgenland" +#> [1968,] "Südburgenland" +#> [1969,] "Niederösterreich" +#> [1970,] "Mostviertel-Eisenwurzen" +#> [1971,] "Niederösterreich-Süd" +#> [1972,] "Sankt Pölten" +#> [1973,] "Waldviertel" +#> [1974,] "Weinviertel" +#> [1975,] "Wiener Umland/Nordteil" +#> [1976,] "Wiener Umland/Südteil" +#> [1977,] "Wien and other Bundesländer" +#> [1978,] "Wien, Oberösterreich, Tirol" +#> [1979,] "Wien" +#> [1980,] "Wien" +#> [1981,] "Südösterreich" +#> [1982,] "Kärnten" +#> [1983,] "Klagenfurt-Villach" +#> [1984,] "Oberkärnten" +#> [1985,] "Unterkärnten" +#> [1986,] "Steiermark" +#> [1987,] "Graz" +#> [1988,] "Liezen" +#> [1989,] "Östliche Obersteiermark" +#> [1990,] "Oststeiermark" +#> [1991,] "West- und Südsteiermark" +#> [1992,] "Westliche Obersteiermark" +#> [1993,] "Westösterreich" +#> [1994,] "Oberösterreich" +#> [1995,] "Innviertel" +#> [1996,] "Linz-Wels" +#> [1997,] "Mühlviertel" +#> [1998,] "Steyr-Kirchdorf" +#> [1999,] "Traunviertel" +#> [2000,] "Salzburg" +#> [2001,] "Lungau" +#> [2002,] "Pinzgau-Pongau" +#> [2003,] "Salzburg und Umgebung" +#> [2004,] "Tirol" +#> [2005,] "Außerfern" +#> [2006,] "Innsbruck" +#> [2007,] "Osttirol" +#> [2008,] "Tiroler Oberland" +#> [2009,] "Tiroler Unterland" +#> [2010,] "Vorarlberg" +#> [2011,] "Bludenz-Bregenzer Wald" +#> [2012,] "Rheintal-Bodenseegebiet" +#> [2013,] "Extra-Regio NUTS 1" +#> [2014,] "Extra-Regio NUTS 2" +#> [2015,] "Extra-Regio NUTS 3" +#> [2016,] "Wien" +#> [2017,] "Not regionalised/Unknown NUTS 1" +#> [2018,] "Not regionalised/Unknown NUTS 2" +#> [2019,] "Not regionalised/Unknown NUTS 3" +#> [2020,] "Poland" +#> [2021,] "Region Centralny (NUTS 2013)" +#> [2022,] "Lódzkie (NUTS 2013)" +#> [2023,] "Lódzki (NUTS 2003)" +#> [2024,] "Piotrkowsko-skierniewicki (NUTS 2003)" +#> [2025,] "Miasto Lódz (NUTS 2013)" +#> [2026,] "Lódzki (NUTS 2013)" +#> [2027,] "Piotrkowski (NUTS 2013)" +#> [2028,] "Sieradzki (NUTS 2013)" +#> [2029,] "Skierniewicki (NUTS 2013)" +#> [2030,] "Mazowieckie (NUTS 2013)" +#> [2031,] "Ciechanowsko-plocki (NUTS 2010)" +#> [2032,] "Ostrolecko-siedlecki (NUTS 2010)" +#> [2033,] "Radomski (NUTS 2003)" +#> [2034,] "Warszawski (NUTS 2003)" +#> [2035,] "Miasto Warszawa (NUTS 2013)" +#> [2036,] "Radomski (NUTS 2013)" +#> [2037,] "Warszawski wschodni (NUTS 2013)" +#> [2038,] "Warszawski zachodni (NUTS 2013)" +#> [2039,] "Ciechanowski (NUTS 2013)" +#> [2040,] "Plocki (NUTS 2013)" +#> [2041,] "Ostrolecki (NUTS 2013)" +#> [2042,] "Siedlecki (NUTS 2013)" +#> [2043,] "Makroregion Poludniowy" +#> [2044,] "Malopolskie" +#> [2045,] "Krakowsko-tarnowski (NUTS 2003)" +#> [2046,] "Nowosadecki (NUTS 2003)" +#> [2047,] "Miasto Kraków" +#> [2048,] "Krakowski" +#> [2049,] "Nowosadecki (NUTS 2010)" +#> [2050,] "Oswiecimski (NUTS 2010)" +#> [2051,] "Tarnowski" +#> [2052,] "Nowosadecki" +#> [2053,] "Nowotarski" +#> [2054,] "Oswiecimski" +#> [2055,] "Slaskie" +#> [2056,] "Czestochowski" +#> [2057,] "Bielski" +#> [2058,] "Centralny slaski (NUTS 2003)" +#> [2059,] "Rybnicki" +#> [2060,] "Bytomski" +#> [2061,] "Gliwicki" +#> [2062,] "Katowicki" +#> [2063,] "Sosnowiecki" +#> [2064,] "Tyski" +#> [2065,] "Region Wschodni (NUTS 2013)" +#> [2066,] "Lubelskie (NUTS 2013)" +#> [2067,] "Bialski (NUTS 2013)" +#> [2068,] "Chelmsko-zamojski (NUTS 2013)" +#> [2069,] "Lubelski (NUTS 2003)" +#> [2070,] "Lubelski (NUTS 2013)" +#> [2071,] "Pulawski (NUTS 2013)" +#> [2072,] "Podkarpackie (NUTS 2013)" +#> [2073,] "Rzeszowsko-tarnobrzeski (NUTS 2003)" +#> [2074,] "Krosniensko-przemyski (NUTS 2003)" +#> [2075,] "Krosnienski (NUTS 2013)" +#> [2076,] "Przemyski (NUTS 2013)" +#> [2077,] "Rzeszowski (NUTS 2013)" +#> [2078,] "Tarnobrzeski (NUTS 2013)" +#> [2079,] "Swietokrzyskie (NUTS 2013)" +#> [2080,] "Swietokrzyski (NUTS 2003)" +#> [2081,] "Kielecki (NUTS 2013)" +#> [2082,] "Sandomiersko-jedrzejowski (NUTS 2013)" +#> [2083,] "Podlaskie (NUTS 2013)" +#> [2084,] "Bialostocko-suwalski (NUTS 2003)" +#> [2085,] "Lomzynski (NUTS 2003)" +#> [2086,] "Bialostocki (NUTS 2013)" +#> [2087,] "Lomzynski (NUTS 2013)" +#> [2088,] "Suwalski (NUTS 2013)" +#> [2089,] "Makroregion Pólnocno-Zachodni" +#> [2090,] "Wielkopolskie" +#> [2091,] "Pilski" +#> [2092,] "Poznanski (NUTS 2003)" +#> [2093,] "Kaliski (NUTS 2003)" +#> [2094,] "Koninski" +#> [2095,] "Miasto Poznan" +#> [2096,] "Kaliski" +#> [2097,] "Leszczynski" +#> [2098,] "Poznanski" +#> [2099,] "Zachodniopomorskie" +#> [2100,] "Szczecinski (NUTS 2003)" +#> [2101,] "Koszalinski (NUTS 2010)" +#> [2102,] "Stargardzki (NUTS 2010)" +#> [2103,] "Miasto Szczecin" +#> [2104,] "Szczecinski (NUTS 2010)" +#> [2105,] "Koszalinski" +#> [2106,] "Szczecinecko-pyrzycki" +#> [2107,] "Szczecinski" +#> [2108,] "Lubuskie" +#> [2109,] "Gorzowski" +#> [2110,] "Zielonogórski" +#> [2111,] "Makroregion Poludniowo-Zachodni" +#> [2112,] "Dolnoslaskie" +#> [2113,] "Jeleniogórsko-walbrzyski (NUTS 2003)" +#> [2114,] "Legnicki (NUTS 2003)" +#> [2115,] "Wroclawski (NUTS 2003)" +#> [2116,] "Miasto Wroclaw" +#> [2117,] "Jeleniogórski" +#> [2118,] "Legnicko-Glogowski" +#> [2119,] "Walbrzyski" +#> [2120,] "Wroclawski" +#> [2121,] "Opolskie" +#> [2122,] "Opolski (NUTS 2003)" +#> [2123,] "Nyski (NUTS 2010)" +#> [2124,] "Opolski (NUTS 2010)" +#> [2125,] "Nyski" +#> [2126,] "Opolski" +#> [2127,] "Makroregion Pólnocny" +#> [2128,] "Kujawsko-Pomorskie" +#> [2129,] "Bydgoski (NUTS 2003)" +#> [2130,] "Torunsko-wloclawski (NUTS 2003)" +#> [2131,] "Bydgosko-Torunski" +#> [2132,] "Grudziadzki (NUTS 2010)" +#> [2133,] "Wloclawski (NUTS 2010)" +#> [2134,] "Grudziadzki" +#> [2135,] "Inowroclawski" +#> [2136,] "Swiecki" +#> [2137,] "Wloclawski" +#> [2138,] "Warminsko-Mazurskie" +#> [2139,] "Elblaski" +#> [2140,] "Olsztynski" +#> [2141,] "Elcki" +#> [2142,] "Pomorskie" +#> [2143,] "Slupski (NUTS 2010)" +#> [2144,] "Gdanski (NUTS 2003)" +#> [2145,] "Trojmiejski" +#> [2146,] "Gdanski" +#> [2147,] "Starogardzki (NUTS 2010)" +#> [2148,] "Slupski" +#> [2149,] "Chojnicki" +#> [2150,] "Starogardzki" +#> [2151,] "Makroregion Centralny" +#> [2152,] "Lódzkie" +#> [2153,] "Miasto Lódz" +#> [2154,] "Lódzki" +#> [2155,] "Piotrkowski" +#> [2156,] "Sieradzki" +#> [2157,] "Skierniewicki" +#> [2158,] "Swietokrzyskie" +#> [2159,] "Kielecki" +#> [2160,] "Sandomiersko-jedrzejowski" +#> [2161,] "Makroregion Wschodni" +#> [2162,] "Lubelskie" +#> [2163,] "Bialski" +#> [2164,] "Chelmsko-zamojski" +#> [2165,] "Lubelski" +#> [2166,] "Pulawski" +#> [2167,] "Podkarpackie" +#> [2168,] "Krosnienski" +#> [2169,] "Przemyski" +#> [2170,] "Rzeszowski" +#> [2171,] "Tarnobrzeski" +#> [2172,] "Podlaskie" +#> [2173,] "Bialostocki" +#> [2174,] "Lomzynski" +#> [2175,] "Suwalski" +#> [2176,] "Makroregion Województwo Mazowieckie" +#> [2177,] "Warszawski stoleczny" +#> [2178,] "Miasto Warszawa" +#> [2179,] "Warszawski wschodni" +#> [2180,] "Warszawski zachodni" +#> [2181,] "Mazowiecki regionalny" +#> [2182,] "Radomski" +#> [2183,] "Ciechanowski" +#> [2184,] "Plocki" +#> [2185,] "Ostrolecki" +#> [2186,] "Siedlecki" +#> [2187,] "Zyrardowski" +#> [2188,] "Dolnoslaskie (statistical region 2001)" +#> [2189,] "Kujawsko-Pomorskie (statistical region 2001)" +#> [2190,] "Lubelskie (statistical region 2001)" +#> [2191,] "Lubuskie (statistical region 2001)" +#> [2192,] "Lódzkie (statistical region 2001)" +#> [2193,] "Malopolskie (statistical region 2001)" +#> [2194,] "Mazowieckie (statistical region 2001)" +#> [2195,] "Opolskie (statistical region 2001)" +#> [2196,] "Podkarpackie (statistical region 2001)" +#> [2197,] "Podlaskie (statistical region 2001)" +#> [2198,] "Pomorskie (statistical region 2001)" +#> [2199,] "Slaskie (statistical region 2001)" +#> [2200,] "Swietokrzyskie (statistical region 2001)" +#> [2201,] "Warminsko-Mazurskie (statistical region 2001)" +#> [2202,] "Wielkopolskie (statistical region 2001)" +#> [2203,] "Zachodniopomorskie (statistical region 2001)" +#> [2204,] "Extra-Regio NUTS 1" +#> [2205,] "Extra-Regio NUTS 2" +#> [2206,] "Extra-Regio NUTS 3" +#> [2207,] "Warszawa" +#> [2208,] "Not regionalised/Unknown NUTS 1" +#> [2209,] "Not regionalised/Unknown NUTS 2" +#> [2210,] "Not regionalised/Unknown NUTS 3" +#> [2211,] "Portugal" +#> [2212,] "Continente" +#> [2213,] "Norte" +#> [2214,] "Alto Minho" +#> [2215,] "Cávado" +#> [2216,] "Ave (NUTS 2010)" +#> [2217,] "Grande Porto (NUTS 2010)" +#> [2218,] "Tâmega (NUTS 2010)" +#> [2219,] "Entre Douro e Vouga (NUTS 2010)" +#> [2220,] "Douro (NUTS 2010)" +#> [2221,] "Alto Trás-os-Montes (NUTS 2010)" +#> [2222,] "Ave" +#> [2223,] "Área Metropolitana do Porto" +#> [2224,] "Alto Tâmega" +#> [2225,] "Tâmega e Sousa" +#> [2226,] "Douro" +#> [2227,] "Terras de Trás-os-Montes" +#> [2228,] "Entre Douro e Minho" +#> [2229,] "Centro (PT) (NUTS 1995)" +#> [2230,] "Beira Litoral" +#> [2231,] "Beira Interior" +#> [2232,] "Lisboa e Vale do Tejo (NUTS 1995)" +#> [2233,] "Lisboa" +#> [2234,] "Ribatejo e Oeste" +#> [2235,] "Alentejo (NUTS 1995)" +#> [2236,] "Algarve" +#> [2237,] "Algarve" +#> [2238,] "Centro (PT)" +#> [2239,] "Baixo Vouga (NUTS 2010)" +#> [2240,] "Baixo Mondego (NUTS 2010)" +#> [2241,] "Pinhal Litoral (NUTS 2010)" +#> [2242,] "Pinhal Interior Norte (NUTS 2010)" +#> [2243,] "Dão-Lafões (NUTS 2010)" +#> [2244,] "Pinhal Interior Sul (NUTS 2010)" +#> [2245,] "Serra da Estrela (NUTS 2010)" +#> [2246,] "Beira Interior Norte (NUTS 2010)" +#> [2247,] "Beira Interior Sul (NUTS 2010)" +#> [2248,] "Cova da Beira (NUTS 2010)" +#> [2249,] "Oeste" +#> [2250,] "Médio Tejo (NUTS 2010)" +#> [2251,] "Região de Aveiro" +#> [2252,] "Região de Coimbra" +#> [2253,] "Região de Leiria" +#> [2254,] "Viseu Dão Lafões" +#> [2255,] "Beira Baixa" +#> [2256,] "Médio Tejo" +#> [2257,] "Beiras e Serra da Estrela" +#> [2258,] "Área Metropolitana de Lisboa" +#> [2259,] "Área Metropolitana de Lisboa" +#> [2260,] "Grande Lisboa (NUTS 2010)" +#> [2261,] "Península de Setúbal (NUTS 2010)" +#> [2262,] "Alentejo" +#> [2263,] "Alentejo Litoral" +#> [2264,] "Alto Alentejo (NUTS 2010)" +#> [2265,] "Alentejo Central (NUTS 2010)" +#> [2266,] "Baixo Alentejo" +#> [2267,] "Lezíria do Tejo" +#> [2268,] "Alto Alentejo" +#> [2269,] "Alentejo Central" +#> [2270,] "Região Autónoma dos Açores (PT)" +#> [2271,] "Região Autónoma dos Açores (PT)" +#> [2272,] "Região Autónoma dos Açores (PT)" +#> [2273,] "Região Autónoma da Madeira (PT)" +#> [2274,] "Região Autónoma da Madeira (PT)" +#> [2275,] "Região Autónoma da Madeira (PT)" +#> [2276,] "Extra-Regio NUTS 1" +#> [2277,] "Extra-Regio NUTS 2" +#> [2278,] "Extra-Regio NUTS 3" +#> [2279,] "Lisboa" +#> [2280,] "Not regionalised/Unknown NUTS 1" +#> [2281,] "Not regionalised/Unknown NUTS 2" +#> [2282,] "Not regionalised/Unknown NUTS 3" +#> [2283,] "Romania" +#> [2284,] "Macroregiunea unu" +#> [2285,] "Nord-Vest" +#> [2286,] "Bihor" +#> [2287,] "Bistrita-Nasaud" +#> [2288,] "Cluj" +#> [2289,] "Maramures" +#> [2290,] "Satu Mare" +#> [2291,] "Salaj" +#> [2292,] "Centru" +#> [2293,] "Alba" +#> [2294,] "Brasov" +#> [2295,] "Covasna" +#> [2296,] "Harghita" +#> [2297,] "Mures" +#> [2298,] "Sibiu" +#> [2299,] "Macroregiunea doi" +#> [2300,] "Nord-Est" +#> [2301,] "Bacau" +#> [2302,] "Botosani" +#> [2303,] "Iasi" +#> [2304,] "Neamt" +#> [2305,] "Suceava" +#> [2306,] "Vaslui" +#> [2307,] "Sud-Est" +#> [2308,] "Braila" +#> [2309,] "Buzau" +#> [2310,] "Constanta" +#> [2311,] "Galati" +#> [2312,] "Tulcea" +#> [2313,] "Vrancea" +#> [2314,] "Macroregiunea trei" +#> [2315,] "Sud - Muntenia" +#> [2316,] "Arges" +#> [2317,] "Calarasi" +#> [2318,] "Dâmbovita" +#> [2319,] "Giurgiu" +#> [2320,] "Ialomita" +#> [2321,] "Prahova" +#> [2322,] "Teleorman" +#> [2323,] "Bucuresti - Ilfov" +#> [2324,] "Bucuresti" +#> [2325,] "Ilfov" +#> [2326,] "Macroregiunea patru" +#> [2327,] "Sud-Vest Oltenia" +#> [2328,] "Dolj" +#> [2329,] "Gorj" +#> [2330,] "Mehedinti" +#> [2331,] "Olt" +#> [2332,] "Vâlcea" +#> [2333,] "Vest" +#> [2334,] "Arad" +#> [2335,] "Caras-Severin" +#> [2336,] "Hunedoara" +#> [2337,] "Timis" +#> [2338,] "Extra-Regio NUTS 1" +#> [2339,] "Extra-Regio NUTS 2" +#> [2340,] "Extra-Regio NUTS 3" +#> [2341,] "Romania (statistical region 2002)" +#> [2342,] "Nord-Est (statistical region 2002)" +#> [2343,] "Bacau (statistical region 2002)" +#> [2344,] "Botosani (statistical region 2002)" +#> [2345,] "Iasi (statistical region 2002)" +#> [2346,] "Neamt (statistical region 2002)" +#> [2347,] "Suceava (statistical region 2002)" +#> [2348,] "Vaslui (statistical region 2002)" +#> [2349,] "Sud-Est (statistical region 2002)" +#> [2350,] "Braila (statistical region 2002)" +#> [2351,] "Buzau (statistical region 2002)" +#> [2352,] "Constanta (statistical region 2002)" +#> [2353,] "Galati (statistical region 2002)" +#> [2354,] "Tulcea (statistical region 2002)" +#> [2355,] "Vrancea (statistical region 2002)" +#> [2356,] "Sud (statistical region 2002)" +#> [2357,] "Arges (statistical region 2002)" +#> [2358,] "Calarasi (statistical region 2002)" +#> [2359,] "Dâmbovita (statistical region 2002)" +#> [2360,] "Giurgiu (statistical region 2002)" +#> [2361,] "Ialomita (statistical region 2002)" +#> [2362,] "Prahova (statistical region 2002)" +#> [2363,] "Teleorman (statistical region 2002)" +#> [2364,] "Sud-Vest (statistical region 2002)" +#> [2365,] "Dolj (statistical region 2002)" +#> [2366,] "Gorj (statistical region 2002)" +#> [2367,] "Mehedinti (statistical region 2002)" +#> [2368,] "Olt (statistical region 2002)" +#> [2369,] "Vâlcea (statistical region 2002)" +#> [2370,] "Vest (statistical region 2002)" +#> [2371,] "Arad (statistical region 2002)" +#> [2372,] "Caras-Severin (statistical region 2002)" +#> [2373,] "Hunedoara (statistical region 2002)" +#> [2374,] "Timis (statistical region 2002)" +#> [2375,] "Nord-Vest (statistical region 2002)" +#> [2376,] "Bihor (statistical region 2002)" +#> [2377,] "Bistrita-Nasaud (statistical region 2002)" +#> [2378,] "Cluj (statistical region 2002)" +#> [2379,] "Maramures (statistical region 2002)" +#> [2380,] "Satu Mare (statistical region 2002)" +#> [2381,] "Salaj (statistical region 2002)" +#> [2382,] "Centru (statistical region 2002)" +#> [2383,] "Alba (statistical region 2002)" +#> [2384,] "Brasov (statistical region 2002)" +#> [2385,] "Covasna (statistical region 2002)" +#> [2386,] "Harghita (statistical region 2002)" +#> [2387,] "Mures (statistical region 2002)" +#> [2388,] "Sibiu (statistical region 2002)" +#> [2389,] "Bucuresti (statistical region 2002)" +#> [2390,] "Bucuresti (capital) (statistical region 2002)" +#> [2391,] "Ilfov (statistical region 2002)" +#> [2392,] "Bucuresti" +#> [2393,] "Not regionalised/Unknown NUTS 1" +#> [2394,] "Not regionalised/Unknown NUTS 2" +#> [2395,] "Not regionalised/Unknown NUTS 3" +#> [2396,] "Slovenia" +#> [2397,] "Slovenija" +#> [2398,] "Vzhodna Slovenija" +#> [2399,] "Pomurska" +#> [2400,] "Podravska" +#> [2401,] "Koroska" +#> [2402,] "Savinjska" +#> [2403,] "Zasavska" +#> [2404,] "Posavska" +#> [2405,] "Jugovzhodna Slovenija" +#> [2406,] "Primorsko-notranjska" +#> [2407,] "Vzhodna Slovenija (NUTS 2010)" +#> [2408,] "Pomurska (NUTS 2010)" +#> [2409,] "Podravska (NUTS 2010)" +#> [2410,] "Koroska (NUTS 2010)" +#> [2411,] "Savinjska (NUTS 2010)" +#> [2412,] "Zasavska (NUTS 2010)" +#> [2413,] "Spodnjeposavska (NUTS 2010)" +#> [2414,] "Jugovzhodna Slovenija (NUTS 2010)" +#> [2415,] "Notranjsko-kraska (NUTS 2010)" +#> [2416,] "Zahodna Slovenija" +#> [2417,] "Osrednjeslovenska" +#> [2418,] "Gorenjska" +#> [2419,] "Goriska" +#> [2420,] "Obalno-kraska" +#> [2421,] "Zahodna Slovenija (NUTS 2010)" +#> [2422,] "Osrednjeslovenska (NUTS 2010)" +#> [2423,] "Gorenjska (NUTS 2010)" +#> [2424,] "Goriska (NUTS 2010)" +#> [2425,] "Obalno-kraska (NUTS 2010)" +#> [2426,] "Extra-Regio NUTS 1" +#> [2427,] "Extra-Regio NUTS 2" +#> [2428,] "Extra-Regio NUTS 3" +#> [2429,] "Ljubljana" +#> [2430,] "Not regionalised/Unknown NUTS 1" +#> [2431,] "Not regionalised/Unknown NUTS 2" +#> [2432,] "Not regionalised/Unknown NUTS 3" +#> [2433,] "Podravje - Stajerska Slovenija" +#> [2434,] "Podravje - Prekmurje" +#> [2435,] "Posavje - Dolenjska" +#> [2436,] "Posavje - Bela krajina" +#> [2437,] "Posavje - Bizeljsko Sremic" +#> [2438,] "Primorje - Kras" +#> [2439,] "Primorje - Slovenska Istra" +#> [2440,] "Primorje - Vipavska dolina (Vipava)" +#> [2441,] "Primorje - Goriska brda (Brda)" +#> [2442,] "Outside wine-growing districts" +#> [2443,] "Slovakia" +#> [2444,] "Slovensko" +#> [2445,] "Bratislavský kraj" +#> [2446,] "Bratislavský kraj" +#> [2447,] "Západné Slovensko" +#> [2448,] "Trnavský kraj" +#> [2449,] "Trenciansky kraj" +#> [2450,] "Nitriansky kraj" +#> [2451,] "Stredné Slovensko" +#> [2452,] "Zilinský kraj" +#> [2453,] "Banskobystrický kraj" +#> [2454,] "Východné Slovensko" +#> [2455,] "Presovský kraj" +#> [2456,] "Kosický kraj" +#> [2457,] "Extra-Regio NUTS 1" +#> [2458,] "Extra-Regio NUTS 2" +#> [2459,] "Extra-Regio NUTS 3" +#> [2460,] "Bratislava" +#> [2461,] "Not regionalised/Unknown NUTS 1" +#> [2462,] "Not regionalised/Unknown NUTS 2" +#> [2463,] "Not regionalised/Unknown NUTS 3" +#> [2464,] "Malokarpatská" +#> [2465,] "Juznoslovenská" +#> [2466,] "Stredoslovenská" +#> [2467,] "Nitrianska" +#> [2468,] "Východoslovenská" +#> [2469,] "Tokajská" +#> [2470,] "Finland" +#> [2471,] "Manner-Suomi" +#> [2472,] "Uusimaa, Etelä-Suomi, Åland (NUTS 1995)" +#> [2473,] "Uusimaa (NUTS 1995)" +#> [2474,] "Etelä-Suomi (NUTS 1995)" +#> [2475,] "Itä-Suomi (NUTS 2006)" +#> [2476,] "Etelä-Savo (NUTS 2006)" +#> [2477,] "Pohjois-Savo (NUTS 2006)" +#> [2478,] "Pohjois-Karjala (NUTS 2006)" +#> [2479,] "Kainuu (NUTS 2006)" +#> [2480,] "Väli-Suomi (NUTS 1995)" +#> [2481,] "Pohjois-Suomi (NUTS 1995)" +#> [2482,] "Uusimaa (suuralue)(NUTS 1995)" +#> [2483,] "Etelä-Suomi, Åland (NUTS 2006)" +#> [2484,] "Etelä-Suomi (NUTS 2006)" +#> [2485,] "Uusimaa, Itä-Uusimaa (NUTS 2006)" +#> [2486,] "Uusimaa (NUTS 2006)" +#> [2487,] "Itä-Uusimaa (NUTS 2006)" +#> [2488,] "Varsinais-Suomi (NUTS 2006)" +#> [2489,] "Kanta-Häme (NUTS 2006)" +#> [2490,] "Päijät-Häme (NUTS 2006)" +#> [2491,] "Kymenlaakso (NUTS 2006)" +#> [2492,] "Etelä-Karjala (NUTS 2006)" +#> [2493,] "Länsi-Suomi, Åland" +#> [2494,] "Länsi-Suomi" +#> [2495,] "Satakunta (NUTS 2003)" +#> [2496,] "Pirkanmaa (NUTS 2003)" +#> [2497,] "Keski-Suomi" +#> [2498,] "Etelä-Pohjanmaa" +#> [2499,] "Pohjanmaa" +#> [2500,] "Satakunta" +#> [2501,] "Pirkanmaa" +#> [2502,] "Pohjois-Suomi (NUTS 2006)" +#> [2503,] "Keski-Pohjanmaa (NUTS 2006)" +#> [2504,] "Pohjois-Pohjanmaa (NUTS 2006)" +#> [2505,] "Lappi (NUTS 2006)" +#> [2506,] "Helsinki-Uusimaa" +#> [2507,] "Helsinki-Uusimaa" +#> [2508,] "Etelä-Suomi" +#> [2509,] "Varsinais-Suomi" +#> [2510,] "Kanta-Häme" +#> [2511,] "Päijät-Häme" +#> [2512,] "Kymenlaakso" +#> [2513,] "Etelä-Karjala" +#> [2514,] "Pohjois- ja Itä-Suomi" +#> [2515,] "Etelä-Savo" +#> [2516,] "Pohjois-Savo" +#> [2517,] "Pohjois-Karjala" +#> [2518,] "Kainuu (NUTS 2013)" +#> [2519,] "Keski-Pohjanmaa" +#> [2520,] "Pohjois-Pohjanmaa (NUTS 2013)" +#> [2521,] "Lappi" +#> [2522,] "Kainuu" +#> [2523,] "Pohjois-Pohjanmaa" +#> [2524,] "Åland" +#> [2525,] "Åland" +#> [2526,] "Åland" +#> [2527,] "Extra-Regio NUTS 1" +#> [2528,] "Extra-Regio NUTS 2" +#> [2529,] "Extra-Regio NUTS 3" +#> [2530,] "Helsinki" +#> [2531,] "Not regionalised/Unknown NUTS 1" +#> [2532,] "Not regionalised/Unknown NUTS 2" +#> [2533,] "Not regionalised/Unknown NUTS 3" +#> [2534,] "Finland, not allocated" +#> [2535,] "Sweden" +#> [2536,] "Östra Sverige" +#> [2537,] "Stockholm" +#> [2538,] "Stockholms län" +#> [2539,] "Östra Mellansverige" +#> [2540,] "Uppsala län" +#> [2541,] "Södermanlands län" +#> [2542,] "Östergötlands län" +#> [2543,] "Örebro län" +#> [2544,] "Västmanlands län" +#> [2545,] "Södra Sverige" +#> [2546,] "Småland med öarna" +#> [2547,] "Jönköpings län" +#> [2548,] "Kronobergs län" +#> [2549,] "Kalmar län" +#> [2550,] "Gotlands län" +#> [2551,] "Sydsverige" +#> [2552,] "Blekinge län" +#> [2553,] "Skåne län" +#> [2554,] "Västsverige" +#> [2555,] "Hallands län" +#> [2556,] "Västra Götalands län" +#> [2557,] "Norra Sverige" +#> [2558,] "Norra Mellansverige" +#> [2559,] "Värmlands län" +#> [2560,] "Dalarnas län" +#> [2561,] "Gävleborgs län" +#> [2562,] "Mellersta Norrland" +#> [2563,] "Västernorrlands län" +#> [2564,] "Jämtlands län" +#> [2565,] "Övre Norrland" +#> [2566,] "Västerbottens län" +#> [2567,] "Norrbottens län" +#> [2568,] "Extra-Regio NUTS 1" +#> [2569,] "Extra-Regio NUTS 2" +#> [2570,] "Extra-Regio NUTS 3" +#> [2571,] "Uppsala län (NUTS 2003)" +#> [2572,] "Västmanlands län (NUTS 2003)" +#> [2573,] "Småland med öarna (NUTS 1995)" +#> [2574,] "Västsverige (NUTS 1995)" +#> [2575,] "Stockholm" +#> [2576,] "Not regionalised/Unknown NUTS 1" +#> [2577,] "Not regionalised/Unknown NUTS 2" +#> [2578,] "Not regionalised/Unknown NUTS 3" +#> [2579,] "Belgo-Luxembourg Economic Union" +#> [2580,] "Benelux Countries" +#> [2581,] "Baltic countries" +#> [2582,] "Channel Tunnel" +#> [2583,] "EU countries and non-EU countries (aggregate changing according to the context)" +#> [2584,] "EU27 countries (from 2020) and non-EU27 countries (from 2020)" +#> [2585,] "EU28 countries (2013-2020) and non-EU28 countries (2013-2020)" +#> [2586,] "EU27 countries (from 2020) not in EA19 (from 2015) - 8 countries" +#> [2587,] "EU28 countries (2013-2020) not in EA19 (from 2015) - 9 countries" +#> [2588,] "New Member States not in EA19 (from 2015) - 6 countries" +#> [2589,] "EU27 countries (from 2020) not in EA18 (2014) - 9 countries" +#> [2590,] "EU28 countries (2013-2020) not in EA18 (2014) - 10 countries" +#> [2591,] "EU27 countries (from 2020) not in EA17 (2011-2013) - 10 countries" +#> [2592,] "EU28 countries (2013-2020) not in EA17 (2011-2013) - 11 countries" +#> [2593,] "Other EU countries" +#> [2594,] "Other EU27 countries (from 2020)" +#> [2595,] "Other EU25 countries (2004-2006)" +#> [2596,] "Other EU15 countries (1995-2004)" +#> [2597,] "Intra-EU" +#> [2598,] "Intra-EU27 (from 2020)" +#> [2599,] "Intra-EU28 (2013-2020)" +#> [2600,] "Intra-EU27 (2007-2013)" +#> [2601,] "Intra-EU25 (2004-2006)" +#> [2602,] "Intra-EU15 (1995-2004)" +#> [2603,] "Intra-New Member States - 10 countries (2004-2006)" +#> [2604,] "Intra-New Member States - 12 countries (2007-2013)" +#> [2605,] "Intra-euro area" +#> [2606,] "Intra-EU, not allocated" +#> [2607,] "Intra-EU28 (2013-2020), not allocated" +#> [2608,] "Intra-EU25 (2004-2006), not allocated" +#> [2609,] "Intra-EU15 (1995-2004), not allocated" +#> [2610,] "Intra-euro area, not allocated" +#> [2611,] "EU27 countries (from 2020) or EFTA countries except reporting country" +#> [2612,] "EU28 countries (2013-2020) or EFTA countries except reporting country" +#> [2613,] "EU-countries except reporting country" +#> [2614,] "EU27 countries (from 2020) except reporting country" +#> [2615,] "EU28 countries (2013-2020) except reporting country" +#> [2616,] "EU27 countries (2007-2013) except reporting country" +#> [2617,] "EU25 countries (2004-2006) except reporting country" +#> [2618,] "EU15 countries (1995-2004) except reporting country" +#> [2619,] "EU12 countries (1986-1994) except reporting country" +#> [2620,] "European Economic Area (EEA18-1995, EEA28-2004, EEA30-2007, EEA31-2013, EEA30-2020)" +#> [2621,] "European Economic Area (EU27 from 2020 and IS, LI, NO)" +#> [2622,] "European Economic Area (EU28 - 2013-2020 and IS, LI, NO)" +#> [2623,] "European Economic Area (EU27 - 2007-2013 and IS, LI, NO)" +#> [2624,] "European Economic Area (EU25 - 2004-2006 and IS, LI, NO)" +#> [2625,] "European Economic Area (EU15 - 1995-2004 and IS, LI, NO)" +#> [2626,] "European Economic Area except Liechtenstein" +#> [2627,] "EEA-countries except the EU-countries" +#> [2628,] "Other European Economic Area (EU15 - 1995-2004 and IS, LI, NO)" +#> [2629,] "European Free Trade Association" +#> [2630,] "Iceland" +#> [2631,] "Ísland" +#> [2632,] "Ísland" +#> [2633,] "Höfudborgarsvædi" +#> [2634,] "Landsbyggd" +#> [2635,] "Extra-Regio level 1" +#> [2636,] "Extra-Regio level 2" +#> [2637,] "Extra-Regio level 3" +#> [2638,] "Reykjavik" +#> [2639,] "Not regionalised/Unknown level 1" +#> [2640,] "Not regionalised/Unknown level 2" +#> [2641,] "Not regionalised/Unknown level 3" +#> [2642,] "Switzerland and Liechtenstein" +#> [2643,] "Liechtenstein" +#> [2644,] "Liechtenstein" +#> [2645,] "Liechtenstein" +#> [2646,] "Liechtenstein" +#> [2647,] "Extra-Regio level 1" +#> [2648,] "Extra-Regio level 2" +#> [2649,] "Extra-Regio level 3" +#> [2650,] "Vaduz" +#> [2651,] "Not regionalised/Unknown level 1" +#> [2652,] "Not regionalised/Unknown level 2" +#> [2653,] "Not regionalised/Unknown level 3" +#> [2654,] "Norway" +#> [2655,] "Norge" +#> [2656,] "Østlandet (Oslo og Akershus, Hedmark og Oppland, Østfold, Buskerud, Vestfold) (statistical region 2016)" +#> [2657,] "Oslo og Akershus (statistical region 2016)" +#> [2658,] "Oslo (statistical region 2016)" +#> [2659,] "Akershus (statistical region 2016)" +#> [2660,] "Innlandet" +#> [2661,] "Innlandet" +#> [2662,] "Hedmark (statistical region 2016)" +#> [2663,] "Oppland (statistical region 2016)" +#> [2664,] "Sør-Østlandet (statistical region 2016)" +#> [2665,] "Østfold (statistical region 2016)" +#> [2666,] "Buskerud (statistical region 2016)" +#> [2667,] "Vestfold (statistical region 2016)" +#> [2668,] "Telemark, Aust-Agder, Vest-Agder (statistical region 2016)" +#> [2669,] "Telemark (statistical region 2016)" +#> [2670,] "Agder og Rogaland (statistical region 2016)" +#> [2671,] "Aust-Agder (statistical region 2016)" +#> [2672,] "Vest-Agder (statistical region 2016)" +#> [2673,] "Rogaland (statistical region 2016)" +#> [2674,] "Vestlandet (statistical region 2016)" +#> [2675,] "Hordaland (statistical region 2016)" +#> [2676,] "Sogn og Fjordane (statistical region 2016)" +#> [2677,] "Møre og Romsdal (statistical region 2016)" +#> [2678,] "Trøndelag" +#> [2679,] "Trøndelag" +#> [2680,] "Sør-Trøndelag (statistical region 2016)" +#> [2681,] "Nord-Trøndelag (statistical region 2016)" +#> [2682,] "Nord-Norge" +#> [2683,] "Nordland" +#> [2684,] "Troms (statistical region 2016)" +#> [2685,] "Finnmark (statistical region 2016)" +#> [2686,] "Troms og Finnmark" +#> [2687,] "Oslo og Viken" +#> [2688,] "Oslo" +#> [2689,] "Viken" +#> [2690,] "Agder og Sør-Østlandet" +#> [2691,] "Vestfold og Telemark" +#> [2692,] "Agder" +#> [2693,] "Vestlandet" +#> [2694,] "Rogaland" +#> [2695,] "Vestland" +#> [2696,] "Møre og Romsdal" +#> [2697,] "Jan Mayen and Svalbard" +#> [2698,] "Jan Mayen" +#> [2699,] "Svalbard" +#> [2700,] "Extra-Regio level 1" +#> [2701,] "Extra-Regio level 2" +#> [2702,] "Extra-Regio level 3" +#> [2703,] "Oslo" +#> [2704,] "Not regionalised/Unknown level 1" +#> [2705,] "Not regionalised/Unknown level 2" +#> [2706,] "Not regionalised/Unknown level 3" +#> [2707,] "Switzerland" +#> [2708,] "Schweiz/Suisse/Svizzera" +#> [2709,] "Région lémanique" +#> [2710,] "Vaud" +#> [2711,] "Valais" +#> [2712,] "Genève" +#> [2713,] "Espace Mittelland" +#> [2714,] "Bern" +#> [2715,] "Freiburg" +#> [2716,] "Solothurn" +#> [2717,] "Neuchâtel" +#> [2718,] "Jura" +#> [2719,] "Nordwestschweiz" +#> [2720,] "Basel-Stadt" +#> [2721,] "Basel-Landschaft" +#> [2722,] "Aargau" +#> [2723,] "Zürich" +#> [2724,] "Zürich" +#> [2725,] "Ostschweiz" +#> [2726,] "Glarus" +#> [2727,] "Schaffhausen" +#> [2728,] "Appenzell Ausserrhoden" +#> [2729,] "Appenzell Innerrhoden" +#> [2730,] "St. Gallen" +#> [2731,] "Graubünden" +#> [2732,] "Thurgau" +#> [2733,] "Zentralschweiz" +#> [2734,] "Luzern" +#> [2735,] "Uri" +#> [2736,] "Schwyz" +#> [2737,] "Obwalden" +#> [2738,] "Nidwalden" +#> [2739,] "Zug" +#> [2740,] "Ticino" +#> [2741,] "Ticino" +#> [2742,] "Extra-Regio level 1" +#> [2743,] "Extra-Regio level 2" +#> [2744,] "Extra-Regio level 3" +#> [2745,] "Bern (Berne)" +#> [2746,] "Genève" +#> [2747,] "Not regionalised/Unknown level 1" +#> [2748,] "Not regionalised/Unknown level 2" +#> [2749,] "Not regionalised/Unknown level 3" +#> [2750,] "European Free Trade Association except reporting country" +#> [2751,] "Other European Free Trade Association countries" +#> [2752,] "United Kingdom" +#> [2753,] "Great Britain" +#> [2754,] "England and Wales" +#> [2755,] "North East (UK)" +#> [2756,] "Tees Valley and Durham" +#> [2757,] "Hartlepool and Stockton-on-Tees" +#> [2758,] "South Teesside" +#> [2759,] "Darlington" +#> [2760,] "Durham CC" +#> [2761,] "Northumberland and Tyne and Wear" +#> [2762,] "Northumberland" +#> [2763,] "Tyneside" +#> [2764,] "Sunderland" +#> [2765,] "North West (UK)" +#> [2766,] "Cumbria" +#> [2767,] "West Cumbria" +#> [2768,] "East Cumbria" +#> [2769,] "Cheshire (NUTS 2006)" +#> [2770,] "Halton and Warrington (NUTS 2006)" +#> [2771,] "Cheshire CC (NUTS 2006)" +#> [2772,] "Greater Manchester, Lancashire, Merseyside (NUTS 2006)" +#> [2773,] "Greater Manchester" +#> [2774,] "Greater Manchester South (NUTS 2010)" +#> [2775,] "Greater Manchester North (NUTS 2010)" +#> [2776,] "Manchester" +#> [2777,] "Greater Manchester South West" +#> [2778,] "Greater Manchester South East" +#> [2779,] "Greater Manchester North West" +#> [2780,] "Greater Manchester North East" +#> [2781,] "Lancashire" +#> [2782,] "Blackburn with Darwen" +#> [2783,] "Blackpool" +#> [2784,] "Lancashire CC (NUTS 2010)" +#> [2785,] "Lancaster & Wyre" +#> [2786,] "Mid Lancashire" +#> [2787,] "East Lancashire" +#> [2788,] "Chorley & West Lancashire" +#> [2789,] "Merseyside (NUTS 2006)" +#> [2790,] "East Merseyside (NUTS 2006)" +#> [2791,] "Liverpool (NUTS 2006)" +#> [2792,] "Sefton (NUTS 2006)" +#> [2793,] "Wirral (NUTS 2006)" +#> [2794,] "Cheshire" +#> [2795,] "Warrington" +#> [2796,] "Cheshire East" +#> [2797,] "Cheshire West and Chester" +#> [2798,] "Merseyside" +#> [2799,] "East Merseyside" +#> [2800,] "Liverpool" +#> [2801,] "Sefton" +#> [2802,] "Wirral" +#> [2803,] "Yorkshire and The Humber" +#> [2804,] "East Yorkshire and Northern Lincolnshire" +#> [2805,] "Kingston upon Hull, City of" +#> [2806,] "East Riding of Yorkshire" +#> [2807,] "North and North East Lincolnshire" +#> [2808,] "North Yorkshire" +#> [2809,] "York" +#> [2810,] "North Yorkshire CC" +#> [2811,] "South and West Yorkshire" +#> [2812,] "South Yorkshire" +#> [2813,] "Barnsley, Doncaster and Rotherham" +#> [2814,] "Sheffield" +#> [2815,] "West Yorkshire" +#> [2816,] "Bradford" +#> [2817,] "Leeds" +#> [2818,] "Calderdale, Kirklees and Wakefield (NUTS 2006)" +#> [2819,] "Calderdale and Kirklees" +#> [2820,] "Wakefield" +#> [2821,] "East Midlands (UK)" +#> [2822,] "Derbyshire and Nottinghamshire" +#> [2823,] "Derby" +#> [2824,] "East Derbyshire" +#> [2825,] "South and West Derbyshire" +#> [2826,] "Nottingham" +#> [2827,] "North Nottinghamshire" +#> [2828,] "South Nottinghamshire" +#> [2829,] "Leicestershire, Rutland and Northamptonshire" +#> [2830,] "Leicester" +#> [2831,] "Leicestershire CC and Rutland" +#> [2832,] "Northamptonshire (NUTS 2006)" +#> [2833,] "West Northamptonshire" +#> [2834,] "North Northamptonshire" +#> [2835,] "Lincolnshire" +#> [2836,] "Lincolnshire" +#> [2837,] "West Midlands (UK)" +#> [2838,] "Herefordshire, Worcestershire and Warwickshire, West Midlands" +#> [2839,] "Herefordshire, Worcestershire and Warwickshire" +#> [2840,] "Herefordshire, County of" +#> [2841,] "Worcestershire" +#> [2842,] "Warwickshire" +#> [2843,] "Shropshire and Staffordshire" +#> [2844,] "Telford and Wrekin" +#> [2845,] "Shropshire CC" +#> [2846,] "Stoke-on-Trent" +#> [2847,] "Staffordshire CC" +#> [2848,] "West Midlands" +#> [2849,] "Birmingham" +#> [2850,] "Solihull" +#> [2851,] "Coventry" +#> [2852,] "Dudley and Sandwell (NUTS 2006)" +#> [2853,] "Walsall and Wolverhampton (NUTS 2006)" +#> [2854,] "Dudley" +#> [2855,] "Sandwell" +#> [2856,] "Walsall" +#> [2857,] "Wolverhampton" +#> [2858,] "East of England" +#> [2859,] "East Anglia" +#> [2860,] "Peterborough" +#> [2861,] "Cambridgeshire CC" +#> [2862,] "Norfolk (NUTS 2010)" +#> [2863,] "Suffolk" +#> [2864,] "Norwich & East Norfolk" +#> [2865,] "North & West Norfolk" +#> [2866,] "Breckland & South Norfolk" +#> [2867,] "Bedfordshire and Hertfordshire" +#> [2868,] "Luton" +#> [2869,] "Bedfordshire CC (NUTS 2006)" +#> [2870,] "Hertfordshire" +#> [2871,] "Bedford" +#> [2872,] "Central Bedfordshire" +#> [2873,] "Essex" +#> [2874,] "Southend-on-Sea" +#> [2875,] "Thurrock" +#> [2876,] "Essex CC (NUTS 2010)" +#> [2877,] "Essex Haven Gateway" +#> [2878,] "West Essex" +#> [2879,] "Heart of Essex" +#> [2880,] "Essex Thames Gateway" +#> [2881,] "London, South East" +#> [2882,] "London, Berkshire, Buckinghamshire and Oxfordshire" +#> [2883,] "London" +#> [2884,] "Inner London (NUTS 2010)" +#> [2885,] "Inner London - West (NUTS 2010)" +#> [2886,] "Inner London - East (NUTS 2010)" +#> [2887,] "Outer London (NUTS 2010)" +#> [2888,] "Outer London - East and North East (NUTS 2010)" +#> [2889,] "Outer London - South (NUTS 2010)" +#> [2890,] "Outer London - West and North West (NUTS 2010)" +#> [2891,] "Inner London - West" +#> [2892,] "Camden & City of London" +#> [2893,] "Westminster" +#> [2894,] "Kensington and Chelsea & Hammersmith and Fulham" +#> [2895,] "Wandsworth" +#> [2896,] "Inner London - East" +#> [2897,] "Hackney & Newham" +#> [2898,] "Tower Hamlets" +#> [2899,] "Haringey & Islington" +#> [2900,] "Lewisham & Southwark" +#> [2901,] "Lambeth" +#> [2902,] "Outer London - East and North East" +#> [2903,] "Bexley & Greenwich" +#> [2904,] "Barking & Dagenham and Havering" +#> [2905,] "Redbridge & Waltham Forest" +#> [2906,] "Enfield" +#> [2907,] "Outer London - South" +#> [2908,] "Bromley" +#> [2909,] "Croydon" +#> [2910,] "Merton, Kingston upon Thames & Sutton" +#> [2911,] "Outer London - West and North West" +#> [2912,] "Barnet" +#> [2913,] "Brent" +#> [2914,] "Ealing" +#> [2915,] "Harrow & Hillingdon" +#> [2916,] "Hounslow & Richmond upon Thames" +#> [2917,] "South East (UK)" +#> [2918,] "Berkshire, Buckinghamshire and Oxfordshire" +#> [2919,] "Berkshire" +#> [2920,] "Milton Keynes" +#> [2921,] "Buckinghamshire CC" +#> [2922,] "Oxfordshire" +#> [2923,] "Surrey, East and West Sussex" +#> [2924,] "Brighton and Hove" +#> [2925,] "East Sussex CC" +#> [2926,] "Surrey (NUTS 2010)" +#> [2927,] "West Sussex (NUTS 2010)" +#> [2928,] "West Surrey" +#> [2929,] "East Surrey" +#> [2930,] "West Sussex (South West)" +#> [2931,] "West Sussex (North East)" +#> [2932,] "Hampshire and Isle of Wight" +#> [2933,] "Portsmouth" +#> [2934,] "Southampton" +#> [2935,] "Hampshire CC (NUTS 2010)" +#> [2936,] "Isle of Wight" +#> [2937,] "South Hampshire" +#> [2938,] "Central Hampshire" +#> [2939,] "North Hampshire" +#> [2940,] "Kent" +#> [2941,] "Medway" +#> [2942,] "Kent CC (NUTS 2010)" +#> [2943,] "Kent Thames Gateway" +#> [2944,] "East Kent" +#> [2945,] "Mid Kent" +#> [2946,] "West Kent" +#> [2947,] "South West (UK)" +#> [2948,] "Gloucestershire, Wiltshire and Bristol/Bath area" +#> [2949,] "Bristol, City of" +#> [2950,] "Bath and North East Somerset, North Somerset and South Gloucestershire" +#> [2951,] "Gloucestershire" +#> [2952,] "Swindon" +#> [2953,] "Wiltshire CC" +#> [2954,] "Dorset and Somerset" +#> [2955,] "Bournemouth and Poole (NUTS 2016)" +#> [2956,] "Dorset CC (NUTS 2016)" +#> [2957,] "Somerset" +#> [2958,] "Bournemouth, Christchurch and Poole" +#> [2959,] "Dorset" +#> [2960,] "Cornwall and Isles of Scilly" +#> [2961,] "Cornwall and Isles of Scilly" +#> [2962,] "Devon" +#> [2963,] "Plymouth" +#> [2964,] "Torbay" +#> [2965,] "Devon CC" +#> [2966,] "Wales" +#> [2967,] "West Wales and The Valleys" +#> [2968,] "Isle of Anglesey" +#> [2969,] "Gwynedd" +#> [2970,] "Conwy and Denbighshire" +#> [2971,] "South West Wales" +#> [2972,] "Central Valleys" +#> [2973,] "Gwent Valleys" +#> [2974,] "Bridgend and Neath Port Talbot" +#> [2975,] "Swansea" +#> [2976,] "East Wales" +#> [2977,] "Monmouthshire and Newport" +#> [2978,] "Cardiff and Vale of Glamorgan" +#> [2979,] "Flintshire and Wrexham" +#> [2980,] "Powys" +#> [2981,] "Scotland" +#> [2982,] "North Eastern Scotland (NUTS 2003)" +#> [2983,] "Aberdeen City, Aberdeenshire and North East Moray (NUTS 2003)" +#> [2984,] "Eastern Scotland (NUTS 2013)" +#> [2985,] "Angus and Dundee City (NUTS 2013)" +#> [2986,] "Clackmannanshire and Fife (NUTS 2013)" +#> [2987,] "East Lothian and Midlothian (NUTS 2013)" +#> [2988,] "Scottish Borders (NUTS 2013)" +#> [2989,] "Edinburgh, City of (NUTS 2013)" +#> [2990,] "Falkirk (NUTS 2013)" +#> [2991,] "Perth & Kinross and Stirling (NUTS 2013)" +#> [2992,] "West Lothian (NUTS 2013)" +#> [2993,] "South Western Scotland (NUTS 2013)" +#> [2994,] "East Dunbartonshire, West Dunbartonshire and Helensburgh & Lomond (NUTS 2013)" +#> [2995,] "Dumfries & Galloway (NUTS 2013)" +#> [2996,] "East Ayrshire and North Ayrshire mainland (NUTS 2013)" +#> [2997,] "Glasgow City (NUTS 2013)" +#> [2998,] "Glasgow (NUTS 2013)" +#> [2999,] "Inverclyde, East Renfrewshire and Renfrewshire (NUTS 2013)" +#> [3000,] "North Lanarkshire (NUTS 2013)" +#> [3001,] "South Ayrshire (NUTS 2013)" +#> [3002,] "South Lanarkshire (NUTS 2013)" +#> [3003,] "Highlands and Islands (NUTS 2003)" +#> [3004,] "Inverness and Nairn, Moray, Badenoch and Strathspey (NUTS 2003)" +#> [3005,] "North Eastern Scotland" +#> [3006,] "Aberdeen City and Aberdeenshire" +#> [3007,] "Highlands and Islands" +#> [3008,] "Caithness & Sutherland and Ross & Cromarty" +#> [3009,] "Inverness & Nairn and Moray, Badenoch & Strathspey" +#> [3010,] "Lochaber, Skye & Lochalsh, Arran & Cumbrae and Argyll & Bute" +#> [3011,] "Eilean Siar (Western Isles)" +#> [3012,] "Orkney Islands" +#> [3013,] "Shetland Islands" +#> [3014,] "Eastern Scotland" +#> [3015,] "Angus and Dundee City" +#> [3016,] "Clackmannanshire and Fife" +#> [3017,] "East Lothian and Midlothian" +#> [3018,] "Edinburgh, City of" +#> [3019,] "Falkirk" +#> [3020,] "Perth & Kinross and Stirling" +#> [3021,] "West Lothian" +#> [3022,] "West Central Scotland" +#> [3023,] "East Dunbartonshire, West Dunbartonshire and Helensburgh & Lomond" +#> [3024,] "Glasgow City" +#> [3025,] "Inverclyde, East Renfrewshire and Renfrewshire" +#> [3026,] "North Lanarkshire" +#> [3027,] "Southern Scotland" +#> [3028,] "Scottish Borders" +#> [3029,] "Dumfries & Galloway" +#> [3030,] "East Ayrshire and North Ayrshire mainland" +#> [3031,] "South Ayrshire" +#> [3032,] "South Lanarkshire" +#> [3033,] "Northern Ireland (UK)" +#> [3034,] "Northern Ireland (UK)" +#> [3035,] "Belfast (NUTS 2013)" +#> [3036,] "Outer Belfast (NUTS 2013)" +#> [3037,] "East of Northern Ireland (NUTS 2013)" +#> [3038,] "North of Northern Ireland (NUTS 2013)" +#> [3039,] "West and South of Northern Ireland (NUTS 2013)" +#> [3040,] "Belfast" +#> [3041,] "Armagh City, Banbridge and Craigavon" +#> [3042,] "Newry, Mourne and Down" +#> [3043,] "Ards and North Down" +#> [3044,] "Derry City and Strabane" +#> [3045,] "Mid Ulster" +#> [3046,] "Causeway Coast and Glens" +#> [3047,] "Antrim and Newtownabbey" +#> [3048,] "Lisburn and Castlereagh" +#> [3049,] "Mid and East Antrim" +#> [3050,] "Fermanagh and Omagh" +#> [3051,] "Derry City and Strabane (NUTS 2016)" +#> [3052,] "Mid Ulster (NUTS 2016)" +#> [3053,] "Causeway Coast and Glens (NUTS 2016)" +#> [3054,] "Antrim and Newtownabbey (NUTS 2016)" +#> [3055,] "Lisburn and Castlereagh (NUTS 2016)" +#> [3056,] "Mid and East Antrim (NUTS 2016)" +#> [3057,] "Fermanagh and Omagh (NUTS 2016)" +#> [3058,] "Extra-Regio NUTS 1" +#> [3059,] "Extra-Regio NUTS 2" +#> [3060,] "Extra-Regio NUTS 3" +#> [3061,] "North (NUTS 1995)" +#> [3062,] "Cleveland, Durham (NUTS 1995)" +#> [3063,] "Cleveland (NUTS 1995)" +#> [3064,] "Durham (NUTS 1995)" +#> [3065,] "Cumbria (NUTS 1995)" +#> [3066,] "Northumberland,Tyne and Wear (NUTS 1995)" +#> [3067,] "Northumberland (NUTS 1995)" +#> [3068,] "Tyne and Wear (NUTS 1995)" +#> [3069,] "Yorkshire and Humberside (NUTS 1995)" +#> [3070,] "Humberside (NUTS 1995)" +#> [3071,] "North Yorkshire (NUTS 1995)" +#> [3072,] "South Yorkshire (NUTS 1995)" +#> [3073,] "West Yorkshire (NUTS 1995)" +#> [3074,] "East Midlands (NUTS 1995)" +#> [3075,] "Derbyshire, Nottinghamshire (NUTS 1995)" +#> [3076,] "Derbyshire (NUTS 1995)" +#> [3077,] "Nottinghamshire (NUTS 1995)" +#> [3078,] "Leicestershire, Northamptonshire (NUTS 1995)" +#> [3079,] "Leicestershire (NUTS 1995)" +#> [3080,] "Northamptonshire (NUTS 1995)" +#> [3081,] "Lincolnshire (NUTS 1995)" +#> [3082,] "East Anglia (NUTS 1995)" +#> [3083,] "Cambridgeshire (NUTS 1995)" +#> [3084,] "Norfolk (NUTS 1995)" +#> [3085,] "Suffolk (NUTS 1995)" +#> [3086,] "South East (UK) (NUTS 1995)" +#> [3087,] "Bedfordshire, Hertfordshire (NUTS 1995)" +#> [3088,] "Bedfordshire (NUTS 1995)" +#> [3089,] "Hertfordshire (NUTS 1995)" +#> [3090,] "Berkshire, Buckinghamshire, Oxfordshire (NUTS 1995)" +#> [3091,] "Berkshire (NUTS 1995)" +#> [3092,] "Buckinghamshire (NUTS 1995)" +#> [3093,] "Oxfordshire (NUTS 1995)" +#> [3094,] "Surrey, East-West Sussex (NUTS 1995)" +#> [3095,] "East Sussex (NUTS 1995)" +#> [3096,] "Surrey (NUTS 1995)" +#> [3097,] "West Sussex (NUTS 1995)" +#> [3098,] "Essex (NUTS 1995)" +#> [3099,] "Greater London (NUTS 1995)" +#> [3100,] "Hampshire, Isle of Wight (NUTS 1995)" +#> [3101,] "Hampshire (NUTS 1995)" +#> [3102,] "Isle of Wight (NUTS 1995)" +#> [3103,] "Kent (NUTS 1995)" +#> [3104,] "South West (UK) (NUTS 1995)" +#> [3105,] "Avon, Gloucestershire, Wiltshire (NUTS 1995)" +#> [3106,] "Avon (NUTS 1995)" +#> [3107,] "Gloucestershire (NUTS 1995)" +#> [3108,] "Wiltshire (NUTS 1995)" +#> [3109,] "Cornwall, Devon (NUTS 1995)" +#> [3110,] "Cornwall (NUTS 1995)" +#> [3111,] "Devon (NUTS 1995)" +#> [3112,] "Dorset, Somerset (NUTS 1995)" +#> [3113,] "Dorset (NUTS 1995)" +#> [3114,] "Somerset (NUTS 1995)" +#> [3115,] "West Midlands (NUTS 1995)" +#> [3116,] "Hereford and Worcester, Warwickshire (NUTS 1995)" +#> [3117,] "Hereford and Worcester (NUTS 1995)" +#> [3118,] "Warwickshire (NUTS 1995)" +#> [3119,] "Shropshire, Staffordshire (NUTS 1995)" +#> [3120,] "Shropshire (NUTS 1995)" +#> [3121,] "Staffordshire (NUTS 1995)" +#> [3122,] "West Midlands (County) (NUTS 1995)" +#> [3123,] "North West (UK) (NUTS 1995)" +#> [3124,] "Cheshire (NUTS 1995)" +#> [3125,] "Greater Manchester (NUTS 1995)" +#> [3126,] "Lancashire (NUTS 1995)" +#> [3127,] "Merseyside (NUTS 1995)" +#> [3128,] "Wales (NUTS 1995)" +#> [3129,] "Clwyd, Dyfed, Gwynedd, Powys (NUTS 1995)" +#> [3130,] "Clwyd (NUTS 1995)" +#> [3131,] "Dyfed (NUTS 1995)" +#> [3132,] "Gwynedd (NUTS 1995)" +#> [3133,] "Powys (NUTS 1995)" +#> [3134,] "Gwent, Mid-South-West Glamorgan (NUTS 1995)" +#> [3135,] "Gwent (NUTS 1995)" +#> [3136,] "Mid Glamorgan (NUTS 1995)" +#> [3137,] "South Glamorgan (NUTS 1995)" +#> [3138,] "West Glamorgan (NUTS 1995)" +#> [3139,] "Scotland (NUTS 1995)" +#> [3140,] "Borders-Central-Fife-Lothian-Tayside (NUTS 1995)" +#> [3141,] "Borders (NUTS 1995)" +#> [3142,] "Central (NUTS 1995)" +#> [3143,] "Fife (NUTS 1995)" +#> [3144,] "Lothian (NUTS 1995)" +#> [3145,] "Tayside (NUTS 1995)" +#> [3146,] "Dumfries and Galloway, Strathclyde (NUTS 1995)" +#> [3147,] "Dumfries and Galloway (NUTS 1995)" +#> [3148,] "Strathclyde (NUTS 1995)" +#> [3149,] "Highlands, Islands (NUTS 1995)" +#> [3150,] "Highlands (NUTS 1995)" +#> [3151,] "Islands (NUTS 1995)" +#> [3152,] "Grampian (NUTS 1995)" +#> [3153,] "Northern Ireland (UK)(NUTS 1995)" +#> [3154,] "London" +#> [3155,] "Culham" +#> [3156,] "Not regionalised/Unknown NUTS 1" +#> [3157,] "Not regionalised/Unknown NUTS 2" +#> [3158,] "Not regionalised/Unknown NUTS 3" +#> [3159,] "United Kingdom, not allocated" +#> [3160,] "British overseas countries and territories" +#> [3161,] "Candidate and potential candidate countries except Turkey and Kosovo (under United Nations Security Council Resolution 1244/99)" +#> [3162,] "Candidate countries (aggregate changing according to the context)" +#> [3163,] "Candidate countries from 2015 (5 countries)" +#> [3164,] "Candidate countries from 2015 (5 countries) except reporting country" +#> [3165,] "Candidate countries in 2014 (6 countries)" +#> [3166,] "Candidate countries in 2013 (5 countries)" +#> [3167,] "Candidate countries in 2013 (5 countries) except reporting country and Iceland" +#> [3168,] "Candidate countries in 2012 (6 countries)" +#> [3169,] "Candidate countries in 2010 (5 countries)" +#> [3170,] "Candidate countries in 2010 (4 countries)" +#> [3171,] "Candidate countries in 2007 (3 countries)" +#> [3172,] "Candidate countries in 2006 (5 countries)" +#> [3173,] "Candidate countries in 2005 (4 countries)" +#> [3174,] "Montenegro" +#> [3175,] "Crna Gora" +#> [3176,] "Crna Gora" +#> [3177,] "Crna Gora" +#> [3178,] "Extra-Regio level 1" +#> [3179,] "Extra-Regio level 2" +#> [3180,] "Extra-Regio level 3" +#> [3181,] "Podgorica" +#> [3182,] "Not regionalised/Unknown level 1" +#> [3183,] "Not regionalised/Unknown level 2" +#> [3184,] "Not regionalised/Unknown level 3" +#> [3185,] "North Macedonia" +#> [3186,] "Severna Makedonija" +#> [3187,] "Severna Makedonija" +#> [3188,] "Vardarski" +#> [3189,] "Istocen" +#> [3190,] "Jugozapaden" +#> [3191,] "Jugoistocen" +#> [3192,] "Pelagoniski" +#> [3193,] "Poloski" +#> [3194,] "Severoistocen" +#> [3195,] "Skopski" +#> [3196,] "Extra-Regio level 1" +#> [3197,] "Extra-Regio level 2" +#> [3198,] "Extra-Regio level 3" +#> [3199,] "Skopje" +#> [3200,] "Not regionalised/Unknown level 1" +#> [3201,] "Not regionalised/Unknown level 2" +#> [3202,] "Not regionalised/Unknown level 3" +#> [3203,] "Albania" +#> [3204,] "Shqipëria" +#> [3205,] "Veri" +#> [3206,] "Dibër" +#> [3207,] "Durrës" +#> [3208,] "Kukës" +#> [3209,] "Lezhë" +#> [3210,] "Shkodër" +#> [3211,] "Qender" +#> [3212,] "Elbasan" +#> [3213,] "Tiranë" +#> [3214,] "Jug" +#> [3215,] "Berat" +#> [3216,] "Fier" +#> [3217,] "Gjirokastër" +#> [3218,] "Korcë" +#> [3219,] "Vlorë" +#> [3220,] "Extra-Regio level 1" +#> [3221,] "Extra-Regio level 2" +#> [3222,] "Extra-Regio level 3" +#> [3223,] "Tiranë (Tirana)" +#> [3224,] "Not regionalised/Unknown level 1" +#> [3225,] "Not regionalised/Unknown level 2" +#> [3226,] "Not regionalised/Unknown level 3" +#> [3227,] "Serbia" +#> [3228,] "Srbija - sever" +#> [3229,] "Beogradski region" +#> [3230,] "Beogradska oblast" +#> [3231,] "Region Vojvodine" +#> [3232,] "Zapadnobacka oblast" +#> [3233,] "Juznobanatska oblast" +#> [3234,] "Juznobacka oblast" +#> [3235,] "Severnobanatska oblast" +#> [3236,] "Severnobacka oblast" +#> [3237,] "Srednjobanatska oblast" +#> [3238,] "Sremska oblast" +#> [3239,] "Srbija - jug" +#> [3240,] "Region Sumadije i Zapadne Srbije" +#> [3241,] "Zlatiborska oblast" +#> [3242,] "Kolubarska oblast" +#> [3243,] "Macvanska oblast" +#> [3244,] "Moravicka oblast" +#> [3245,] "Pomoravska oblast" +#> [3246,] "Rasinska oblast" +#> [3247,] "Raska oblast" +#> [3248,] "Sumadijska oblast" +#> [3249,] "Region Juzne i Istocne Srbije" +#> [3250,] "Borska oblast" +#> [3251,] "Branicevska oblast" +#> [3252,] "Zajecarska oblast" +#> [3253,] "Jablanicka oblast" +#> [3254,] "Nisavska oblast" +#> [3255,] "Pirotska oblast" +#> [3256,] "Podunavska oblast" +#> [3257,] "Pcinjska oblast" +#> [3258,] "Toplicka oblast" +#> [3259,] "Extra-Regio level 1" +#> [3260,] "Extra-Regio level 2" +#> [3261,] "Extra-Regio level 3" +#> [3262,] "Beograd (Belgrade)" +#> [3263,] "Not regionalised/Unknown level 1" +#> [3264,] "Not regionalised/Unknown level 2" +#> [3265,] "Not regionalised/Unknown level 3" +#> [3266,] "Turkey" +#> [3267,] "Istanbul" +#> [3268,] "Istanbul" +#> [3269,] "Istanbul" +#> [3270,] "Bati Marmara" +#> [3271,] "Tekirdag, Edirne, Kirklareli" +#> [3272,] "Tekirdag" +#> [3273,] "Edirne" +#> [3274,] "Kirklareli" +#> [3275,] "Balikesir, Çanakkale" +#> [3276,] "Balikesir" +#> [3277,] "Çanakkale" +#> [3278,] "Ege" +#> [3279,] "Izmir" +#> [3280,] "Izmir" +#> [3281,] "Aydin, Denizli, Mugla" +#> [3282,] "Aydin" +#> [3283,] "Denizli" +#> [3284,] "Mugla" +#> [3285,] "Manisa, Afyonkarahisar, Kütahya, Usak" +#> [3286,] "Manisa" +#> [3287,] "Afyonkarahisar" +#> [3288,] "Kütahya" +#> [3289,] "Usak" +#> [3290,] "Dogu Marmara" +#> [3291,] "Bursa, Eskisehir, Bilecik" +#> [3292,] "Bursa" +#> [3293,] "Eskisehir" +#> [3294,] "Bilecik" +#> [3295,] "Kocaeli, Sakarya, Düzce, Bolu, Yalova" +#> [3296,] "Kocaeli" +#> [3297,] "Sakarya" +#> [3298,] "Düzce" +#> [3299,] "Bolu" +#> [3300,] "Yalova" +#> [3301,] "Bati Anadolu" +#> [3302,] "Ankara" +#> [3303,] "Ankara" +#> [3304,] "Konya, Karaman" +#> [3305,] "Konya" +#> [3306,] "Karaman" +#> [3307,] "Akdeniz" +#> [3308,] "Antalya, Isparta, Burdur" +#> [3309,] "Antalya" +#> [3310,] "Isparta" +#> [3311,] "Burdur" +#> [3312,] "Adana, Mersin" +#> [3313,] "Adana" +#> [3314,] "Mersin" +#> [3315,] "Hatay, Kahramanmaras, Osmaniye" +#> [3316,] "Hatay" +#> [3317,] "Kahramanmaras" +#> [3318,] "Osmaniye" +#> [3319,] "Orta Anadolu" +#> [3320,] "Kirikkale, Aksaray, Nigde, Nevsehir, Kirsehir" +#> [3321,] "Kirikkale" +#> [3322,] "Aksaray" +#> [3323,] "Nigde" +#> [3324,] "Nevsehir" +#> [3325,] "Kirsehir" +#> [3326,] "Kayseri, Sivas, Yozgat" +#> [3327,] "Kayseri" +#> [3328,] "Sivas" +#> [3329,] "Yozgat" +#> [3330,] "Bati Karadeniz" +#> [3331,] "Zonguldak, Karabük, Bartin" +#> [3332,] "Zonguldak" +#> [3333,] "Karabük" +#> [3334,] "Bartin" +#> [3335,] "Kastamonu, Çankiri, Sinop" +#> [3336,] "Kastamonu" +#> [3337,] "Çankiri" +#> [3338,] "Sinop" +#> [3339,] "Samsun, Tokat, Çorum, Amasya" +#> [3340,] "Samsun" +#> [3341,] "Tokat" +#> [3342,] "Çorum" +#> [3343,] "Amasya" +#> [3344,] "Dogu Karadeniz" +#> [3345,] "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüshane" +#> [3346,] "Trabzon" +#> [3347,] "Ordu" +#> [3348,] "Giresun" +#> [3349,] "Rize" +#> [3350,] "Artvin" +#> [3351,] "Gümüshane" +#> [3352,] "Kuzeydogu Anadolu" +#> [3353,] "Erzurum, Erzincan, Bayburt" +#> [3354,] "Erzurum" +#> [3355,] "Erzincan" +#> [3356,] "Bayburt" +#> [3357,] "Agri, Kars, Igdir, Ardahan" +#> [3358,] "Agri" +#> [3359,] "Kars" +#> [3360,] "Igdir" +#> [3361,] "Ardahan" +#> [3362,] "Ortadogu Anadolu" +#> [3363,] "Malatya, Elazig, Bingöl, Tunceli" +#> [3364,] "Malatya" +#> [3365,] "Elazig" +#> [3366,] "Bingöl" +#> [3367,] "Tunceli" +#> [3368,] "Van, Mus, Bitlis, Hakkari" +#> [3369,] "Van" +#> [3370,] "Mus" +#> [3371,] "Bitlis" +#> [3372,] "Hakkari" +#> [3373,] "Güneydogu Anadolu" +#> [3374,] "Gaziantep, Adiyaman, Kilis" +#> [3375,] "Gaziantep" +#> [3376,] "Adiyaman" +#> [3377,] "Kilis" +#> [3378,] "Sanliurfa, Diyarbakir" +#> [3379,] "Sanliurfa" +#> [3380,] "Diyarbakir" +#> [3381,] "Mardin, Batman, Sirnak, Siirt" +#> [3382,] "Mardin" +#> [3383,] "Batman" +#> [3384,] "Sirnak" +#> [3385,] "Siirt" +#> [3386,] "Extra-Regio level 1" +#> [3387,] "Extra-Regio level 2" +#> [3388,] "Extra-Regio level 3" +#> [3389,] "Ankara" +#> [3390,] "Not regionalised/Unknown level 1" +#> [3391,] "Not regionalised/Unknown level 2" +#> [3392,] "Not regionalised/Unknown level 3" +#> [3393,] "Central and Eastern Europe" +#> [3394,] "Other Central and Eastern European countries" +#> [3395,] "WBC - Western Balkan Countries (aggregate changing according to the context)" +#> [3396,] "Central and Eastern European countries except European former CIS Republics (aggregate changing according to the context)" +#> [3397,] "Andorra" +#> [3398,] "Belarus" +#> [3399,] "Minsk" +#> [3400,] "Bosnia and Herzegovina" +#> [3401,] "Sarajevo" +#> [3402,] "Banja Luka" +#> [3403,] "Channel Islands (Guernsey and Jersey)" +#> [3404,] "Guernsey" +#> [3405,] "Jersey" +#> [3406,] "Faroes (DK)" +#> [3407,] "Gibraltar (UK)" +#> [3408,] "Holy See (the)/Vatican City State" +#> [3409,] "Isle of Man" +#> [3410,] "Kosovo (under United Nations Security Council Resolution 1244/99)" +#> [3411,] "Prishtinë" +#> [3412,] "Moldova" +#> [3413,] "Chisinau" +#> [3414,] "Monaco" +#> [3415,] "Russia" +#> [3416,] "Moskva (Moscow)" +#> [3417,] "San Marino" +#> [3418,] "Svalbard and Jan Mayen (NO)" +#> [3419,] "Ukraine" +#> [3420,] "Kyiv" +#> [3421,] "Not classifiable according to current borders" +#> [3422,] "Former Czechoslovakia (before 1992)/Total components of former Czechoslovakia" +#> [3423,] "Former Serbia and Montenegro (before 2006)/Total components of the former Serbia and Montenegro" +#> [3424,] "Former Yugoslavia (before 1992)/Total components of the former republic of Yugoslavia" +#> [3425,] "Other countries of former Yugoslavia (before 1992)" +#> [3426,] "Former Soviet Union (before 1991)/Total components of the former Soviet Union" +#> [3427,] "European Republics of the former Soviet Union" +#> [3428,] "Other countries of former Soviet Union (before 1991)" +#> [3429,] "Other entity not classifiable" +#> [3430,] "Commonwealth of Independent States (Former Soviet Union except BAL)" +#> [3431,] "Countries other than EU, EFTA and Candidate countries" +#> [3432,] "Highly developed countries (other than EU, EFTA and Candidate countries)" +#> [3433,] "Medium developed countries (other than EU, EFTA and Candidate countries)" +#> [3434,] "Less developed countries (other than EU, EFTA and Candidate countries)" +#> [3435,] "Extra-EU" +#> [3436,] "Extra-EU27 (from 2020)" +#> [3437,] "Extra-EU28 (2013-2020)" +#> [3438,] "Extra-EU27 (2007-2013)" +#> [3439,] "Extra-EU25 (2004-2006)" +#> [3440,] "Extra-EU15 (1995-2004)" +#> [3441,] "Extra-EU12 (1986-1994)" +#> [3442,] "Extra-euro area" +#> [3443,] "Extra-euro area - 19 countries (from 2015)" +#> [3444,] "Extra-euro area - 18 countries (2014)" +#> [3445,] "Extra-euro area - 17 countries (2011-2013)" +#> [3446,] "Extra-euro area - 16 countries (2009-2010)" +#> [3447,] "Extra-euro area - 15 countries (2008))" +#> [3448,] "Extra-euro area - 13 countries (2007)" +#> [3449,] "Extra-euro area - 12 countries (2001-2006)" +#> [3450,] "Extra-euro area - 11 countries (1999-2000)" +#> [3451,] "Extra-EU, not allocated" +#> [3452,] "Extra-EU27 (from 2020), not allocated" +#> [3453,] "Extra-EU28 (2013-2020), not allocated" +#> [3454,] "Extra-EU27 (2007-2013), not allocated" +#> [3455,] "Extra-EU25 (2004-2006), not allocated" +#> [3456,] "Extra-euro area, not allocated" +#> [3457,] "Countries other than EU, EFTA and Candidate countries with Human Development Index (HDI) ranking" +#> [3458,] "Countries other than EU, EFTA and Candidate countries with very high Human Development Index (HDI)" +#> [3459,] "Countries other than EU, EFTA and Candidate countries with high Human Development Index (HDI)" +#> [3460,] "Countries other than EU, EFTA and Candidate countries with medium Human Development Index (HDI)" +#> [3461,] "Countries other than EU, EFTA and Candidate countries with low Human Development Index (HDI)" +#> [3462,] "Non-EU countries (aggregate changing according to the context)" +#> [3463,] "Non-EU countries with very high Human Development Index (HDI)" +#> [3464,] "Non-EU countries with high Human Development Index (HDI)" +#> [3465,] "Non-EU countries with medium Human Development Index (HDI)" +#> [3466,] "Non-EU countries with low Human Development Index (HDI)" +#> [3467,] "Non-EU countries with no Human Development Index (HDI) ranking" +#> [3468,] "Non-EU27 countries (from 2020) nor EFTA countries" +#> [3469,] "Non-EU28 countries (2013-2020) nor EFTA countries" +#> [3470,] "Non-EU27 countries (from 2020)" +#> [3471,] "Non-EU28 countries (2013-2020)" +#> [3472,] "Non-EU countries nor reporting country (aggregate changing according to the context)" +#> [3473,] "Non-EU27 countries (from 2020) nor reporting country" +#> [3474,] "Non-EU28 countries (2013-2020) nor reporting country" +#> [3475,] "Non-EU27 countries (2007-2013) nor reporting country" +#> [3476,] "Non-EU27 countries (2007-2013) nor reporting country and stateless" +#> [3477,] "Non-EU15 countries (1995-2004) nor reporting country" +#> [3478,] "European non-EU countries (aggregate changing according to the context)" +#> [3479,] "European non-EU27 countries (from 2020) and European non-EFTA countries" +#> [3480,] "European non-EU27 countries (from 2020)" +#> [3481,] "European non-EU28 countries (2013-2020)" +#> [3482,] "European non-EU27 countries (2007-2013)" +#> [3483,] "European non-EU25 countries (2004-2006)" +#> [3484,] "European non-EU15 countries (1995-2004)" +#> [3485,] "European countries not EU nor EFTA (aggregate changing according to the context)" +#> [3486,] "Other European countries (aggregate changing according to the context)" +#> [3487,] "European countries, not specified" +#> [3488,] "Africa" +#> [3489,] "Central and South Africa" +#> [3490,] "Central Africa" +#> [3491,] "Angola" +#> [3492,] "Luanda" +#> [3493,] "Cameroon" +#> [3494,] "Yaoundé" +#> [3495,] "Central African Republic" +#> [3496,] "Bangui" +#> [3497,] "Chad" +#> [3498,] "N'Djamena" +#> [3499,] "Congo" +#> [3500,] "Brazzaville" +#> [3501,] "Democratic Republic of the Congo" +#> [3502,] "Kinshasa" +#> [3503,] "Equatorial Guinea" +#> [3504,] "Malabo" +#> [3505,] "Gabon" +#> [3506,] "Libreville" +#> [3507,] "São Tomé and Príncipe" +#> [3508,] "São Tomé" +#> [3509,] "Eastern Africa" +#> [3510,] "Burundi" +#> [3511,] "Gitega" +#> [3512,] "Comoros" +#> [3513,] "Moroni" +#> [3514,] "Djibouti" +#> [3515,] "Djibouti" +#> [3516,] "Eritrea" +#> [3517,] "Asmaraa" +#> [3518,] "Ethiopia" +#> [3519,] "Addis-Ababa" +#> [3520,] "Kenya" +#> [3521,] "Nairobi" +#> [3522,] "Madagascar" +#> [3523,] "Antananarivo" +#> [3524,] "Malawi" +#> [3525,] "Lilongwe" +#> [3526,] "Mauritius" +#> [3527,] "Port-Louis" +#> [3528,] "Mozambique" +#> [3529,] "Maputo" +#> [3530,] "Rwanda" +#> [3531,] "Kigali" +#> [3532,] "Seychelles" +#> [3533,] "Somalia" +#> [3534,] "Muqdisho (Mogadishu)" +#> [3535,] "Uganda" +#> [3536,] "Kampala" +#> [3537,] "Tanzania" +#> [3538,] "Dodoma" +#> [3539,] "Zambia" +#> [3540,] "Lusaka" +#> [3541,] "Zimbabwe" +#> [3542,] "Harare" +#> [3543,] "Northern Africa" +#> [3544,] "Algeria" +#> [3545,] "Al-Jazair (Algiers)" +#> [3546,] "Egypt" +#> [3547,] "Al-Qahirah (Cairo)" +#> [3548,] "Libya" +#> [3549,] "Tarabulus (Tripoli)" +#> [3550,] "Morocco" +#> [3551,] "Rabat" +#> [3552,] "South Sudan" +#> [3553,] "Juba" +#> [3554,] "Sudan" +#> [3555,] "Al-Khartum (Khartoum)" +#> [3556,] "Tunisia" +#> [3557,] "Tunis" +#> [3558,] "Western Sahara" +#> [3559,] "Southern Africa" +#> [3560,] "Botswana" +#> [3561,] "Gaborone" +#> [3562,] "Lesotho" +#> [3563,] "Maseru" +#> [3564,] "Namibia" +#> [3565,] "Windhoek" +#> [3566,] "South Africa" +#> [3567,] "Pretoria" +#> [3568,] "Eswatini" +#> [3569,] "Mbabane" +#> [3570,] "Western Africa" +#> [3571,] "Benin" +#> [3572,] "Cotonou (seat of government)" +#> [3573,] "Burkina Faso" +#> [3574,] "Ouagadougou" +#> [3575,] "Cabo Verde" +#> [3576,] "Praia" +#> [3577,] "Côte d'Ivoire" +#> [3578,] "Abidjan (seat of government)" +#> [3579,] "Gambia, The" +#> [3580,] "Banjul" +#> [3581,] "Ghana" +#> [3582,] "Accra" +#> [3583,] "Guinea" +#> [3584,] "Conakry" +#> [3585,] "Guinea-Bissau" +#> [3586,] "Bissau" +#> [3587,] "Liberia" +#> [3588,] "Monrovia" +#> [3589,] "Mali" +#> [3590,] "Bamako" +#> [3591,] "Mauritania" +#> [3592,] "Nouakchott" +#> [3593,] "Niger" +#> [3594,] "Niamey" +#> [3595,] "Nigeria" +#> [3596,] "Abuja" +#> [3597,] "Lagos" +#> [3598,] "Saint Helena, Ascension and Tristan da Cunha (UK)" +#> [3599,] "Senegal" +#> [3600,] "Dakar" +#> [3601,] "Sierra Leone" +#> [3602,] "Freetown" +#> [3603,] "Togo" +#> [3604,] "Lomé" +#> [3605,] "Other African countries (aggregate changing according to the context)" +#> [3606,] "African countries, not specified" +#> [3607,] "America" +#> [3608,] "Northern America" +#> [3609,] "Bermuda (UK)" +#> [3610,] "Canada and United States" +#> [3611,] "Canada" +#> [3612,] "Ottawa" +#> [3613,] "Greenland (DK)" +#> [3614,] "Nuuk" +#> [3615,] "Saint Pierre and Miquelon (FR)" +#> [3616,] "United States" +#> [3617,] "Washington, D.C." +#> [3618,] "New York" +#> [3619,] "Other Northern American countries" +#> [3620,] "Northern American countries, not specified" +#> [3621,] "Caribbean, Central and South America" +#> [3622,] "Central America and Caribbean" +#> [3623,] "Caribbean" +#> [3624,] "Anguilla (UK)" +#> [3625,] "Antigua and Barbuda" +#> [3626,] "Aruba (NL)" +#> [3627,] "Bahamas" +#> [3628,] "Barbados" +#> [3629,] "Bridgetown" +#> [3630,] "Bonaire, Saint Eustatius and Saba" +#> [3631,] "British Virgin Islands (UK)" +#> [3632,] "Cayman Islands (UK)" +#> [3633,] "Cuba" +#> [3634,] "La Habana (Havana)" +#> [3635,] "Curaçao" +#> [3636,] "Dominica" +#> [3637,] "Dominican Republic" +#> [3638,] "Santo Domingo (Dominican Republic)" +#> [3639,] "Grenada" +#> [3640,] "Haiti" +#> [3641,] "Port-au-Prince" +#> [3642,] "Jamaica" +#> [3643,] "Kingston" +#> [3644,] "Montserrat (UK)" +#> [3645,] "Former Netherlands Antilles" +#> [3646,] "Puerto Rico (US)" +#> [3647,] "Saint-Barthélemy (FR)" +#> [3648,] "Saint Kitts and Nevis" +#> [3649,] "Saint Lucia" +#> [3650,] "Saint Martin (FR)" +#> [3651,] "Saint Vincent and the Grenadines" +#> [3652,] "Sint Maarten" +#> [3653,] "Trinidad and Tobago" +#> [3654,] "Port of Spain" +#> [3655,] "Turks and Caicos Islands (UK)" +#> [3656,] "US Virgin Islands (US)" +#> [3657,] "Other Caribbean countries" +#> [3658,] "Central and South America" +#> [3659,] "Latin American countries" +#> [3660,] "Central America" +#> [3661,] "Belize" +#> [3662,] "Belize City" +#> [3663,] "Clipperton (FR)" +#> [3664,] "Costa Rica" +#> [3665,] "San Jose" +#> [3666,] "El Salvador" +#> [3667,] "San Salvador" +#> [3668,] "Guatemala" +#> [3669,] "Ciudad de Guatemala" +#> [3670,] "Honduras" +#> [3671,] "Tegucigalpa" +#> [3672,] "Mexico" +#> [3673,] "Mexico" +#> [3674,] "Nicaragua" +#> [3675,] "Managua" +#> [3676,] "Panama" +#> [3677,] "Panama" +#> [3678,] "Other Central American countries" +#> [3679,] "South America" +#> [3680,] "Argentina" +#> [3681,] "Buenos Aires" +#> [3682,] "Bolivia" +#> [3683,] "La Paz" +#> [3684,] "Brazil" +#> [3685,] "Brasilia" +#> [3686,] "Chile" +#> [3687,] "Santiago" +#> [3688,] "Colombia" +#> [3689,] "Bogota" +#> [3690,] "Ecuador" +#> [3691,] "Quito" +#> [3692,] "Falkland Islands (UK)" +#> [3693,] "Guyana" +#> [3694,] "Georgetown" +#> [3695,] "Paraguay" +#> [3696,] "Asunción" +#> [3697,] "Peru" +#> [3698,] "Lima" +#> [3699,] "Suriname" +#> [3700,] "Paramaribo" +#> [3701,] "Uruguay" +#> [3702,] "Montevideo" +#> [3703,] "Venezuela" +#> [3704,] "Caracas" +#> [3705,] "Other Central or South American countries" +#> [3706,] "Other South American countries" +#> [3707,] "Other Caribbean, Central and South American countries" +#> [3708,] "Caribbean, Central and South American countries, not specified" +#> [3709,] "Other American countries (aggregate changing according to the context)" +#> [3710,] "Asia" +#> [3711,] "Central Asia" +#> [3712,] "Kazakhstan" +#> [3713,] "Nur-Sultan" +#> [3714,] "Almaty" +#> [3715,] "Kyrgyzstan" +#> [3716,] "Bishkek" +#> [3717,] "Tajikistan" +#> [3718,] "Doushanbe" +#> [3719,] "Turkmenistan" +#> [3720,] "Ashgabat" +#> [3721,] "Uzbekistan" +#> [3722,] "Toshkent" +#> [3723,] "Eastern Asia" +#> [3724,] "China including Hong Kong" +#> [3725,] "China except Hong Kong" +#> [3726,] "Beijing" +#> [3727,] "Hong Kong" +#> [3728,] "Hong Kong" +#> [3729,] "Macao" +#> [3730,] "Japan" +#> [3731,] "Tokyo" +#> [3732,] "Naka" +#> [3733,] "Mongolia" +#> [3734,] "Ulaanbaatar" +#> [3735,] "North Korea" +#> [3736,] "South Korea" +#> [3737,] "Seoul" +#> [3738,] "Taiwan" +#> [3739,] "Taipei" +#> [3740,] "Other Eastern Asian countries" +#> [3741,] "Southern Asia" +#> [3742,] "Afghanistan" +#> [3743,] "Kabul" +#> [3744,] "Bangladesh" +#> [3745,] "Dhaka" +#> [3746,] "Bhutan" +#> [3747,] "British Indian Ocean Territory (UK)" +#> [3748,] "India" +#> [3749,] "New Delhi" +#> [3750,] "Iran" +#> [3751,] "Tehran" +#> [3752,] "Maldives" +#> [3753,] "Nepal" +#> [3754,] "Kathmandu" +#> [3755,] "Pakistan" +#> [3756,] "Islamabad" +#> [3757,] "Sri Lanka" +#> [3758,] "Colombo" +#> [3759,] "South-Eastern Asia" +#> [3760,] "Brunei Darussalam" +#> [3761,] "Cambodia" +#> [3762,] "Phnom Penh" +#> [3763,] "Indonesia" +#> [3764,] "Jakarta" +#> [3765,] "Banda Aceh" +#> [3766,] "Laos" +#> [3767,] "Vientiane" +#> [3768,] "Malaysia" +#> [3769,] "Kuala Lumpur" +#> [3770,] "Myanmar/Burma" +#> [3771,] "Yangon" +#> [3772,] "Philippines" +#> [3773,] "Manila" +#> [3774,] "Singapore" +#> [3775,] "Singapore" +#> [3776,] "Thailand" +#> [3777,] "Bangkok" +#> [3778,] "Timor-Leste" +#> [3779,] "Dili" +#> [3780,] "Vietnam" +#> [3781,] "Hanoi" +#> [3782,] "Western Asia including Iran" +#> [3783,] "Western Asia" +#> [3784,] "Armenia" +#> [3785,] "Yerevan" +#> [3786,] "Azerbaijan" +#> [3787,] "Baki (Baku)" +#> [3788,] "Bahrain" +#> [3789,] "Georgia" +#> [3790,] "Tbilisi" +#> [3791,] "Iraq" +#> [3792,] "Baghdad" +#> [3793,] "Israel" +#> [3794,] "Tel Aviv" +#> [3795,] "Jordan" +#> [3796,] "Amman" +#> [3797,] "Kuwait" +#> [3798,] "Kuwait City" +#> [3799,] "Lebanon" +#> [3800,] "Bayrut" +#> [3801,] "Palestine" +#> [3802,] "Jerusalem-East (West Bank/Gaza Strip)" +#> [3803,] "Oman" +#> [3804,] "Qatar" +#> [3805,] "Doha" +#> [3806,] "Saudi Arabia" +#> [3807,] "Ar-Riyad (Riyadh)" +#> [3808,] "Syria" +#> [3809,] "Dimashq (Damascus)" +#> [3810,] "United Arab Emirates" +#> [3811,] "Abu Dhabi" +#> [3812,] "Yemen" +#> [3813,] "Sanaa" +#> [3814,] "Former North Yemen (before 1990)" +#> [3815,] "Former South Yemen (before 1990)" +#> [3816,] "Near and Middle East Asia (aggregate changing according to the context)" +#> [3817,] "Other Near and Middle East Asian countries" +#> [3818,] "Gulf Arabian Countries" +#> [3819,] "Other Western Asian countries" +#> [3820,] "Asian Republics of the former Soviet Union" +#> [3821,] "Other Asian countries (aggregate changing according to the context)" +#> [3822,] "Asian countries, not specified" +#> [3823,] "Other Asian and Oceanian countries (aggregate changing according to the context)" +#> [3824,] "Oceania and southern polar regions" +#> [3825,] "Oceania" +#> [3826,] "Australia and New Zealand" +#> [3827,] "Australia" +#> [3828,] "Canberra" +#> [3829,] "Australian Oceania" +#> [3830,] "Christmas Island (AU)" +#> [3831,] "Cocos (Keeling) Islands (AU)" +#> [3832,] "Heard Island and McDonald Islands (AU)" +#> [3833,] "Norfolk Island (AU)" +#> [3834,] "New Zealand" +#> [3835,] "Wellington" +#> [3836,] "New Zealand Oceania" +#> [3837,] "Melanesia" +#> [3838,] "Fiji" +#> [3839,] "Suva" +#> [3840,] "New Caledonia (FR)" +#> [3841,] "Noumea" +#> [3842,] "Papua New Guinea" +#> [3843,] "Port Moresby" +#> [3844,] "Solomon Islands" +#> [3845,] "Honiara" +#> [3846,] "Vanuatu" +#> [3847,] "Port Vila" +#> [3848,] "Micronesia" +#> [3849,] "Guam (US)" +#> [3850,] "Kiribati" +#> [3851,] "Marshall Islands" +#> [3852,] "Federated States of Micronesia" +#> [3853,] "Palikir" +#> [3854,] "Nauru" +#> [3855,] "Northern Mariana Islands (US)" +#> [3856,] "Palau" +#> [3857,] "Polynesia" +#> [3858,] "American Samoa (US)" +#> [3859,] "Cook Islands (NZ)" +#> [3860,] "French Polynesia (FR)" +#> [3861,] "Niue (NZ)" +#> [3862,] "Pitcairn Islands (UK)" +#> [3863,] "Samoa" +#> [3864,] "Apia" +#> [3865,] "Tokelau (NZ)" +#> [3866,] "Tonga" +#> [3867,] "Nuku'alofa" +#> [3868,] "Tuvalu" +#> [3869,] "Wallis and Futuna (FR)" +#> [3870,] "American Oceania (US)" +#> [3871,] "United States Minor Outlying Islands (US)" +#> [3872,] "Other Oceanian countries (aggregate changing according to the context)" +#> [3873,] "Oceanian countries, not specified" +#> [3874,] "Southern polar regions" +#> [3875,] "Antarctica" +#> [3876,] "Bouvet Island (NO)" +#> [3877,] "South Georgia and the South Sandwich Islands (UK)" +#> [3878,] "French Southern and Antarctic Lands (FR)" +#> [3879,] "National institutions" +#> [3880,] "National parliament" +#> [3881,] "National government" +#> [3882,] "International Organizations" +#> [3883,] "Institutions and bodies of the European Union" +#> [3884,] "EU institutions except the institutions of the euro area (aggregate changing according to the context)" +#> [3885,] "EU institutions except the ECB" +#> [3886,] "European Parliament" +#> [3887,] "European Council" +#> [3888,] "Council of the European Union" +#> [3889,] "European Commission" +#> [3890,] "Eurostat" +#> [3891,] "Court of Justice of the European Union" +#> [3892,] "European Central Bank (ECB)" +#> [3893,] "European Court of Auditors" +#> [3894,] "European Economic and Social Committee (EESC)" +#> [3895,] "European Committee of the Regions (CoR)" +#> [3896,] "European Investment Bank (EIB)" +#> [3897,] "European Investment Fund" +#> [3898,] "European Stability Mechanism" +#> [3899,] "European Financial Stability Facility" +#> [3900,] "European Development Fund" +#> [3901,] "Single Resolution Board (SRB)" +#> [3902,] "All EU institutions financed via the EU Budget" +#> [3903,] "Other small EU institutions financed via the EU Budget" +#> [3904,] "Other EU institutions financed via the EU Budget" +#> [3905,] "EU institutions not financed via the EU Budget" +#> [3906,] "European Coal and Steel Community" +#> [3907,] "European Monetary Institute" +#> [3908,] "European Monetary Cooperation Fund" +#> [3909,] "European Atomic Energy Community" +#> [3910,] "United Nations Organization" +#> [3911,] "United Nations Children's Fund (UNICEF)" +#> [3912,] "United Nations High Commissioner for Refugees, Office of the (UNHCR)" +#> [3913,] "United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA)" +#> [3914,] "International Labour Organization (ILO)" +#> [3915,] "Food and Agricultural Organization (FAO)" +#> [3916,] "United Nations Educational, Scientific and Cultural Organization (UNESCO)" +#> [3917,] "World Health Organization (WHO)" +#> [3918,] "International Bank for Reconstruction and Development" +#> [3919,] "International Development Association" +#> [3920,] "International Finance Corporation (IFC)" +#> [3921,] "Multilateral Investment Guarantee Agency (MIGA)" +#> [3922,] "International Monetary Fund" +#> [3923,] "International Telecommunication Union (ITU)" +#> [3924,] "International Fund for Agricultural Development (IFAD)" +#> [3925,] "World Trade Organization" +#> [3926,] "International Atomic Energy Agency (IAEA)" +#> [3927,] "United Nations Organization except IMF, WTO, IBRD, IDA" +#> [3928,] "Other International Organizations" +#> [3929,] "African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement" +#> [3930,] "African ACP states" +#> [3931,] "Caribbean ACP states" +#> [3932,] "Pacific ACP states" +#> [3933,] "African Development Bank" +#> [3934,] "Partner Countries in Asia and Latin America" +#> [3935,] "Asia-Pacific Economic Cooperation" +#> [3936,] "Asian Development Bank" +#> [3937,] "Association of Southeast Asian Nations" +#> [3938,] "Bank for International Settlements" +#> [3939,] "BRIC countries" +#> [3940,] "BRICS countries" +#> [3941,] "Andean Community of Nations" +#> [3942,] "Caribbean Community" +#> [3943,] "Central African Economic and Monetary Community" +#> [3944,] "Common Market for Eastern and Southern Africa" +#> [3945,] "Development assistance committee (DAC)" +#> [3946,] "European Aviation Safety Agency (EASA)" +#> [3947,] "Non-EASA member countries" +#> [3948,] "European Bank for Reconstruction and Development" +#> [3949,] "Economic Community of Central African States" +#> [3950,] "Economic Community of West African States" +#> [3951,] "European Higher Education Area (Bologna Process)" +#> [3952,] "European Space Agency" +#> [3953,] "Mediterranean countries in the Euro-Mediterranean Partnership" +#> [3954,] "Facility for Euro-Mediterranean Investment and Partnership" +#> [3955,] "Franc Zone" +#> [3956,] "Group of Twenty" +#> [3957,] "Group of Twenty except the EU27 countries (from 2020)" +#> [3958,] "Inter-American Development Bank" +#> [3959,] "Investment Facility" +#> [3960,] "Mashrek" +#> [3961,] "Maghreb" +#> [3962,] "Mediterranean Basin Countries" +#> [3963,] "Mediterranean Basin Countries except Croatia" +#> [3964,] "Southern Common Market" +#> [3965,] "North American Free Trade Agreement" +#> [3966,] "Nordic Investment Bank" +#> [3967,] "Countries and territories receiving Official Development Assistance" +#> [3968,] "Organisation for Economic Co-operation and Development (OECD)" +#> [3969,] "Organisation for Economic Co-operation and Development (OECD - 34 countries)" +#> [3970,] "Non-OECD countries" +#> [3971,] "Organization of Petroleum Exporting Countries (OPEC)" +#> [3972,] "Organization of Petroleum Exporting Countries (OPEC - 12 countries)" +#> [3973,] "Portuguese-speaking African Countries" +#> [3974,] "Southern African Development Community" +#> [3975,] "Supranational organizations based in EU27 (from 2020)" +#> [3976,] "Other supranational organizations based in EU27 (from 2020)" +#> [3977,] "Supranational organizations based in EFTA countries" +#> [3978,] "Supranational organizations based in the United Kingdom" +#> [3979,] "West African Economic and Monetary Union" +#> [3980,] "United States-Mexico-Canada Agreement (USMCA)" +#> [3981,] "Non European International Organizations" +#> [3982,] "Controlled by the reporting country" +#> [3983,] "Dynamic Asian economies (DAEs)" +#> [3984,] "Domestic country" +#> [3985,] "Domestic and foreign country" +#> [3986,] "Domestic and outbound" +#> [3987,] "Equally-shared control of UCI (Ultimate controlling institutional unit of a foreign affiliate) of more than 1 Member State" +#> [3988,] "Euronext from 01/2001: Amsterdam-Brussels-Paris; from 02/2002: + Lisbon" +#> [3989,] "Foreign country and stateless" +#> [3990,] "Foreign country" +#> [3991,] "In the same region" +#> [3992,] "Least developed countries" +#> [3993,] "Lower middle income countries" +#> [3994,] "More advanced developing countries and territories" +#> [3995,] "Member State of head office" +#> [3996,] "Reporting country" +#> [3997,] "Core Newly Industrializing Countries" +#> [3998,] "Asian NICs of the second wave of industrialization" +#> [3999,] "Latin American NICs of the second wave of industrialization" +#> [4000,] "Offshore financial centers" +#> [4001,] "Other low income countries" +#> [4002,] "Nordic and Baltic marketplace" +#> [4003,] "Outbound" +#> [4004,] "In another region" +#> [4005,] "Outside any country" +#> [4006,] "Recognised non-citizens" +#> [4007,] "Stateless" +#> [4008,] "Third country" +#> [4009,] "Third country - country of citizenship" +#> [4010,] "Other third country" +#> [4011,] "Transit country" +#> [4012,] "Total" +#> [4013,] "Upper middle income countries" +#> [4014,] "Upper middle income countries except China" +#> [4015,] "All countries of the world" +#> [4016,] "World - not allocated" +#> [4017,] "Rest of the world" +#> [4018,] "World total except for the reporting country" +#> [4019,] "Others" +#> [4020,] "Not allocated" +#> [4021,] "Not applicable" +#> [4022,] "No response" +#> [4023,] "Not specified" +#> [4024,] "Unknown" options(timeout=2) # }
diff --git a/docs/reference/extract_toc.html b/docs/reference/extract_toc.html index 324612b..2a21ab0 100644 --- a/docs/reference/extract_toc.html +++ b/docs/reference/extract_toc.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -101,9 +101,9 @@

Examples

#> title.en title.fr #> 1: Current account - quarterly data Compte courant - données trimestrielles #> title.de code lastUpdate lastModified -#> 1: Leistungsbilanz - vierteljährliche Daten ei_bpm6ca_q 17.02.2023 17.02.2023 +#> 1: Leistungsbilanz - vierteljährliche Daten ei_bpm6ca_q 22.02.2023 22.02.2023 #> dataStart dataEnd values unit.en unit.fr unit.de shortDescription.en -#> 1: 1992Q1 2022Q4 261211 +#> 1: 1992-Q1 2022-Q4 261241 #> shortDescription.fr shortDescription.de #> 1: #> metadata.html diff --git a/docs/reference/filter_raw_data.html b/docs/reference/filter_raw_data.html index a692531..1b78d3e 100644 --- a/docs/reference/filter_raw_data.html +++ b/docs/reference/filter_raw_data.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -104,20 +104,19 @@

Examples

rd<-get_eurostat_raw(id) dsd<-get_eurostat_dsd(id) ft<-create_filter_table(c("TIME_SP","Hungary",'T'),FALSE,dsd) -#> The DSD is missing from the create_filter_table function. filter_raw_data(rd,ft) -#> FREQ unit sex age acl00 geo time values -#> 1: A PTP_RT F TOTAL AC0 AT 2010 100 -#> 2: A PTP_RT F TOTAL AC0 BE 2010 100 -#> 3: A PTP_RT F TOTAL AC0 DE 2010 100 -#> 4: A PTP_RT F TOTAL AC0 EE 2010 100 -#> 5: A PTP_RT F TOTAL AC0 EL 2010 100 -#> --- -#> 98375: A TIME_SP T Y65-74 TOTAL LV 2000 24:00 -#> 98376: A TIME_SP T Y65-74 TOTAL NO 2000 24:00 -#> 98377: A TIME_SP T Y65-74 TOTAL PL 2000 24:00 -#> 98378: A TIME_SP T Y65-74 TOTAL SI 2000 24:00 -#> 98379: A TIME_SP T Y65-74 TOTAL UK 2000 24:00 +#> freq unit sex age acl00 geo time values +#> 1: A TIME_SP T TOTAL AC0 HU 2010 11:32 +#> 2: A TIME_SP T TOTAL AC01 HU 2010 8:34 +#> 3: A TIME_SP T TOTAL AC02 HU 2010 1:42 +#> 4: A TIME_SP T TOTAL AC03 HU 2010 1:16 +#> 5: A TIME_SP T TOTAL AC1A HU 2010 2:23 +#> --- +#> 388: A TIME_SP T Y_GE65 AC9A HU 2010 0:36 +#> 389: A TIME_SP T Y_GE65 AC9B HU 2010 0:00 +#> 390: A TIME_SP T Y_GE65 AC9C HU 2010 0:01 +#> 391: A TIME_SP T Y_GE65 AC9D HU 2010 0:09 +#> 392: A TIME_SP T Y_GE65 TOTAL HU 2010 24:00 options(timeout=60) # } diff --git a/docs/reference/get_compressed_sdmx.html b/docs/reference/get_compressed_sdmx.html index b26eeb3..6aada01 100644 --- a/docs/reference/get_compressed_sdmx.html +++ b/docs/reference/get_compressed_sdmx.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -89,6 +89,8 @@

Examples

url<-paste0(base_url,url_end) options(timeout=2) sdmx_xml<-get_compressed_sdmx(url,verbose=TRUE,format="zip") +#> get_compressed_sdmx - url:https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/agr_r_milkpr.sdmx.zip +#> get_compressed_sdmx - format:zip options(timeout=60) diff --git a/docs/reference/get_eurostat_bulk.html b/docs/reference/get_eurostat_bulk.html index 6fb6fd3..911e875 100644 --- a/docs/reference/get_eurostat_bulk.html +++ b/docs/reference/get_eurostat_bulk.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -188,23 +188,33 @@

Examples

#> There are multiple frequencies in the dataset. The 'M' is selected as it is the most common frequency. dt<-get_eurostat_bulk("avia_par_ee",select_freq="A",verbose=TRUE) #> +#> get_eurostat_bulk - API version:2 +#> get_eurostat_bulk - API version:2 #> get_eurostat_bulk - charactertxtlogicallogicalNULLlogicallogicallogicallogicalfunctionlogical -#> get_eurostat_raw - bulk url: http://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/avia_par_ee.tsv.gz +#> +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - bulk url: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/avia_par_ee?format=TSV&compressed=true #> get_eurostat_raw - class:data.tabledata.frame #> get_eurostat_raw - caching in raw:FALSE local filter:FALSE called from:restatapi::get_eurostat_rawidtxtcacheupdate_cachecache_dircompress_filestringsAsFactorskeep_flagscheck_tocTRUEverbose #> get_eurostat_raw - FALSE options(restatapi_update=FALSE) dt<-get_eurostat_bulk("agr_r_milkpr",cache_dir=tempdir(),compress_file=FALSE,verbose=TRUE) #> +#> get_eurostat_bulk - API version:2 +#> get_eurostat_bulk - API version:2 #> get_eurostat_bulk - charactertxtlogicallogicalcharacterlogicallogicallogicallogicalfunctionlogical -#> get_eurostat_raw - bulk url: http://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/agr_r_milkpr.tsv.gz +#> +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - bulk url: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/agr_r_milkpr?format=TSV&compressed=true #> get_eurostat_raw - class:data.tabledata.frame #> get_eurostat_raw - caching in raw:FALSE local filter:FALSE called from:restatapi::get_eurostat_rawidtxtcacheupdate_cachecache_dircompress_filestringsAsFactorskeep_flagscheck_tocTRUEverbose #> get_eurostat_raw - FALSE clean_restatapi_cache(cache_dir=tempdir(),verbose=TRUE) #> #> clean_restatapi_cache - All objects except from 'cfg', 'rav', 'cc' and 'dmethod' are removed from '.restatapi_env'. -#> clean_restatapi_cache - The cache folder /tmp/Rtmp4WguyY/restatapi is empty. +#> clean_restatapi_cache - The cache folder /tmp/RtmpttPyyZ/restatapi is empty. options(timeout=60) # } diff --git a/docs/reference/get_eurostat_cache.html b/docs/reference/get_eurostat_cache.html index 1e0d843..d8f7068 100644 --- a/docs/reference/get_eurostat_cache.html +++ b/docs/reference/get_eurostat_cache.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/get_eurostat_data.html b/docs/reference/get_eurostat_data.html index 42ab694..133c99b 100644 --- a/docs/reference/get_eurostat_data.html +++ b/docs/reference/get_eurostat_data.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -266,8 +266,6 @@

Examples

#> Could not download the DSD. The filter is ignored #> None of the filter could be applied. The whole dataset will be retrieved through bulk download. dt<-get_eurostat_data("agr_r_milkpr",date_filter=2008,keep_flags=TRUE) -#> Problem by the extraction of the footer information from the xml_file. -#> 404 - No data retrived with the given filter(s) dt<-get_eurostat_data("avia_par_me", filters="BE$", exact_match=FALSE, @@ -276,17 +274,11 @@

Examples

label=TRUE, name=FALSE) #> Could not download the DSD. The filter is ignored -#> Problem by the extraction of the footer information from the xml_file. -#> Problem by the extraction of the footer information from the xml_file. -#> Problem by the extraction of the footer information from the xml_file. -#> 404 - No data retrived with the given filter(s) +#> Could not download the DSD. No label is applied. dt<-get_eurostat_data("agr_r_milkpr", filters=c("BE$","Hungary"), date_filter="2007-06<", keep_flags=TRUE) -#> Could not download the DSD. The filter is ignored -#> Problem by the extraction of the footer information from the xml_file. -#> 404 - No data retrived with the given filter(s) dt<-get_eurostat_data("nama_10_a10_e", filters=c("Annual","EU28","Belgium","AT","Total","EMP_DC","person"), date_filter=c("2008",2002,2013:2018)) @@ -299,17 +291,11 @@

Examples

filters=c("EU28",eu$EA15,"HU$"), date_filter=c("2015",2007)) #> Could not download the DSD. The filter is ignored -#> Problem by the extraction of the footer information from the xml_file. -#> Problem by the extraction of the footer information from the xml_file. -#> 404 - No data retrived with the given filter(s) dt<-get_eurostat_data("avia_par_me", filters="Q...ME_LYPG_HU_LHBP+ME_LYTV_UA_UKKK", date_filter=c("2016-08","2017-07-01"), select_freq="M") #> Could not download the DSD. The filter is ignored -#> Problem by the extraction of the footer information from the xml_file. -#> Problem by the extraction of the footer information from the xml_file. -#> 404 - No data retrived with the given filter(s) dt<-get_eurostat_data("htec_cis3", filters="lu", ignore.case=TRUE) @@ -331,7 +317,7 @@

Examples

clean_restatapi_cache("/tmp",verbose=TRUE) #> #> clean_restatapi_cache - All objects except from 'cfg', 'rav', 'cc' and 'dmethod' are removed from '.restatapi_env'. -#> clean_restatapi_cache - Deleted all .rds files from /tmp; /tmp/Rtmp4WguyY/restatapi +#> clean_restatapi_cache - Deleted all .rds files from /tmp; /tmp/RtmpttPyyZ/restatapi options(timeout=60) # } diff --git a/docs/reference/get_eurostat_dsd.html b/docs/reference/get_eurostat_dsd.html index 1a8e868..70932f1 100644 --- a/docs/reference/get_eurostat_dsd.html +++ b/docs/reference/get_eurostat_dsd.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -133,14 +133,25 @@

Examples

options(timeout=2) dsd<-get_eurostat_dsd("med_rd6",lang="de",cache=FALSE,verbose=TRUE) #> -#> get_eurostat_dsd - Trying to download the DSD from: http://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_med_rd6?= -#> get_eurostat_dsd - Warning by the download of the DSD file: -#> cannot open URL 'https://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_med_rd6?=': HTTP status was '404 Not Found' -#> utils::download.file(dsd_endpoint, temp, dmethod) -#> get_eurostat_dsd - The dsd_xml is NULL. Please check in a browser the url below. If it provides valid reponse you can try again to download the DSD. -#> http://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_med_rd6?= +#> get_eurostat_dsd - API version:2 +#> get_eurostat_dsd - API version:2 +#> +#> get_eurostat_dsd - Trying to download the DSD from: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/datastructure/ESTAT/med_rd6?references=children +#> Trying to extract the DSD from: /tmp/RtmpttPyyZ/file1775da6cc10 +#> get_eurostat_dsd - concepts:freq,unit,geo,OBS_FLAG +#> get_eurostat_dsd - DSD NULL:FALSE +#> get_eurostat_dsd - Trying to download the CC from: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/contentconstraint/ESTAT/med_rd6 +#> Trying to extract the CC from: /tmp/RtmpttPyyZ/file1777c65af95 +#> character +#> number of nodes: 4 +#> number of cores: 1 head(dsd) -#> NULL +#> concept code name +#> 2 freq A Jährlich +#> 111 unit THS_T Tausend Tonnen +#> 140 unit MIO_TKM Millionen Tonnenkilometer (TKM) +#> 4251 geo MA Marokko +#> 4496 geo JO Jordanien options(timeout=60) # } diff --git a/docs/reference/get_eurostat_raw.html b/docs/reference/get_eurostat_raw.html index c04529f..b2f4054 100644 --- a/docs/reference/get_eurostat_raw.html +++ b/docs/reference/get_eurostat_raw.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -184,7 +184,10 @@

Examples

dt<-get_eurostat_raw("avia_par_ee",mode="xml",check_toc=TRUE,update_cache=TRUE) options(restatapi_update=FALSE) dt<-get_eurostat_raw("avia_par_me",mode="txt",cache_dir=tempdir(),compress_file=FALSE,verbose=TRUE) -#> get_eurostat_raw - bulk url: http://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/avia_par_me.tsv.gz +#> +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - API version:2 +#> get_eurostat_raw - bulk url: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/avia_par_me?format=TSV&compressed=true #> get_eurostat_raw - class:data.tabledata.frame #> get_eurostat_raw - caching in raw:FALSE local filter:FALSE called from:get_eurostat_rawavia_par_metxttempdir()FALSETRUE #> get_eurostat_raw - FALSE diff --git a/docs/reference/get_eurostat_toc.html b/docs/reference/get_eurostat_toc.html index 421d19e..b1cc499 100644 --- a/docs/reference/get_eurostat_toc.html +++ b/docs/reference/get_eurostat_toc.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -141,25 +141,28 @@

Examples

# \donttest{ options(timeout=2) toc_xml<-get_eurostat_toc(cache=FALSE,verbose=TRUE) -#> get_eurostat_toc - Downloading https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?sort=1&downfile=table_of_contents.xml +#> +#> get_eurostat_toc - API version:2 - number of cores:1 +#> get_eurostat_toc - API version:2 - number of cores:1 +#> get_eurostat_toc - Downloading https://ec.europa.eu/eurostat/api/dissemination/catalogue/toc/xml #> xml_nodeset -#> number of nodes: 9101 +#> number of nodes: 8979 #> number of cores: 1 head(toc_xml) #> title code type -#> 1: Current account - quarterly data ei_bpm6ca_q dataset -#> 2: Financial account - quarterly data ei_bpm6fa_q dataset -#> 3: Current account - monthly data ei_bpm6ca_m dataset -#> 4: Financial account - monthly data ei_bpm6fa_m dataset -#> 5: International investment position - quarterly data ei_bpm6iip_q dataset +#> 1: Current account - quarterly data ei_bpm6ca_q table +#> 2: Financial account - quarterly data ei_bpm6fa_q table +#> 3: Current account - monthly data ei_bpm6ca_m table +#> 4: Financial account - monthly data ei_bpm6fa_m table +#> 5: International investment position - quarterly data ei_bpm6iip_q table #> 6: Consumers - monthly data ei_bsco_m dataset #> lastUpdate lastModified dataStart dataEnd values unit shortDescription -#> 1: 2023.02.17 2023.02.17 1992Q1 2022Q4 261211 -#> 2: 2023.02.17 2023.02.17 1992Q1 2022Q4 47152 -#> 3: 2023.02.17 2023.02.17 1991M01 2022M12 210223 -#> 4: 2023.02.17 2023.02.17 1991M01 2022M12 68989 -#> 5: 2023.02.16 2023.02.16 1992Q4 2022Q3 56979 -#> 6: 2023.02.20 2023.01.30 1980M01 2023M01 298161 +#> 1: 2023.02.22 2023.02.22 1992-Q1 2022-Q4 261241 +#> 2: 2023.02.17 2023.02.17 1992-Q1 2022-Q4 47152 +#> 3: 2023.02.17 2023.02.17 1991-01 2022-12 210223 +#> 4: 2023.02.17 2023.02.17 1991-01 2022-12 68989 +#> 5: 2023.02.22 2023.02.22 1992-Q4 2022-Q3 56985 +#> 6: 2023.02.20 2023.01.30 1980-01 2023-01 298161 #> metadata.html #> 1: https://ec.europa.eu/eurostat/cache/metadata/en/ei_bp_esms.htm #> 2: https://ec.europa.eu/eurostat/cache/metadata/en/ei_bp_esms.htm @@ -190,7 +193,20 @@

Examples

#> 6: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/ei_bsco_m.sdmx.zip toc_txt<-get_eurostat_toc(mode="txt", lang="de") head(toc_txt) -#> NULL +#> title code type +#> 5 Leistungsbilanz - vierteljährliche Daten ei_bpm6ca_q table +#> 6 Finanzierungskonto - vierteljährliche Daten ei_bpm6fa_q table +#> 7 Leistungsbilanz - monatliche Daten ei_bpm6ca_m table +#> 8 Finanzierungskonto - monatliche Daten ei_bpm6fa_m table +#> 9 Auslandsvermögensstatus - vierteljährliche Daten ei_bpm6iip_q table +#> 12 Verbraucher - monatliche Daten ei_bsco_m dataset +#> lastUpdate lastModified dataStart dataEnd values +#> 5 2023.02.22 2023.02.22 1992-Q1 2022-Q4 261241 +#> 6 2023.02.17 2023.02.17 1992-Q1 2022-Q4 47152 +#> 7 2023.02.17 2023.02.17 1991-01 2022-12 210223 +#> 8 2023.02.17 2023.02.17 1991-01 2022-12 68989 +#> 9 2023.02.22 2023.02.22 1992-Q4 2022-Q3 56985 +#> 12 2023.02.20 2023.01.30 1980-01 2023-01 298161 options(timeout=60) # } diff --git a/docs/reference/index.html b/docs/reference/index.html index 3b9171d..b10ed1d 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 diff --git a/docs/reference/load_cfg.html b/docs/reference/load_cfg.html index ca2011a..dc5ba50 100644 --- a/docs/reference/load_cfg.html +++ b/docs/reference/load_cfg.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -124,8 +124,8 @@

Examples

load_cfg(parallel=FALSE) options(restatapi_dmethod="auto") load_cfg(api_version="test",verbose=TRUE,max_cores=FALSE) -#> restatapi: - version 0.20.1 -#> - config file with the API version 3 loaded from GitHub (the 'current' API version number is 1). +#> restatapi: - version 0.20.3 +#> - config file with the API version 3 loaded from GitHub (the 'current' API version number is 2). #> - no parallel computing. #> - 'auto' method will be used for file download, can be changed with 'options(restatapi_dmethod=...)' #> - the Table of contents (TOC) was not pre-loaded into the deafult cache ('.restatapi_env'). diff --git a/docs/reference/put_eurostat_cache.html b/docs/reference/put_eurostat_cache.html index 98ab1bc..38cde4c 100644 --- a/docs/reference/put_eurostat_cache.html +++ b/docs/reference/put_eurostat_cache.html @@ -17,7 +17,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -114,7 +114,7 @@

Examples

#> 2 b 2 #> 3 c 3 put_eurostat_cache(dt,"teszt",cache_dir=tempdir()) -#> [1] "in the file /tmp/Rtmp4WguyY/teszt.rds" +#> [1] "in the file /tmp/RtmpttPyyZ/teszt.rds" readRDS(file.path(tempdir(),"teszt.rds")) #> txt nr #> 1 a 1 diff --git a/docs/reference/search_eurostat_dsd.html b/docs/reference/search_eurostat_dsd.html index f6a2b4e..be29de3 100644 --- a/docs/reference/search_eurostat_dsd.html +++ b/docs/reference/search_eurostat_dsd.html @@ -19,7 +19,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -117,23 +117,96 @@

Examples

options(timeout=2) dsd_example<-get_eurostat_dsd("nama_10_gdp",verbose=TRUE) #> -#> get_eurostat_dsd - Trying to download the DSD from: http://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_nama_10_gdp?= -#> get_eurostat_dsd - Warning by the download of the DSD file: -#> cannot open URL 'https://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_nama_10_gdp?=': HTTP status was '404 Not Found' -#> utils::download.file(dsd_endpoint, temp, dmethod) -#> get_eurostat_dsd - The dsd_xml is NULL. Please check in a browser the url below. If it provides valid reponse you can try again to download the DSD. -#> http://ec.europa.eu/eurostat/SDMX/diss-web/rest/datastructure/ESTAT/DSD_nama_10_gdp?= +#> get_eurostat_dsd - API version:2 +#> get_eurostat_dsd - API version:2 +#> +#> get_eurostat_dsd - Trying to download the DSD from: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/datastructure/ESTAT/nama_10_gdp?references=children +#> Trying to extract the DSD from: /tmp/RtmpttPyyZ/file1777c2bfa4b +#> get_eurostat_dsd - concepts:freq,unit,na_item,geo,OBS_FLAG +#> get_eurostat_dsd - DSD NULL:FALSE +#> get_eurostat_dsd - Trying to download the CC from: https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/contentconstraint/ESTAT/nama_10_gdp +#> Trying to extract the CC from: /tmp/RtmpttPyyZ/file17794aa435 +#> character +#> number of nodes: 5 +#> number of cores: 1 +#> get_eurostat_dsd - The DSD of the nama_10_gdp dataset was cached in memory ('nama_10_gdp.dsd' in '.restatapi_env'). search_eurostat_dsd("EU",dsd_example) -#> No DSD were provided. -#> NULL +#> pattern concept code +#> 475 EU unit PC_EU27_2020_MEUR_CP +#> 477 EU unit PC_EU27_2020_MPPS_CP +#> 658 EU unit CP_MEUR +#> 661 EU unit CP_MPPS_EU27_2020 +#> 667 EU unit CLV15_MEUR +#> 668 EU unit CLV10_MEUR +#> 669 EU unit CLV05_MEUR +#> 685 EU unit PYP_MEUR +#> 692 EU unit PD15_EUR +#> 693 EU unit PD10_EUR +#> 694 EU unit PD05_EUR +#> 698 EU unit PD_PCH_PRE_EUR +#> 1354 EU geo EU27_2020 +#> 1357 EU geo EU28 +#> 1360 EU geo EU15 +#> name +#> 475 Percentage of EU27 (from 2020) total (based on million euro), current prices +#> 477 Percentage of EU27 (from 2020) total (based on million purchasing power standards), current prices +#> 658 Current prices, million euro +#> 661 Current prices, million purchasing power standards (PPS, EU27 from 2020) +#> 667 Chain linked volumes (2015), million euro +#> 668 Chain linked volumes (2010), million euro +#> 669 Chain linked volumes (2005), million euro +#> 685 Previous year prices, million euro +#> 692 Price index (implicit deflator), 2015=100, euro +#> 693 Price index (implicit deflator), 2010=100, euro +#> 694 Price index (implicit deflator), 2005=100, euro +#> 698 Price index (implicit deflator), percentage change on previous period, euro +#> 1354 European Union - 27 countries (from 2020) +#> 1357 European Union - 28 countries (2013-2020) +#> 1360 European Union - 15 countries (1995-2004) search_eurostat_dsd("EU",dsd_example,ignore.case=TRUE) -#> No DSD were provided. -#> NULL +#> pattern concept code +#> 475 EU unit PC_EU27_2020_MEUR_CP +#> 477 EU unit PC_EU27_2020_MPPS_CP +#> 658 EU unit CP_MEUR +#> 661 EU unit CP_MPPS_EU27_2020 +#> 667 EU unit CLV15_MEUR +#> 668 EU unit CLV10_MEUR +#> 669 EU unit CLV05_MEUR +#> 685 EU unit PYP_MEUR +#> 692 EU unit PD15_EUR +#> 693 EU unit PD10_EUR +#> 694 EU unit PD05_EUR +#> 698 EU unit PD_PCH_PRE_EUR +#> 1354 EU geo EU27_2020 +#> 1357 EU geo EU28 +#> 1360 EU geo EU15 +#> 1369 EU geo EA +#> 1370 EU geo EA20 +#> 1371 EU geo EA19 +#> 1377 EU geo EA12 +#> name +#> 475 Percentage of EU27 (from 2020) total (based on million euro), current prices +#> 477 Percentage of EU27 (from 2020) total (based on million purchasing power standards), current prices +#> 658 Current prices, million euro +#> 661 Current prices, million purchasing power standards (PPS, EU27 from 2020) +#> 667 Chain linked volumes (2015), million euro +#> 668 Chain linked volumes (2010), million euro +#> 669 Chain linked volumes (2005), million euro +#> 685 Previous year prices, million euro +#> 692 Price index (implicit deflator), 2015=100, euro +#> 693 Price index (implicit deflator), 2010=100, euro +#> 694 Price index (implicit deflator), 2005=100, euro +#> 698 Price index (implicit deflator), percentage change on previous period, euro +#> 1354 European Union - 27 countries (from 2020) +#> 1357 European Union - 28 countries (2013-2020) +#> 1360 European Union - 15 countries (1995-2004) +#> 1369 Euro area (EA11-1999, EA12-2001, EA13-2007, EA15-2008, EA16-2009, EA17-2011, EA18-2014, EA19-2015, EA20-2023) +#> 1370 Euro area – 20 countries (from 2023) +#> 1371 Euro area - 19 countries (2015-2022) +#> 1377 Euro area - 12 countries (2001-2006) search_eurostat_dsd("EU27_2019",dsd_example,name=FALSE) -#> No DSD were provided. #> NULL search_eurostat_dsd("EU27_2019",dsd_example,exact_match=TRUE) -#> No DSD were provided. #> NULL options(timeout=60) # } diff --git a/docs/reference/search_eurostat_toc.html b/docs/reference/search_eurostat_toc.html index bf84beb..00232c5 100644 --- a/docs/reference/search_eurostat_toc.html +++ b/docs/reference/search_eurostat_toc.html @@ -18,7 +18,7 @@ restatapi - 0.20.1 + 0.20.3 @@ -111,9 +111,12 @@

Examples

# \donttest{ options(timeout=2) head(search_eurostat_toc("energy",verbose=TRUE)) -#> get_eurostat_toc - Downloading https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?sort=1&downfile=table_of_contents.xml +#> +#> get_eurostat_toc - API version:2 - number of cores:1 +#> get_eurostat_toc - API version:2 - number of cores:1 +#> get_eurostat_toc - Downloading https://ec.europa.eu/eurostat/api/dissemination/catalogue/toc/xml #> xml_nodeset -#> number of nodes: 9101 +#> number of nodes: 8979 #> number of cores: 1 #> get_eurostat_toc - The TOC was cached in memory ('toc.xml.en' in '.restatapi_env'). #> title @@ -124,12 +127,12 @@

Examples

#> 5: ENP countries: energy #> 6: Psychological well-being (energy and vitality index) by sex, age and educational attainment level (average score) #> code type lastUpdate lastModified dataStart dataEnd values -#> 1: enps_nrg_bal_c1 dataset 2022.02.10 2022.02.10 2005 2020 280 -#> 2: med_eg10 dataset 2020.05.28 2021.02.08 2005 2018 391 -#> 3: med_eg20 dataset 2016.10.28 2021.02.08 2000 2015 776 -#> 4: cpc_energy dataset 2016.10.11 2021.02.08 2000 2015 926 -#> 5: enpr_energy dataset 2020.01.14 2021.02.08 2005 2018 262 -#> 6: hlth_ehis_st8 dataset 2014.03.20 2021.02.08 2008 2008 1455 +#> 1: enps_nrg_bal_c1 dataset 2022.02.10 2022.02.10 280 +#> 2: med_eg10 dataset 2020.05.28 2021.02.08 391 +#> 3: med_eg20 dataset 2016.10.28 2021.02.08 776 +#> 4: cpc_energy dataset 2016.10.11 2021.02.08 926 +#> 5: enpr_energy dataset 2020.01.14 2021.02.08 262 +#> 6: hlth_ehis_st8 dataset 2014.03.20 2021.02.08 1455 #> unit shortDescription #> 1: #> 2: @@ -168,20 +171,27 @@

Examples

nrow(search_eurostat_toc("energy")) #> [1] 88 head(search_eurostat_toc("energie",lang="de",ignore.case=TRUE)) -#> title code type lastUpdate -#> 1: Energie - monatliche Daten ei_isen_m dataset 2023.02.21 -#> 2: Energiebilanz enps_nrg_bal_c dataset 2022.02.10 -#> 3: Endenergieverbrauch nach Sektor enps_nrg_bal_c1 dataset 2022.02.10 -#> 4: Primäre Energierzeugung med_eg10 dataset 2020.05.28 -#> 5: Sekundäre Energierzeugung (Umsetzung) med_eg20 dataset 2016.10.28 -#> 6: Energieverbrauch med_eg30 dataset 2020.05.28 -#> lastModified dataStart dataEnd values unit shortDescription -#> 1: 2023.02.21 2008M01 2023M01 70664 -#> 2: 2022.02.10 2005 2020 552 -#> 3: 2022.02.10 2005 2020 280 -#> 4: 2021.02.08 2005 2018 391 -#> 5: 2021.02.08 2000 2015 776 -#> 6: 2021.02.08 2005 2018 177 +#> title +#> 1: Energie - monatliche Daten +#> 2: Energiebilanz +#> 3: Endenergieverbrauch nach Sektor +#> 4: Energie - historische daten (2004-2007, ehemalige Methode und Quelle) +#> 5: Primäre Energierzeugung +#> 6: Sekundäre Energierzeugung (Umsetzung) +#> code type lastUpdate lastModified dataStart dataEnd values +#> 1: ei_isen_m table 2023.02.22 2023.02.22 2008-01 2023-01 70668 +#> 2: enps_nrg_bal_c dataset 2022.02.10 2022.02.10 552 +#> 3: enps_nrg_bal_c1 dataset 2022.02.10 2022.02.10 280 +#> 4: med_eg_all dataset 2014.12.08 2021.02.08 935 +#> 5: med_eg10 dataset 2020.05.28 2021.02.08 391 +#> 6: med_eg20 dataset 2016.10.28 2021.02.08 776 +#> unit shortDescription +#> 1: +#> 2: +#> 3: +#> 4: +#> 5: +#> 6: #> metadata.html #> 1: https://ec.europa.eu/eurostat/cache/metadata/en/ei_is_esms.htm #> 2: https://ec.europa.eu/eurostat/cache/metadata/en/enps_esms.htm @@ -200,16 +210,16 @@

Examples

#> 1: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/ei_isen_m.tsv.gz #> 2: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/enps_nrg_bal_c.tsv.gz #> 3: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/enps_nrg_bal_c1.tsv.gz -#> 4: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg10.tsv.gz -#> 5: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg20.tsv.gz -#> 6: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg30.tsv.gz +#> 4: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg_all.tsv.gz +#> 5: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg10.tsv.gz +#> 6: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg20.tsv.gz #> downloadLink.sdmx #> 1: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/ei_isen_m.sdmx.zip #> 2: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/enps_nrg_bal_c.sdmx.zip #> 3: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/enps_nrg_bal_c1.sdmx.zip -#> 4: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg10.sdmx.zip -#> 5: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg20.sdmx.zip -#> 6: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg30.sdmx.zip +#> 4: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg_all.sdmx.zip +#> 5: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg10.sdmx.zip +#> 6: https://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing?file=data/med_eg20.sdmx.zip nrow(search_eurostat_toc("energie",lang="de",ignore.case=TRUE)) #> [1] 106 options(timeout=60)