From 48b96dc1a5f1f1a47039180c96b46d8125daaa26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=B3ra=20Kocsis?= <dora@dynare.org> Date: Mon, 20 Apr 2020 15:29:51 +0200 Subject: [PATCH] remove old files from archive, add option to use jsonencode --- archive/get_dataset.m | 101 ------------------------------- archive/get_dseries.m | 17 ------ archive/get_series.m | 22 ------- archive/rdb.m | 10 --- archive/run_all_tests_matlab.m | 37 ----------- archive/test_dataset.json | 1 - src/utils/iter_filtered_series.m | 10 ++- 7 files changed, 8 insertions(+), 190 deletions(-) delete mode 100644 archive/get_dataset.m delete mode 100644 archive/get_dseries.m delete mode 100644 archive/get_series.m delete mode 100644 archive/rdb.m delete mode 100644 archive/run_all_tests_matlab.m delete mode 100644 archive/test_dataset.json diff --git a/archive/get_dataset.m b/archive/get_dataset.m deleted file mode 100644 index 583e41f..0000000 --- a/archive/get_dataset.m +++ /dev/null @@ -1,101 +0,0 @@ -function [dd, dat] = get_dataset(provider,dataset, varargin) -if numel(varargin) > 0 - options = parse_options(varargin); -else - options = ['?limit=1000&offset=0&q=&observations=1&align_periods=1&' ... - 'dimensions={}']; -end -default_api_base_url = 'https://api.db.nomics.world/v22/series/'; -url = join([default_api_base_url, provider, '/', dataset, options]); -dat = webread(join(url)); -docs = dat.series.docs; -nseries = dat.dataset.nb_series; -nrow = 1; -for id = 1:nseries - nrow = nrow + length(docs(id).period); -end -dimensions_codes = dat.dataset.dimensions_codes_order; -ndim = length(dimensions_codes); -ncol = ndim + 10; -dd = cell(nrow,ncol); -dd{1,1} = '@frequency'; -dd{1,2} = 'dataset_code'; -dd{1,3} = 'dataset_name'; -dd{1,4} = 'indexed_at'; -dd{1,5} = 'original_period'; -dd{1,6} = 'period'; -dd{1,7} = 'provider_code'; -dd{1,8} = 'series_code'; -dd{1,9} = 'series name'; -dd{1,10} = 'value'; -for i = 1:ndim - dd{1,10+i} = dimensions_codes{i}; -end - -row = 2; -for i = 1:nseries - doc = docs(i); - x_frequency = doc.x_frequency; - dataset_code = doc.dataset_code; - dataset_name = doc.dataset_name; - series_code = doc.series_code; - series_name = doc.series_name; - indexed_at = doc.indexed_at; - provider_code = doc.provider_code; - dimensions = doc.dimensions; - period = doc.period; - period_start_day = doc.period_start_day; - value = doc.value; - for j = 1:length(period) - dd{row,1} = x_frequency; - dd{row,2} = dataset_code; - dd{row,3} = dataset_name; - dd{row,4} = indexed_at; - dd{row,5} = period{j}; - dd{row,6} = period_start_day{j}; - dd{row,7} = provider_code; - dd{row,8} = series_code; - dd{row,9} = series_name; - if iscell(value) - dd{row,10} = value{j}; - else - dd{row,10} = value(j); - end - for k = 1:ndim - dim_code = dimensions.(dimensions_codes{k}); - dd{row,10+k} = dim_code; - end - row = row + 1; - end -end - -function options_str = parse_options(arguments) -i = 1; -options = struct(); -options.limit = 1000; -options.dimensions = '{}'; -options.mask = ''; -while i <= length(arguments) - if arguments{1} == 'limit' - options.limit = arguments{2}; - i = i + 2; - elseif arguments{1} == 'dimensions' - if ~isempty(options.mask) - error('rdb: you can''t use both option dimension and option mask'); - end - elseif arguments =='mask' - if options.dimensions ~= '{}' - error('rdb: you can''t use both option dimension and option mask'); - end - options.mask = arguments{2}; - i = i+2; - else - disp_usage(); - end -end - -options_str = sprintf('?limit=%d0&q=&observations=1&align_periods=1&dimensions=%s',... - options.limit, options.dimensions); -if options.mask - options_str = options_str + '&' + options.mask; -end \ No newline at end of file diff --git a/archive/get_dseries.m b/archive/get_dseries.m deleted file mode 100644 index 2e7a3c1..0000000 --- a/archive/get_dseries.m +++ /dev/null @@ -1,17 +0,0 @@ -function [dd, dat] = get_dseries(provider,dataset,series_id) -%url = join(['https://api.db.nomics.world/v22/series/', provider, '/',... -% dataset, '/', series_id, '?observations=true']) -%json = urlread(join(url)) -%save test json -f = fopen("test.json"); -json = fgets(f); -fclose(f); -dat = jsondecode(json); -dd = '' -docs = dat.series.docs; -first_period = docs.period{1}; -if docs.x_frequency == 'annual' - first_period = join([first_period, 'A']); -end -dd = dseries(docs.value, first_period, docs.series_code, docs.series_name) - diff --git a/archive/get_series.m b/archive/get_series.m deleted file mode 100644 index 01cf95b..0000000 --- a/archive/get_series.m +++ /dev/null @@ -1,22 +0,0 @@ -function [dd, dat] = get_series(provider,dataset,series_id) -%url = join(['https://api.db.nomics.world/v22/series/', provider, '/',... -% dataset, '/', series_id, '?observations=true']) -%json = urlread(join(url)) -%save test json -f = fopen("test.json"); -json = fgets(f); -fclose(f); -dat = jsondecode(json); -dd = '' -docs = dat.series.docs; -first_period = docs.period{1}; -if docs.x_frequency == 'annual' - first_period = join([first_period, 'A']); -end -dd = struct() -dd.values = docs.value -dd.periods = docs.period -dd.code = docs.series_code -dd.name = docs.series_name - - diff --git a/archive/rdb.m b/archive/rdb.m deleted file mode 100644 index 75f2f9a..0000000 --- a/archive/rdb.m +++ /dev/null @@ -1,10 +0,0 @@ -function data = rdb(str, varargin) -if nargin == 0 - [d, dd] = get_series(str) -elseif nargin == 1 - [d, dd] = get_dataset(str, varargin{1}) -elseif nargin == 2 - [d, dd] = get_series(str, varargin{1}, varargin{2}) -elseif nargin > 1 - [d, dd] = get_dataset(str, vararin{1}, varargin{2:end}) -end diff --git a/archive/run_all_tests_matlab.m b/archive/run_all_tests_matlab.m deleted file mode 100644 index 3b2dbbc..0000000 --- a/archive/run_all_tests_matlab.m +++ /dev/null @@ -1,37 +0,0 @@ -function run_all_tests() -r = []; -r = [r; run_this_test('test_fetch_series_by_code')]; -r = [r; run_this_test('test_fetch_series_by_code_mask')]; -r = [r; run_this_test('test_fetch_series_by_code_mask_with_plus_in_dimension_code')]; -r = [r; run_this_test('test_fetch_series_by_id')]; -r = [r; run_this_test('test_fetch_series_by_ids_in_same_dataset')]; -r = [r; run_this_test('test_fetch_series_by_ids_in_different_datasets')]; -r = [r; run_this_test('test_fetch_series_by_dimension')]; -r = [r; run_this_test('test_fetch_series_of_dataset')]; -r = [r; run_this_test('test_fetch_series_by_api_link')]; -r = [r; run_this_test('test_fetch_series_with_na_values')]; -r = [r; run_this_test('test_fetch_series_with_max_nb_series')]; -r = [r; run_this_test('test_fetch_series_with_filter_on_one_series')]; -print_results(r); - - -function o = run_this_test(file) -try - tstart = tic; - run([file '.m']); - elapsed = toc(tstart); - o = {file, true, elapsed}; -catch - o = {file, false, NaN}; -end - -function print_results(r) -message = sprintf('Testsuite results:\n'); -for i = 1:size(r, 1) - if r{i,2} - message = sprintf('%s\n%s\t\t PASS (%ss)', message, r{i,1}, num2str(r{i,3})); - else - message = sprintf('%s\n%s\t\t FAILED', message, r{i,1}); - end -end -disp(message) diff --git a/archive/test_dataset.json b/archive/test_dataset.json deleted file mode 100644 index 63513bc..0000000 --- a/archive/test_dataset.json +++ /dev/null @@ -1 +0,0 @@ -{"_meta":{"args":{"align_periods":true,"complete_missing_periods":false,"dataset_code":"UVGD","dimensions":{},"facets":false,"format":"json","limit":1000,"metadata":true,"observations":true,"offset":0,"provider_code":"AMECO","q":"","series_code":null},"version":"22.0.0"},"dataset":{"code":"UVGD","converted_at":"2019-05-08T02:51:04Z","dimensions_codes_order":["freq","unit","geo"],"dimensions_labels":{"freq":"Frequency","geo":"Country","unit":"Unit"},"dimensions_values_labels":{"freq":{"a":"Annually"},"geo":{"alb":"Albania","aus":"Australia","aut":"Austria","bel":"Belgium","bgr":"Bulgaria","can":"Canada","che":"Switzerland","cyp":"Cyprus","cze":"Czechia","d-w":"West Germany","da12":"EA12 (including D_W West-Germany)","deu":"Germany","dnk":"Denmark","du15":"EU15 (including D_W West-Germany)","ea12":"Euro area (12 countries)","ea19":"Euro area","esp":"Spain","est":"Estonia","eu15":"European Union (15 countries)","eu27":"European Union excluding UK","eu28":"European Union","fin":"Finland","fra":"France","gbr":"United Kingdom","grc":"Greece","hrv":"Croatia","hun":"Hungary","irl":"Ireland","isl":"Iceland","ita":"Italy","jpn":"Japan","kor":"Korea","ltu":"Lithuania","lux":"Luxembourg","lva":"Latvia","mex":"Mexico","mkd":"North Macedonia","mlt":"Malta","mne":"Montenegro","nld":"Netherlands","nor":"Norway","nzl":"New Zealand","pol":"Poland","prt":"Portugal","rom":"Romania","srb":"Serbia","svk":"Slovakia","svn":"Slovenia","swe":"Sweden","tur":"Turkey","usa":"United States"},"unit":{"eur-eu-15-100":"(EUR: EU-15 = 100)","eur-eu-28-100":"(EUR: EU-28 = 100)","mrd-all":"Mrd ALL","mrd-aud":"Mrd AUD","mrd-bgn":"Mrd BGN","mrd-cad":"Mrd CAD","mrd-chf":"Mrd CHF","mrd-czk":"Mrd CZK","mrd-dkk":"Mrd DKK","mrd-ecu-eur":"Mrd ECU\/EUR","mrd-ecu-eur-standard-aggregation":"Mrd ECU\/EUR, Standard aggregation","mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur":"Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR)","mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps":"Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS)","mrd-eur":"Mrd EUR","mrd-euro-ats":"Mrd EURO-ATS","mrd-euro-bef":"Mrd EURO-BEF","mrd-euro-cyp":"Mrd EURO-CYP","mrd-euro-dem":"Mrd EURO-DEM","mrd-euro-eek":"Mrd EURO-EEK","mrd-euro-esp":"Mrd EURO-ESP","mrd-euro-fim":"Mrd EURO-FIM","mrd-euro-frf":"Mrd EURO-FRF","mrd-euro-grd":"Mrd EURO-GRD","mrd-euro-iep":"Mrd EURO-IEP","mrd-euro-itl":"Mrd EURO-ITL","mrd-euro-ltl":"Mrd EURO-LTL","mrd-euro-luf":"Mrd EURO-LUF","mrd-euro-lvl":"Mrd EURO-LVL","mrd-euro-mtl":"Mrd EURO-MTL","mrd-euro-nlg":"Mrd EURO-NLG","mrd-euro-pte":"Mrd EURO-PTE","mrd-euro-sit":"Mrd EURO-SIT","mrd-euro-skk":"Mrd EURO-SKK","mrd-gbp":"Mrd GBP","mrd-hrk":"Mrd HRK","mrd-huf":"Mrd HUF","mrd-isk":"Mrd ISK","mrd-jpy":"Mrd JPY","mrd-mkd":"Mrd MKD","mrd-mxn":"Mrd MXN","mrd-nok":"Mrd NOK","mrd-nzd":"Mrd NZD","mrd-pln":"Mrd PLN","mrd-pps":"(Mrd PPS)","mrd-pps-standard-aggregation":"Mrd PPS, Standard aggregation","mrd-ron":"Mrd RON","mrd-rsd":"Mrd RSD","mrd-sek":"Mrd SEK","mrd-try":"Mrd TRY","mrd-usd":"Mrd USD","mrd-won":"Mrd WON","pps-eu-15-100":"(PPS: EU-15 = 100)","pps-eu-28-100":"(PPS: EU-28 = 100)"}},"indexed_at":"2019-05-08T03:03:09.312Z","json_data_commit_ref":"4a1f3cf5b7c19a386dcecf8ca299c1ef90eefef5","name":"Gross domestic product at current prices","nb_series":430,"provider_code":"AMECO","provider_name":"Annual macro-economic database of the European Commission's Directorate General for Economic and Financial Affairs"},"errors":null,"provider":{"code":"AMECO","converted_at":"2019-05-15T08:02:53Z","created_at":"2017-03-03T16:31:12Z","indexed_at":"2019-05-15T08:02:59.330Z","json_data_commit_ref":"f08b34fd8221e14849f9ea0afed42d979258fe8b","name":"Annual macro-economic database of the European Commission's Directorate General for Economic and Financial Affairs","region":"EU","slug":"ameco","terms_of_use":"https:\/\/ec.europa.eu\/info\/legal-notice_en#copyright-notice","website":"https:\/\/ec.europa.eu\/info\/business-economy-euro\/indicators-statistics\/economic-databases\/macro-economic-database-ameco_en"},"series":{"docs":[{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"mrd-all"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ALL \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",334.359,331.324,384.848,443.594,501.199,563.449,610.494,677.738,737.656,804.163,872.735,965.528,1080.676,1143.936,1239.645,1300.624,1332.811,1350.053,1395.305,1434.307,1472.479,1551.281,1626.196,1723.768,1823.99]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.38574,8.17122,9.41527,10.45218,11.42758,12.21561,12.88283,13.89239,15.01359,16.25196,17.81449,19.1647,19.62584,21.46349,22.37314,23.07369,22.48232,23.97812,25.24237,24.83315,26.23492,27.59691,29.18614,30.78943]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1003936,0.1061043,0.1164034,0.1202605,0.1265366,0.13079,0.1363496,0.1406603,0.1458757,0.1497097,0.1557501,0.1677268,0.1828365,0.1924023,0.1954394,0.1980306,0.191465,0.1975572,0.1975701,0.192853,0.1987275,0.2032543,0.2085534,0.2131174]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.090155,0.0952945,0.1046371,0.1081896,0.1136021,0.1171485,0.1217293,0.1250472,0.1293783,0.1324311,0.1369743,0.1464463,0.1591638,0.1671413,0.1692698,0.1711168,0.1653502,0.1703957,0.1702269,0.1660161,0.1705143,0.173775,0.1776979,0.1811433]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.51978,1.96171,2.27888,3.02284,3.78042,4.36656,4.61236,4.92876,5.77771,6.47542,7.0907,7.81016,8.80008,8.66237,8.99688,9.26832,9.58578,9.62462,9.96869,10.26611,10.72207,11.56577,12.74845,13.83014,14.63445]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0339797,0.0250708,0.0278946,0.0352051,0.0411309,0.0458131,0.0467664,0.0492048,0.0550882,0.0594984,0.0618546,0.064736,0.0732345,0.0761322,0.0760828,0.0762726,0.0772673,0.0769966,0.0770266,0.075259,0.0780337,0.0822434,0.0881235,0.0926358,0.0949316]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"alb","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ALB.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Albania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0325207,0.0239459,0.0265768,0.0335945,0.0391308,0.0434082,0.0442328,0.0465717,0.0520059,0.0558014,0.0577794,0.0600517,0.0672455,0.070251,0.0700608,0.0701218,0.0710891,0.070786,0.0708405,0.0692315,0.0716798,0.0751719,0.0802757,0.0842039,0.0860988]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"mrd-aud"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd AUD \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",40.314,44.484,49.748,60.272,71.159,83.234,96.074,104.92,118.587,134.424,152.143,175.615,189.157,213.378,234.973,260.242,285.706,323.892,367.526,403.852,414.473,422.433,443.383,465.753,494.567,527.599,555.291,588.097,620.141,661.159,705.066,754.253,800.96,861.039,922.371,996.43,1086.593,1177.313,1260.145,1301.211,1416.622,1499.458,1536.307,1598.53,1624.392,1662.337,1764.512,1847.675,1937.524,2020.822,2099.361]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",36.9627,41.1137,44.8287,50.925,58.6005,68.1049,77.4763,84.2219,93.3369,105.3278,121.1113,138.4181,146.6618,160.9553,179.5797,195.7164,206.5743,223.3646,242.8129,265.6557,276.5732,290.9661,311.1136,325.4061,343.994,339.1918,360.8904,388.1181,412.4,444.722,471.2364,493.2852,514.758,538.8715,571.9321,610.0399,641.233,680.1248,673.2797,686.3849,722.1122,748.6484,753.8915,811.4802,824.3648,849.224,864.1522,886.3198,919.9683,959.8867,999.9773]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.7010664,4.713301,4.6172646,4.5336784,4.4966083,4.6502053,4.6107671,4.5274877,4.5629319,4.5297821,4.6168969,4.759379,4.6114079,4.737773,4.869667,4.9389025,4.9358679,5.0682221,5.0444488,5.0362421,4.868509,4.7972806,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.673855,4.8042087,5.0070361,5.0606369,5.1319551,5.1913443,5.2756529,5.3550645,5.4982145,5.4219437,5.4621023,5.5114088,5.7033206,5.7908049,5.9272997,5.9069031,5.9462531,5.8924487,6.3944364,6.4731343,6.5397763,6.4702971,6.9107664,6.7919917,6.6468128,6.7109614,6.7138066,6.7756659,6.8589966,6.9216139]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.6087953,4.6577125,4.7376142,4.8094932,4.9424401,4.8777276,4.9037697,4.9365639,5.0917722,5.1480332,5.2569668,5.2251632,5.2294272,5.1448393,5.5665198,5.6232584,5.664092,5.5909373,5.9681751,5.8581824,5.7269105,5.7770817,5.7606524,5.7929481,5.8442076,5.8831606]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",44.17,48.101,52.876,69.556,84.967,87.8,105.01,101.954,106.535,109.637,132.436,186.105,196.07,216.113,261.913,238.299,193.306,196.616,242.756,289.959,254.245,265.506,250.574,270.154,304.398,298.884,342.054,384.847,347.087,400.134,443.732,435.513,460.946,495.436,545.624,610.572,651.899,720.141,723.547,734.029,982.189,1112.032,1238.247,1160.293,1103.619,1124.979,1185.603,1254.22,1226.531,1277.664,1330.787]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5.6176643,5.514356,5.4461357,6.1923699,6.5197899,5.9949547,6.2493737,5.4807323,5.2081209,4.7151124,5.0486262,6.3990412,6.1649296,6.3613487,7.1022871,6.0134831,4.6188312,4.4612949,5.0432757,5.496979,4.4754697,4.3747931,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.2648797,3.8693565,4.156865,4.4781186,4.2361938,4.6126672,4.9183632,4.2485245,4.6601133,4.8277992,4.5693164,4.673705,4.9460397,5.2023089,5.610147,5.686744,5.9690244,6.0213721,6.4512652,8.3059515,9.1513441,9.9810314,9.2822941,8.5274991,8.2470161,8.628647,8.9186679,8.4783865,8.5579397,8.6326234]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aus","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUS.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Australia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.0113542,4.3094244,4.06111,4.4146104,4.6976911,4.0478037,4.4469137,4.5930289,4.3294567,4.4204999,4.6813553,4.9112293,5.2615506,5.312078,5.5371096,5.528951,5.9529068,7.6485347,8.4133646,9.1829672,8.5335792,7.8426457,7.5865164,7.9260654,8.1518239,7.7233432,7.7789734,7.8294084]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"mrd-euro-ats"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-ATS \u2013 Austria","value":[12.5877,13.9664,14.8473,16.0026,17.5211,19.0481,20.7513,22.0697,23.7111,25.888,29.0471,32.4272,37.0577,41.9973,47.8008,50.7026,56.0069,61.9116,65.4837,71.8301,77.1518,82.215,88.36,94.1468,98.8575,104.33,109.8806,114.086,119.6454,127.9812,137.5487,147.4644,155.7894,160.928,168.9546,176.6088,182.5409,188.7238,196.3466,203.8506,213.6065,220.5251,226.7352,231.8625,242.3483,254.075,267.8245,283.978,293.7619,288.044,295.8966,310.1287,318.653,323.9102,333.1461,344.2585,356.2376,369.8992,386.0938,399.9475,414.0001]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Austria","value":[7.5874,8.2533,8.7934,9.5262,10.5458,11.3357,12.4529,13.2223,14.2307,15.9221,18.2842,20.5725,23.2171,26.573,31.3608,35.3991,40.6509,46.0222,48.9177,56.4464,63.896,70.5723,78.0117,84.298,89.4073,96.0007,101.0755,104.7629,113.2554,124.2906,135.5586,146.9141,154.1637,155.8897,162.5214,158.3849,166.4603,174.8912,183.9598,192.4819,206.2604,207.4745,216.437,221.2847,233.3795,244.8697,257.5534,269.3752,271.6984,259.6928,268.8549,281.4282,295.9834,298.5296,307.4265,323.9025,328.3285,334.7012,347.5668,359.5432,371.7456]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Austria","value":[2.4046926,2.4005519,2.3443423,2.3241598,2.3223973,2.2841599,2.3204759,2.3077609,2.2825807,2.2832209,2.3254561,2.358444,2.3913171,2.3657056,2.4064132,2.41705,2.4192121,2.474001,2.3914232,2.4275641,2.4357881,2.4265645,2.4528791,2.4813402,2.4244582,2.4225762,2.4150878,2.3771072,2.3528861,2.3562738,2.3862331,2.4222344,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Austria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.3599146,2.3805917,2.3986811,2.3909197,2.3963556,2.3945012,2.3772797,2.38874,2.3797044,2.3731878,2.2973463,2.3173466,2.3420379,2.3629646,2.3792147,2.3725275,2.355116,2.3778659,2.4193266,2.4100604,2.4584005,2.5402867,2.5423518,2.5329057,2.5351609,2.5497826,2.5353369,2.5598669,2.5691631,2.5731382]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Austria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.1520672,2.1483642,2.1348323,2.1453763,2.1391575,2.1349841,2.0625131,2.0756452,2.0909089,2.1006786,2.1101435,2.0987043,2.0712048,2.0761722,2.1060855,2.0936368,2.1292176,2.1950435,2.1955887,2.1846646,2.184301,2.1949616,2.175397,2.1885932,2.1890553,2.1870889]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Austria","value":[6.3074,6.9253,7.3451,7.9166,8.6678,9.4233,10.2658,10.9692,12.1965,13.4036,15.0387,17.0446,19.6653,23.9619,30.0355,32.3797,38.4672,45.2145,48.8028,53.9831,59.0826,63.861,72.8099,81.1257,86.4517,91.7746,101.0398,107.7385,112.8717,120.8731,131.0751,140.6117,150.786,162.5404,171.7086,184.3511,186.9677,187.8541,195.0116,203.8506,213.6065,220.5251,226.7352,231.8625,242.3483,254.075,267.8245,283.978,293.7619,288.044,295.8966,310.1287,318.653,323.9102,333.1461,344.2585,356.2376,369.8992,386.0938,399.9475,414.0001]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Austria","value":[1.999024,2.014285,1.9582219,1.9314582,1.9088267,1.8987963,1.9129364,1.9145133,1.9563124,1.9220752,1.9126814,1.9540093,2.0254815,2.1332448,2.304721,2.2108879,2.2892612,2.4305804,2.3858091,2.3216256,2.2522953,2.1957999,2.2893219,2.3879612,2.3443121,2.3159309,2.4142363,2.444624,2.3449133,2.2914851,2.3073109,2.3168881,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Austria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.2586781,2.3284333,2.501015,2.5260762,2.6128759,2.5212945,2.4007818,2.3870404,2.3741195,2.3240377,2.3137039,2.2989553,2.3147292,2.3106954,2.3345299,2.336326,2.3538045,2.4446939,2.5315744,2.5022722,2.5521692,2.5685394,2.591268,2.5741701,2.5236972,2.5926452,2.6303271,2.6688705,2.6788943,2.6855597]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"aut","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"AUT.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Austria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.4134671,2.4309169,2.5048846,2.4130361,2.293066,2.2742651,2.2655038,2.2110224,2.1922493,2.1744059,2.1908578,2.1814074,2.1894698,2.1823993,2.1834847,2.2447696,2.3360111,2.3042171,2.3463581,2.3631639,2.3822549,2.3674355,2.3215755,2.3815409,2.4041666,2.4311941,2.4350542,2.4356841]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"mrd-euro-bef"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-BEF \u2013 Belgium","value":[15.0465,15.9788,17.082,18.3754,20.5667,22.4149,24.0671,25.7964,27.5827,30.5948,34.0175,37.0149,41.086,46.6836,54.42,60.4461,68.7026,74.3168,79.5314,85.4614,92.4303,96.9084,104.8662,111.0965,120.0289,127.6579,133.6202,139.0046,148.7275,161.2698,171.0073,179.1514,188.1226,193.753,204.1941,211.6158,215.9424,225.9687,234.4896,244.226,258.222,265.7884,275.0651,282.6365,298.7108,311.4808,326.6621,344.7125,354.0659,348.7811,365.1005,379.1063,387.5001,392.3398,400.0866,411.0102,424.6603,439.0519,450.5768,463.0862,476.0404]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Belgium","value":[9.7789,10.6029,11.6039,12.6102,14.0797,15.2414,16.3416,17.4964,18.7765,21.0768,23.9933,26.6468,29.8027,34.5122,40.8306,45.6421,52.9527,57.4086,62.887,70.4887,81.9191,90.3563,98.4945,103.6807,112.6191,119.9252,125.674,131.479,144.1013,157.5058,169.7959,181.1579,189.0492,188.3349,197.9284,192.3586,198.2353,210.3164,216.6819,228.7632,251.4221,258.6134,270.5386,273.455,284.3381,296.8798,309.015,322.9704,322.7447,312.0908,333.9616,343.8009,356.2135,357.5213,368.5461,386.1332,389.2775,396.7711,406.8204,419.6079,432.0066]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Belgium","value":[3.0992295,3.0839617,3.0936358,3.0765796,3.1006246,3.0711615,3.0450939,3.0537251,3.011728,3.022409,3.0515689,3.0548115,3.0696205,3.0725012,3.1330654,3.1164452,3.1513192,3.0860945,3.0743385,3.0314735,3.1228488,3.1068179,3.0969084,3.0518768,3.0538954,3.0263119,3.002842,2.9833057,2.9937109,2.985961,2.988912,2.986826,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Belgium","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.9099803,2.9192929,2.8979159,2.9118065,2.9103756,2.8515798,2.8588111,2.8136408,2.8282593,2.8928081,2.8636021,2.8966018,2.8941995,2.8789194,2.8845576,2.8465812,2.8236933,2.8246158,2.9074721,2.9936872,3.0032537,3.0572137,3.0447394,3.0364738,3.0222355,3.0231092,3.0055116,2.9962766,2.9983634,2.9902507]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Belgium","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.6136872,2.5584585,2.5672546,2.5269885,2.5423712,2.6024487,2.5708865,2.5944836,2.5838639,2.5593631,2.5583359,2.5180455,2.4832947,2.4662402,2.5310286,2.6006376,2.6011142,2.6417164,2.6294534,2.6189987,2.6039657,2.6024214,2.5788213,2.5617076,2.5547553,2.5416218]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Belgium","value":[11.4936,12.0784,12.8825,13.8579,15.5105,16.9044,18.1504,19.5458,21.6289,24.1481,26.8484,29.3549,33.5771,39.397,47.8152,53.5098,64.2053,73.3301,80.0847,85.8329,91.8427,94.6678,94.6128,98.6316,106.5522,114.6579,123.0704,130.2812,138.1501,149.9658,162.6,171.1602,182.454,193.1239,207.713,221.4303,221.6643,224.8911,232.8686,244.226,258.222,265.7884,275.0651,282.6365,298.7108,311.4808,326.6621,344.7125,354.0659,348.7811,365.1005,379.1063,387.5001,392.3398,400.0866,411.0102,424.6603,439.0519,450.5768,463.0862,476.0404]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Belgium","value":[3.6426751,3.5131296,3.4345059,3.3809941,3.4157141,3.4062444,3.38215,3.411416,3.4692526,3.4628227,3.4146849,3.3652633,3.4583708,3.5073843,3.6690134,3.6536522,3.8209837,3.9419846,3.9150763,3.6913735,3.501145,3.2550631,2.9748598,2.903253,2.8893776,2.8933901,2.9406336,2.9561265,2.8700745,2.8430187,2.8622424,2.8202421,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Belgium","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.7493856,2.8174509,2.9716058,3.0557507,3.1384143,2.9891843,2.874115,2.8504296,2.8443467,2.8094544,2.7885973,2.7889905,2.8216166,2.8480901,2.8619941,2.8495874,2.857214,2.9465453,3.0653833,3.0874998,3.119813,3.123489,3.1387019,3.0914096,3.0130418,3.0906157,3.1220674,3.1146086,3.1018045,3.0880069]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bel","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BEL.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Belgium","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.8675849,2.9406381,3.0087022,2.8608359,2.7451622,2.7157616,2.7142181,2.6728338,2.642214,2.6378927,2.6706194,2.6887337,2.6841591,2.6618449,2.6504678,2.7055801,2.8285833,2.8431239,2.8682262,2.8737408,2.8855325,2.8431349,2.7717287,2.8389645,2.8536261,2.837237,2.81947,2.800686]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"mrd-bgn"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd BGN \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0656,0.196,0.2901,0.4318,0.7591,1.2679,2.1677,18.8567,26.3042,24.8677,27.9278,30.751,33.8062,36.3567,40.8864,46.651,53.2191,63.464,72.7559,72.9859,74.7713,80.759,82.0404,81.8661,83.756,88.5752,94.13,101.0425,107.9253,114.4732,121.0286]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",56.8947,54.2372,53.7494,55.7163,54.3999,48.3401,40.8798,43.8388,41.309,45.6618,48.0398,52.0108,55.0487,59.583,66.4757,71.1946,79.6196,84.8413,80.0912,84.5227,86.9058,89.494,88.4412,93.3698,98.0865,101.1213,104.6655,109.0611,114.7766,120.7476]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.9139129,0.83753,0.8270448,0.8196651,0.8230679,0.6953636,0.5556756,0.569252,0.5107142,0.5253746,0.53194,0.5568695,0.5826253,0.6032771,0.6458944,0.6558293,0.6961049,0.7425191,0.7461382,0.757676,0.7591608,0.7680853,0.7531868,0.7692794,0.7677154,0.7853031,0.7928331,0.8032468,0.820151,0.8357872]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.739163,0.6238854,0.4990049,0.5112569,0.4590898,0.4726413,0.4775654,0.4987875,0.5201523,0.5363141,0.5728487,0.5801374,0.6121889,0.6483113,0.6495323,0.6581986,0.6575082,0.663697,0.6504562,0.6635137,0.6614655,0.6760224,0.6802752,0.6867468,0.6988096,0.7103936]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",14.49644,5.7906,5.68163,13.36378,11.78888,14.43027,9.62794,9.91636,13.35826,12.71482,14.33855,15.78437,17.34354,18.65389,20.93249,23.8527,27.21088,32.44911,37.20006,37.31766,38.23052,41.29204,41.94724,41.85811,42.82444,45.28847,48.12864,51.66302,55.18218,58.53009,61.88189]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2551803,0.0954128,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0930156,0.0877356,0.2056291,0.173431,0.2045256,0.1298345,0.1267314,0.1635119,0.1480815,0.1560033,0.1656064,0.1758528,0.1862255,0.199583,0.2191669,0.23737,0.2689605,0.3095798,0.3279792,0.3232992,0.3398082,0.3381205,0.3348631,0.3308981,0.3320016,0.3502732,0.3673721,0.3814464,0.3920413,0.401419]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"bgr","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"BGR.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Bulgaria","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.198431,0.1668977,0.1960724,0.1242597,0.1210453,0.1557868,0.1413068,0.1484171,0.1569131,0.1663258,0.1762597,0.188416,0.2055486,0.2217311,0.2494987,0.2842627,0.3026429,0.2977101,0.3124055,0.3110851,0.3078529,0.3043233,0.3054118,0.3217525,0.3357848,0.3474767,0.3563567,0.3640693]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"mrd-cad"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd CAD \u2013 Canada","value":[40.596,42.074,45.642,49.01,53.698,59.197,66.236,71.222,77.796,85.658,92.151,100.582,112.317,131.776,157.407,177.418,204.368,225.806,250.233,285.692,321.266,368.355,388.176,421.311,461.98,500.02,526.622,574.327,626.885,671.567,695.487,701.761,718.423,747.025,791.959,831.594,859.805,906.897,940.536,1007.914,1106.059,1144.533,1193.687,1254.739,1335.723,1421.572,1496.572,1577.662,1657.042,1571.334,1666.047,1774.063,1827.202,1902.247,1994.892,1990.439,2028.223,2141.508,2217.539,2283.268,2369.037]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Canada","value":[25.332,26.988,30.0,32.82,36.507,40.617,45.006,47.777,51.852,57.497,63.25,70.492,78.983,92.189,108.535,125.198,144.628,161.211,178.504,202.943,230.7,264.113,277.073,298.32,334.926,367.481,386.31,411.129,449.252,485.576,508.371,521.516,540.856,558.521,594.18,579.192,606.741,651.644,685.366,738.392,789.552,814.393,834.025,868.303,917.173,995.611,1027.934,1072.104,1060.83,994.608,1044.113,1079.454,1109.528,1141.69,1195.169,1199.383,1178.25,1208.5,1244.015,1285.319,1331.156]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Canada","value":[8.0286221,7.8498858,7.9980358,8.0073591,8.0396051,8.1844392,8.3864433,8.3387848,8.3169746,8.2450158,8.0443823,8.0812312,8.135083,8.2073144,8.3282396,8.5485162,8.6070777,8.6661602,8.72647,8.7278781,8.7945594,9.0812779,8.7118601,8.7811368,9.0821854,9.2733683,9.2304486,9.3286634,9.3332286,9.2054364,8.9488406,8.5984549,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Canada","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",8.3772319,8.3518835,8.5939882,8.7412288,8.7631531,8.7278589,8.8577413,8.8995588,9.1289327,9.0844141,9.0177002,8.9297323,9.1899654,9.2863635,9.6736079,9.4691097,9.3732856,9.2842328,9.2658808,9.3596054,9.4295067,9.5225594,9.7229121,9.8470705,9.3874815,9.1502302,9.1542996,9.1623064,9.1844132,9.2139535]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Canada","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.8698232,7.8306996,7.9543824,7.9928761,8.2061554,8.1725853,8.0959166,7.9983531,8.2045555,8.2555893,8.5795959,8.3762409,8.2433281,8.1062878,8.0661853,8.1307566,8.1668839,8.2283752,8.3967592,8.4932282,8.0882775,7.8769084,7.8546703,7.8334389,7.8255786,7.8315793]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Canada","value":[39.633,38.91,39.867,42.376,46.43,51.164,57.268,61.871,69.941,77.514,86.046,95.068,101.143,106.976,133.881,143.603,185.393,186.0,172.14,177.93,197.57,275.317,321.279,384.159,452.629,479.847,385.152,375.328,430.585,514.887,468.215,494.264,457.994,494.489,487.449,463.327,496.575,577.936,564.866,636.312,806.998,825.556,804.472,793.295,826.178,942.228,1051.194,1074.813,1062.6,991.405,1220.452,1289.194,1422.82,1390.153,1360.644,1403.14,1383.622,1462.057,1449.974,1517.507,1576.341]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Canada","value":[12.5611062,11.3174178,10.6287044,10.3386974,10.2247434,10.3096321,10.6712584,10.7985692,11.2184393,11.1155117,10.9437246,10.8986432,10.4174918,9.5237261,10.2731492,9.8051953,11.03311,9.9987472,8.4153472,7.6521574,7.5315793,9.4665235,10.1018078,11.3078471,12.2739406,12.1089405,9.2027827,8.5163275,8.9454301,9.7611129,8.2419794,8.1440889,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Canada","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.9394748,7.0723317,7.6087268,7.1710682,6.5669117,6.6964099,7.3860391,6.9142464,7.4107237,8.7801368,8.661562,8.1568529,7.9196194,7.8772818,8.6575235,9.1699335,8.9087887,8.8429876,8.7133059,10.3208466,10.6092761,11.468803,11.1211644,10.5134969,10.2861695,10.0698019,10.3965844,10.0229338,10.1644397,10.2255009]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"can","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CAN.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Canada","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.3423837,6.9009283,6.2954983,6.4088822,7.0546498,6.5875841,7.071684,8.3531688,8.2068858,7.714943,7.4958056,7.4365321,8.119573,8.5657808,8.2641544,8.1198179,8.0402056,9.5039506,9.7537266,10.5517794,10.2241253,9.6691457,9.462355,9.2498753,9.5026663,9.1303407,9.2392455,9.274078]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"mrd-chf"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd CHF \u2013 Switzerland","value":[43.7528,49.2204,54.5827,60.021,66.5307,71.2548,76.5176,82.3657,87.9504,95.2972,106.1505,120.5865,136.644,152.2741,165.1997,164.0934,166.2067,170.6908,177.581,185.6244,199.4223,214.086,226.8078,233.6599,249.7385,264.7921,277.8983,288.4967,306.266,330.5806,358.5061,374.4372,382.2254,390.608,400.2528,405.1446,407.9933,415.8252,427.7565,435.5066,459.4473,470.2181,469.7882,475.2704,490.1425,508.9,540.289,576.0876,600.4311,589.2132,608.8306,621.2561,626.4141,638.177,649.7183,654.2579,660.3927,668.5716,689.898,704.4331,724.3626]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Switzerland","value":[11.8536,13.2661,14.4965,15.837,17.3767,18.7159,19.9314,21.1615,22.6063,25.1341,28.657,31.9251,35.009,39.3674,45.3479,47.6319,51.5703,56.9141,60.8706,68.3288,79.529,89.3744,95.5797,100.9407,110.2229,119.7081,125.4906,130.3617,140.9044,155.2941,168.2836,174.6978,179.4807,180.3116,185.9036,177.3124,184.1611,194.6933,202.3513,210.7388,225.0911,230.8454,236.0065,234.8714,244.9792,256.4755,279.477,309.6519,317.7989,304.8878,317.7842,335.384,349.6256,357.2003,373.6458,397.9057,391.1872,395.672,410.1266,424.3251,440.2347]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Switzerland","value":[3.7567751,3.8585808,3.8648229,3.8638357,3.8266997,3.771265,3.7140246,3.6934232,3.626027,3.6042215,3.6447092,3.65992,3.6058567,3.5047472,3.4796928,3.2523043,3.0690509,3.0595149,2.9757603,2.9385837,3.0317361,3.0730545,3.005261,2.9712233,2.9889174,3.0208319,2.9984604,2.9579535,2.9272958,2.9440315,2.9622911,2.8803151,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Switzerland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.8062097,2.7715364,2.7744621,2.7349041,2.6827285,2.6491237,2.6464482,2.6275557,2.6054197,2.5898489,2.5561298,2.5268732,2.4858373,2.4804115,2.4919797,2.5744834,2.7072507,2.7813312,2.8403676,2.8486702,2.9297286,3.0006721,3.0420064,3.0784909,3.1143778,3.0379401,2.9971859,3.0206269,3.0320708,3.0472036]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Switzerland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.4092468,2.3768134,2.3765495,2.3598616,2.3420568,2.3298983,2.2948439,2.2633181,2.2192891,2.2050891,2.2101556,2.2773517,2.3808893,2.4284474,2.4726124,2.4746604,2.5374343,2.5928592,2.6270931,2.655239,2.6833557,2.6151884,2.5716776,2.5825262,2.5834757,2.5900301]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Switzerland","value":[9.4727,10.5453,11.6672,12.8297,14.2212,15.2319,16.3559,17.6885,19.5474,21.3192,23.7463,27.8407,31.8942,39.0629,47.8981,51.2707,59.4868,62.3212,78.1534,81.4625,85.671,97.884,114.1838,125.1171,135.1743,142.6897,157.8197,167.9454,177.2147,183.6457,203.4446,211.254,210.2727,225.7602,246.8746,262.104,260.2164,252.935,263.7167,272.1333,294.9223,311.2959,320.2318,312.4311,317.4864,328.6869,343.5033,350.6914,378.2494,390.2026,441.0716,504.0188,519.727,518.3968,534.9139,612.683,605.7786,601.4097,597.336,624.0815,642.3141]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Switzerland","value":[3.0022115,3.0672249,3.1105261,3.1301342,3.1317841,3.0692406,3.0477557,3.0872685,3.1353851,3.0571602,3.0201454,3.191679,3.2850382,3.4776364,3.6753788,3.5007635,3.5401767,3.3501788,3.8206624,3.5034177,3.2658727,3.3656503,3.5902188,3.6828629,3.6655232,3.6007731,3.7709284,3.8107415,3.6816428,3.481514,3.5812296,3.4808753,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Switzerland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.393421,3.2470268,3.4737809,3.6318735,3.7148969,3.5090676,3.232518,3.2280259,3.1693652,3.2087537,3.2660529,3.2469532,3.1190617,3.0271084,3.0200901,2.9964994,2.906771,3.1478013,3.4294303,3.7299548,4.1477665,4.1893188,4.1471527,4.1331998,4.4914692,4.4087679,4.2765823,4.1290802,4.1801697,4.1666004]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"che","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CHE.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Switzerland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.3521814,3.495058,3.5613586,3.3583967,3.0874846,3.0755184,3.0243671,3.0527157,3.0946062,3.0710446,2.952147,2.8577356,2.8324315,2.7990777,2.6964389,2.8903776,3.1645078,3.4347285,3.8132838,3.8543489,3.8126411,3.8012578,4.1317495,4.0497871,3.9088736,3.7613647,3.7996796,3.7789226]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"mrd-euro-cyp"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-CYP \u2013 Cyprus","value":[0.17554,0.19241,0.21617,0.22556,0.20678,0.26025,0.28344,0.32387,0.35147,0.40417,0.43426,0.50114,0.56898,0.63223,0.58374,0.49252,0.63989,0.81084,0.97067,1.20696,1.45724,1.67878,1.96414,2.17839,2.56302,2.84051,3.06569,3.41333,3.81827,4.32382,4.89779,5.12584,5.94645,6.2962,7.02022,7.67832,7.9795,8.37344,9.05978,9.73156,10.59498,11.41689,11.87704,12.84529,13.85644,14.82231,16.00002,17.51158,19.00618,18.67353,19.29951,19.73098,19.48972,18.14049,17.60998,17.74602,18.4902,19.64869,20.73085,21.61752,22.48237]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6.90074,7.28348,8.2113,8.31761,8.96754,9.35694,9.75353,10.29545,11.01254,11.77888,12.94871,13.93006,14.35808,14.7833,15.97078,17.42833,18.64192,20.77313,21.64779,20.82541,21.09356,21.30729,20.83825,19.38905,19.09753,20.11271,20.86711,21.94337,23.04125,24.20414,25.28958]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1214735,0.1200858,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1169962,0.1267987,0.1279833,0.1319252,0.14157,0.1403028,0.1399451,0.1429992,0.1456254,0.148985,0.1542463,0.153729,0.1564639,0.1617039,0.169338,0.1717255,0.1816171,0.1894584,0.1940118,0.1890862,0.1861286,0.1788449,0.1651219,0.1573457,0.1574207,0.1620529,0.1662194,0.1697013,0.1729539,0.1750487]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1271381,0.1258807,0.1256728,0.1284305,0.1309052,0.134031,0.1384793,0.1376949,0.1396867,0.143755,0.1501871,0.1519059,0.159723,0.1654207,0.1688922,0.1642605,0.1612058,0.1545386,0.1426002,0.1357128,0.135634,0.1395021,0.1426213,0.1450884,0.1473653,0.148786]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Cyprus","value":[0.2709,0.29421,0.32974,0.34421,0.31584,0.39768,0.43374,0.49111,0.47994,0.55658,0.59588,0.68194,0.77407,0.86063,0.78624,0.63071,0.81655,1.01941,1.19528,1.4547,1.84302,2.15491,2.50661,2.92785,3.59705,3.0706,3.25201,3.18816,4.07847,4.27059,4.92576,5.23245,5.96274,6.3214,7.03637,7.59597,7.89012,8.41428,9.15258,9.83973,10.80458,11.60293,12.08295,12.87133,13.93798,15.03929,16.26384,17.59105,19.00618,18.67353,19.29951,19.73098,19.48972,18.14049,17.60998,17.74602,18.4902,19.64869,20.73085,21.61752,22.48237]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Cyprus","value":[0.085858,0.0855749,0.0879093,0.0839794,0.0695538,0.0801332,0.0808239,0.0857161,0.0769825,0.079814,0.075786,0.0781786,0.0797271,0.0766191,0.0603308,0.0430647,0.0485948,0.0548002,0.0584334,0.0625614,0.0702578,0.0740945,0.0788141,0.0861823,0.0975413,0.0774865,0.0777032,0.0723404,0.0847303,0.080961,0.0867081,0.0862161,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.08405,0.0920766,0.0972676,0.1035149,0.1076605,0.1063998,0.1075348,0.1120322,0.1145971,0.1175538,0.1217355,0.1225137,0.128497,0.1328932,0.1381862,0.1418752,0.1458067,0.1581699,0.1641188,0.1632078,0.1623739,0.1570991,0.1451232,0.1360697,0.1300929,0.134569,0.1397205,0.1433018,0.1447966,0.14584]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cyp","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CYP.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Cyprus","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0938627,0.0996154,0.1032109,0.1018312,0.1027101,0.1067392,0.1093543,0.1118373,0.1153452,0.1158763,0.1216206,0.1254575,0.1295998,0.1325279,0.1352562,0.1452349,0.1514406,0.1502898,0.1492798,0.1445378,0.1334174,0.1251418,0.1196738,0.1236118,0.127707,0.1305401,0.1316168,0.1322704]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"mrd-czk"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd CZK \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",674.251,869.888,976.497,1201.088,1370.455,1586.447,1818.342,1958.725,2146.389,2242.417,2379.393,2568.309,2681.644,2810.382,3062.444,3264.931,3512.798,3840.117,4024.117,3930.409,3962.464,4033.755,4059.912,4098.128,4313.789,4595.783,4767.99,5047.267,5304.386,5556.615,5803.162]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",117.6716,111.3525,111.8657,114.0037,118.7749,119.6142,128.2649,131.0403,132.6692,137.4794,145.4966,155.7037,159.3088,168.0461,179.5042,190.568,201.5473,221.7907,228.5056,219.2189,221.7791,228.0359,230.7409,235.4721,250.3154,266.9742,270.8246,284.4192,295.8232,309.2478,322.1091]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.07137,1.8359161,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.7886812,1.7274281,1.7541788,1.7473458,1.8097571,1.8450681,1.7812184,1.7227252,1.6996939,1.6740526,1.7240932,1.705687,1.7785698,1.8174778,1.851606,1.8566116,1.9390904,1.9998486,2.0422675,1.9880646,1.991995,1.9803406,2.0053386,2.0623639,2.0895869,2.1032097,2.1544543,2.1787695,2.2097706,2.2295656]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.6252675,1.6554088,1.5995604,1.5472148,1.5278843,1.5060232,1.5478575,1.5277823,1.5878596,1.6157402,1.6422033,1.6423324,1.7053314,1.7461161,1.7778459,1.727046,1.7252643,1.7111981,1.7318212,1.7788161,1.8003933,1.8105326,1.848588,1.8627687,1.8828348,1.8950627]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",25.0403,25.1432,26.5156,35.1514,40.1294,45.7242,52.771,54.5144,59.5414,60.796,66.8379,75.3867,87.0562,88.2495,96.0282,109.6276,123.9447,138.3051,161.3111,148.6825,156.7181,164.042,161.4339,157.7434,156.6608,168.4722,176.3682,191.7233,206.8228,216.613,226.3258]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4407843,0.4142903,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4038816,0.4094539,0.5408759,0.59036,0.6480661,0.7116273,0.6966961,0.7288164,0.7080527,0.7271957,0.7909414,0.8826961,0.8810124,0.915591,1.0072969,1.081213,1.1463673,1.3424348,1.3067477,1.3252986,1.3499653,1.3012565,1.2619403,1.2104943,1.2350391,1.2835824,1.3633312,1.4296612,1.4508988,1.4681434]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"cze","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"CZE.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Czechia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5219426,0.5681207,0.6212812,0.6810718,0.6654374,0.6943836,0.6756594,0.691833,0.7494221,0.8348747,0.8338656,0.8643618,0.9447067,1.0099783,1.0634169,1.2326519,1.2058018,1.2204011,1.2411019,1.1972105,1.1601515,1.1132781,1.1361254,1.1790676,1.2461094,1.3023426,1.3188342,1.3315413]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 EA12 (including D_W West-Germany)","value":[224.603,247.561,273.453,301.479,334.816,366.476,397.209,425.658,473.399,532.767,601.51,668.612,750.37,888.263,1038.141,1161.104,1342.254,1491.713,1638.055,1844.404,2038.266,2215.222,2435.279,2615.893,2837.839,3029.313,3280.617,3453.602,3709.085,4068.315,4435.554,4735.316,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 EA12 (including D_W West-Germany)","value":[237.204,260.209,286.482,313.392,347.337,381.863,415.611,444.334,484.075,546.635,619.578,688.408,767.725,888.359,1040.671,1169.733,1347.294,1494.995,1642.143,1866.792,2119.494,2354.944,2568.573,2731.174,2962.45,3173.498,3346.722,3510.344,3829.467,4210.113,4559.059,4900.579,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 EA12 (including D_W West-Germany)","value":[75.1773452,75.6846267,76.3771119,76.4598773,76.4904449,76.9456026,77.4450478,77.5518731,77.6451368,78.3871799,78.8005009,78.9195596,79.0740766,79.0875673,79.8540649,79.8693449,80.1800967,80.3659691,80.278915,80.284228,80.7975023,80.9725658,80.7622398,80.3930216,80.3328152,80.083187,79.9662665,79.65096,79.5573445,79.8143919,80.2529736,80.7978972,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 EA12 (including D_W West-Germany)","value":[224.603,247.561,273.453,301.479,334.816,366.476,397.209,425.658,473.399,532.767,601.51,668.612,750.37,888.263,1038.141,1161.104,1342.254,1491.713,1638.055,1844.404,2038.266,2215.222,2435.279,2615.893,2837.839,3029.313,3280.617,3453.602,3709.085,4068.315,4435.554,4735.316,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 EA12 (including D_W West-Germany)","value":[71.1837988,72.0056514,72.9035485,73.5534403,73.7331568,73.8452685,74.0161483,74.2921082,75.9327267,76.398504,76.5024819,76.6501871,77.2865853,79.0790183,79.6599267,79.2801924,79.8801933,80.1895094,80.0791073,79.3214143,77.7009789,76.1683635,76.5711373,76.9996743,76.9537201,76.4446943,78.3867456,78.3634571,77.0563976,77.1262194,78.0789199,78.0247665,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 EA12 (including D_W West-Germany)","value":[203.583,223.388,246.487,271.749,301.798,330.335,358.038,383.128,417.765,470.916,529.202,587.635,653.569,754.996,875.359,967.257,1114.633,1258.023,1409.407,1596.191,1801.411,1995.524,2222.054,2441.856,2666.207,2877.684,3108.921,3289.822,3563.775,3872.922,4208.288,4514.554,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"da12","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DA12.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 EA12 (including D_W West-Germany)","value":[173.023,190.387,210.363,232.606,258.487,283.804,308.354,330.567,360.611,405.843,456.093,506.559,564.814,656.246,767.204,853.398,991.738,1132.999,1281.418,1466.387,1673.133,1866.474,2088.927,2308.91,2535.062,2748.945,2983.441,3171.186,3448.986,3758.979,4098.214,4412.908,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"mrd-euro-dem"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-DEM \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1579.8,1695.32,1748.55,1830.29,1898.88,1926.32,1967.09,2018.23,2064.88,2116.48,2179.85,2209.29,2220.08,2270.62,2300.86,2393.25,2513.23,2561.74,2460.28,2580.06,2703.12,2758.26,2826.24,2938.59,3048.86,3159.75,3277.34,3386.0,3475.774,3602.78]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1542.891,1616.335,1610.32,1679.731,1622.144,1683.902,1745.391,1801.217,1887.991,1966.58,2035.851,2077.864,2100.421,2194.132,2240.929,2335.263,2471.894,2467.59,2307.331,2452.456,2585.552,2647.944,2679.742,2817.033,2944.859,2990.79,3068.486,3145.995,3222.995,3329.601]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",24.783815,24.9594054,24.7780638,24.7112163,24.5429644,24.2226274,23.7249334,23.3890231,23.3417271,22.6270443,22.5427938,22.2472665,22.2304857,22.2155546,21.7734202,21.5119518,21.611484,21.5960018,21.4953507,21.9842263,22.5859418,22.7260641,22.8213436,23.2097042,23.0491913,23.2263236,23.2435529,23.1705915,23.0303383,23.046735]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",22.041015,21.7327207,21.3053404,21.0061608,20.9822821,20.3559026,20.2384838,19.9268565,19.8467836,19.7496572,19.3110108,19.0291691,19.0062013,18.8559907,18.7122505,19.0978557,19.5616556,19.6374289,19.7086351,20.018676,19.859241,19.9942099,19.9436826,19.8100135,19.622998,19.5890215]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1506.671,1641.212,1766.104,1860.057,1982.061,1973.017,1958.528,2004.598,2064.88,2116.48,2179.85,2209.29,2220.08,2270.62,2300.86,2393.25,2513.23,2561.74,2460.28,2580.06,2703.12,2758.26,2826.24,2938.59,3048.86,3159.75,3277.34,3386.0,3475.774,3602.78]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",24.2019942,25.3435639,27.1751162,27.3640678,28.0924831,26.6065038,25.0300528,24.5372952,24.0483589,23.0272945,22.8705389,22.4008386,22.1635016,21.6494692,21.1411032,20.877154,20.8313764,21.3188642,21.6230212,21.8184714,22.2450248,22.2332709,22.6098013,22.7060476,22.3506442,22.9961995,23.3049356,23.4056988,23.2811359,23.3707207]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"deu","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DEU.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Germany","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",26.2238527,26.3332416,26.9314083,25.4640847,23.9070297,23.3780352,22.9481493,21.9075035,21.6699829,21.1872391,20.9774348,20.4381382,19.8274636,19.5016818,19.3240313,19.5754311,19.9526492,20.0915373,20.4511494,20.4555411,20.7860825,20.8824985,20.5605915,21.1237499,21.3011329,21.3213027,21.1620253,21.1962123]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"mrd-dkk"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd DKK \u2013 Denmark","value":[43.938,48.753,54.935,58.477,66.844,75.086,82.414,90.846,101.292,115.612,128.066,141.736,161.449,185.905,208.204,232.574,269.461,298.865,332.877,370.197,400.868,440.78,503.384,554.597,612.129,663.955,712.645,748.427,777.844,821.734,855.557,890.551,923.014,928.466,993.286,1036.483,1088.024,1146.129,1185.988,1241.521,1326.912,1371.526,1410.271,1436.751,1506.001,1585.984,1682.26,1738.845,1801.47,1722.143,1810.926,1846.854,1895.002,1929.677,1981.165,2036.356,2100.216,2178.067,2218.323,2292.604,2371.768]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Denmark","value":[5.5107,6.055,6.6572,6.9735,7.9553,8.6922,9.2866,10.1019,10.9847,12.3172,13.4149,14.7911,16.3344,18.5538,20.8295,23.2535,27.0475,29.686,32.3243,36.7725,40.7195,44.7392,50.2666,54.1183,59.759,65.1082,70.294,72.0657,75.4115,80.1768,85.04,90.339,94.67,95.2385,102.1313,99.8805,106.4035,113.7274,118.3764,123.7442,134.111,137.0093,141.4829,140.829,150.5285,157.3107,167.8863,175.4376,179.202,169.445,182.5569,186.6114,189.3372,192.7405,199.2681,209.5018,211.2544,221.2694,226.8492,235.0659,243.0197]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Denmark","value":[1.746514,1.7611677,1.7748439,1.7013731,1.7519034,1.7514905,1.7304603,1.7631259,1.7619266,1.7662882,1.7061596,1.6956591,1.6824093,1.651785,1.5983155,1.5877498,1.609648,1.5958218,1.5802269,1.5814584,1.5522743,1.538315,1.5805053,1.5929901,1.6204866,1.6430042,1.6795993,1.6351957,1.5666778,1.519974,1.4969561,1.4894564,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Denmark","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.4511353,1.4618926,1.4654379,1.5024954,1.5111867,1.5305956,1.5458859,1.5371323,1.5298817,1.5430519,1.5170914,1.5148281,1.4905089,1.524099,1.5284696,1.5465332,1.533831,1.5683505,1.5785679,1.6364705,1.6301332,1.6249925,1.6414257,1.6417821,1.6397548,1.6405912,1.6760996,1.6707687,1.6796941,1.6821267]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Denmark","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.3571339,1.3732617,1.3882283,1.38053,1.3752371,1.3881713,1.3620153,1.3568301,1.3306866,1.354926,1.3556112,1.3680414,1.3489263,1.3693647,1.3741835,1.4216137,1.4118563,1.4041443,1.417544,1.4160587,1.4128169,1.4122909,1.4381449,1.4284465,1.4311832,1.4297564]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Denmark","value":[6.0227,6.6131,7.4344,7.9137,9.046,10.1615,11.1532,12.2386,13.1265,15.0804,16.7041,18.2823,20.7276,25.0681,28.6811,32.6526,39.8507,43.5938,47.422,51.3597,51.2137,55.6361,61.7129,68.2003,75.1403,82.8001,89.803,94.9212,97.8233,102.0878,108.8977,112.6055,118.195,122.2697,131.6783,141.4407,147.8426,153.1519,158.1465,166.9717,178.0178,184.0464,189.7945,193.3536,202.4232,212.831,225.5314,233.3818,241.6137,231.2769,243.1656,247.8783,254.5785,258.7418,265.7561,273.0177,282.0904,292.8049,297.6349,307.1449,317.7422]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Denmark","value":[1.9087908,1.923495,1.9820338,1.9307501,1.992116,2.0475421,2.0782885,2.1360567,2.1054686,2.1625159,2.1244927,2.0958914,2.1348986,2.2317308,2.2007916,2.2295223,2.3715909,2.3434566,2.3183058,2.2088017,1.9523234,1.9129943,1.9404047,2.0074972,2.0375811,2.0894599,2.145744,2.1537956,2.0322834,1.9353573,1.916923,1.8554243,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Denmark","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.8088082,1.8251639,1.8813688,1.937173,2.0046913,1.9936855,1.957286,1.9357929,1.9446143,1.9368329,1.930977,1.9243988,1.9302873,1.9300259,1.9555656,1.9673888,1.9344285,2.010715,2.0326566,2.0563478,2.0398871,2.0520593,2.0699239,2.0534579,2.0014438,2.0530125,2.0821152,2.0573991,2.0572917,2.0611483]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"dnk","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DNK.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Denmark","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.8155116,1.8641982,1.9218365,1.9080814,1.8694685,1.8443367,1.8556485,1.8426469,1.8296132,1.8201416,1.8269891,1.8220371,1.8340531,1.8377692,1.7944545,1.8462809,1.8756344,1.8935877,1.8753873,1.8879806,1.9029627,1.8885423,1.8411491,1.8858474,1.9030909,1.8741773,1.8700315,1.8693706]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 EU15 (including D_W West-Germany)","value":[315.525,343.807,375.089,409.878,454.092,496.276,536.652,572.951,623.446,697.352,786.262,872.291,970.893,1123.26,1303.217,1464.558,1680.335,1860.234,2045.546,2325.228,2623.218,2908.323,3180.413,3397.278,3687.721,3962.752,4185.167,4407.159,4813.468,5274.879,5680.86,6068.991,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 EU15 (including D_W West-Germany)","value":[315.525,343.807,375.089,409.878,454.092,496.276,536.652,572.951,623.446,697.352,786.262,872.291,970.893,1123.26,1303.217,1464.558,1680.335,1860.234,2045.546,2325.228,2623.218,2908.323,3180.413,3397.278,3687.721,3962.752,4185.167,4407.159,4813.468,5274.879,5680.86,6065.231,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 EU15 (including D_W West-Germany)","value":[100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 EU15 (including D_W West-Germany)","value":[315.525,343.807,375.089,409.878,454.092,496.276,536.652,572.951,623.446,697.352,786.262,872.291,970.893,1123.26,1303.217,1464.558,1680.335,1860.234,2045.546,2325.228,2623.218,2908.323,3180.413,3397.278,3687.721,3962.752,4185.167,4407.159,4813.468,5274.879,5680.86,6068.991,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 EU15 (including D_W West-Germany)","value":[100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 EU15 (including D_W West-Germany)","value":[250.877,273.289,298.108,325.756,360.896,394.421,426.512,456.072,497.56,556.377,625.083,694.299,773.27,892.284,1029.217,1160.147,1342.001,1518.128,1708.952,1946.724,2209.344,2448.516,2720.593,2992.595,3262.803,3533.206,3816.471,4072.586,4433.048,4832.324,5250.685,5613.625,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"du15","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"DU15.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 EU15 (including D_W West-Germany)","value":[218.31,238.532,260.818,285.947,316.98,347.251,376.256,402.851,439.747,491.348,552.112,613.558,684.744,794.155,922.164,1046.11,1219.023,1394.454,1583.148,1820.305,2085.003,2323.948,2594.015,2866.2,3139.496,3410.901,3697.853,3958.754,4323.239,4722.336,5145.079,5518.898,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"d-w","unit":"mrd-euro-dem"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"D_W.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-DEM \u2013 West Germany","value":[161.643,177.128,192.651,204.18,224.37,245.19,260.707,263.975,284.763,318.762,360.6,400.24,436.37,486.02,526.02,551.01,597.4,636.54,678.94,737.37,788.52,825.79,860.21,898.27,942.0,984.41,1037.13,1065.13,1123.29,1200.66,1306.68,1415.8,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"d-w","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"D_W.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 West Germany","value":[76.711,82.902,90.283,96.617,107.587,118.452,126.611,130.108,141.344,159.906,180.053,198.77,220.294,251.872,288.52,324.024,373.42,415.79,456.206,520.392,587.203,652.933,704.737,751.168,818.766,877.682,923.951,958.084,1039.875,1141.3,1255.617,1382.723,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"d-w","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"D_W.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 West Germany","value":[24.3120473,24.1129975,24.0696372,23.572043,23.692677,23.8681229,23.5927924,22.7083559,22.6714378,22.9305173,22.8998862,22.7871576,22.6898082,22.4232939,22.1390505,22.1243295,22.2229447,22.3514837,22.3024092,22.3802379,22.3848329,22.4504841,22.1586741,22.1108755,22.2024943,22.148303,22.0768069,21.7392618,21.6034443,21.6365224,22.1025824,22.7975322,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"d-w","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"D_W.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 West Germany","value":[71.267,80.427,88.052,93.321,102.549,112.065,119.157,121.217,135.328,154.846,188.506,214.721,238.61,290.123,333.313,353.408,414.999,470.096,519.503,574.348,610.968,642.47,708.094,773.768,823.191,864.808,953.134,1005.64,1059.084,1134.356,1245.386,1350.262,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"d-w","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"D_W.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 West Germany","value":[22.5868802,23.3930162,23.4749283,22.7680615,22.5833304,22.5811856,22.2038302,21.1565495,21.7065018,22.2048789,23.9749496,24.6157476,24.5763573,25.8286424,25.5761396,24.1306859,24.6973985,25.2707857,25.3967826,24.7007102,23.2907784,22.0907298,22.2642169,22.7761172,22.3224837,21.823414,22.7740915,22.8183276,22.0025188,21.5048696,21.9224896,22.2485483,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4891.72,5154.79,5214.76,5435.84,5690.57,5930.38,6067.11,6307.79,6599.64,6943.58,7262.85,7510.57,7720.61,8043.41,8326.0,8752.41,9221.94,9437.99,9111.39,9361.94,9603.36,9637.99,9731.12,9955.12,10306.88,10591.7,10956.87,11308.21,11616.11,11981.2]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5060.75,5275.43,5270.96,5496.81,5341.4,5588.01,5900.05,6198.21,6515.32,6974.28,7252.73,7490.69,7543.12,7856.59,8205.57,8665.45,9166.2,9162.46,8637.16,8944.34,9191.46,9314.98,9365.96,9658.73,10152.84,10260.16,10520.93,10826.52,11154.51,11518.13]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",81.2919333,81.4630019,81.1044423,80.8658248,80.815052,80.3825374,80.1988153,80.4845442,80.5505747,80.2445244,80.308786,80.2013134,79.8350102,79.5478606,79.7273593,79.8242994,80.1390592,80.1885802,80.4647221,80.178582,80.2914767,79.9461373,79.7628682,79.5788615,79.4655481,79.6799148,79.6952746,79.7384925,79.7059926,79.7258874]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",72.5766353,72.1198077,72.0197203,72.2848183,72.4083046,72.1901501,72.099673,71.8362441,71.2745638,70.7181526,70.7107969,70.611449,70.4782278,70.0145859,70.0465908,69.6517116,69.5403464,69.0808836,68.883642,68.6378176,68.4677154,68.5918689,68.3809944,68.1735126,67.9134848,67.7645716]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4891.72,5154.79,5214.76,5435.84,5690.57,5930.38,6067.11,6307.79,6599.64,6943.58,7262.85,7510.57,7720.61,8043.41,8326.0,8752.41,9221.94,9437.99,9111.39,9361.94,9603.36,9637.99,9731.12,9955.12,10306.88,10591.7,10956.87,11308.21,11616.11,11981.2]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",78.5768774,79.60022,80.2397947,79.9689305,80.6545086,79.9722576,77.5379163,77.2105685,76.8618642,75.5461218,76.2003487,76.152586,77.076412,76.6907573,76.5021446,76.350301,76.4377352,78.5432151,80.0785818,79.169974,79.0298148,77.6880936,77.8485328,76.9217445,75.5579092,77.0848656,77.9135306,78.1679093,77.8060311,77.7203221]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",77.431005,76.9564374,77.3210219,76.5384416,74.0590235,73.5627695,73.3454429,71.8724006,72.2003213,72.026904,72.951713,72.3997562,71.7485494,71.3200311,70.9067497,72.1200379,73.8925349,72.9036629,72.6567204,71.4763021,71.5692281,70.7440697,69.5065112,70.808284,71.2143769,71.2066605,70.72392,70.4889021]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4678.89,4953.18,5096.89,5353.76,5631.34,5827.2,6064.77,6340.07,6593.42,6941.8,7262.85,7510.57,7720.61,8043.41,8326.0,8752.41,9221.94,9437.99,9111.39,9361.94,9603.36,9637.99,9731.12,9955.12,10306.88,10591.7,10956.87,11308.21,11616.11,11981.2]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea12","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA12.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 Euro area (12 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4574.28,4852.6,4999.89,5261.07,5550.36,5762.19,6008.82,6289.86,6549.6,6904.07,7231.82,7487.39,7708.02,8036.21,8322.31,8753.15,9224.91,9442.99,9118.27,9361.94,9592.08,9615.14,9700.52,9919.84,10267.07,10551.5,10914.69,11261.7,11566.59,11928.53]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5252.88,5481.33,5744.69,5990.22,6135.62,6382.03,6676.73,7030.32,7356.13,7611.85,7830.5,8164.27,8460.75,8906.01,9404.65,9640.65,9296.22,9552.2,9805.6,9846.77,9944.04,10175.17,10534.69,10827.69,11208.52,11577.72,11901.84,12282.6]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5380.26,5610.4,5454.18,5709.55,6033.33,6340.12,6662.32,7132.67,7422.72,7672.65,7736.77,8064.63,8433.63,8913.64,9443.04,9450.43,8895.21,9218.54,9479.09,9613.37,9669.19,9974.9,10483.83,10595.3,10870.11,11194.21,11541.71,11923.77]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",82.7863399,82.5368978,82.5214049,82.1307986,82.0105153,82.3271876,82.3680359,82.066948,82.1911526,82.1494468,81.8846351,81.6542923,81.9432734,82.1105396,82.5594071,82.7088041,82.8687257,82.6365068,82.8040906,82.5070678,82.3452283,82.1837922,82.0561556,82.2825433,82.3402492,82.4466042,82.4728195,82.5335934]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",74.1090398,73.6883605,73.6466536,73.939734,74.0420519,73.8296518,73.7896253,73.5811855,73.1044141,72.5907731,72.676108,72.6338249,72.6068007,72.2150542,72.1393372,71.7869285,71.7165181,71.2937652,71.1137822,70.8846047,70.6997893,70.8323225,70.6504639,70.4888497,70.2709596,70.151036]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5252.88,5481.33,5744.69,5990.22,6135.62,6382.03,6676.73,7030.32,7356.13,7611.85,7830.5,8164.27,8460.75,8906.01,9404.65,9640.65,9296.22,9552.2,9805.6,9846.77,9944.04,10175.17,10534.69,10827.69,11208.52,11577.72,11901.84,12282.6]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",80.8262614,80.6380714,81.4216761,80.7792737,78.4133798,78.1192752,77.7597054,76.4898607,77.1790554,77.1795026,78.1734712,77.8431283,77.7403314,77.6902538,77.9521641,80.2297409,81.7030323,80.7789311,80.6940855,79.3710022,79.5518648,78.6220513,77.2278972,78.8023472,79.7030069,80.030924,79.7199273,79.67547]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",77.9969424,77.6003712,78.056482,77.3108064,74.8952077,74.4285445,74.202208,72.7702465,73.1276522,72.9981858,73.9900637,73.4876498,72.9097993,72.5717023,72.3115955,73.6686415,75.391497,74.3852709,74.1867815,73.0246486,73.1351684,72.3078229,71.0427507,72.3859209,72.8499906,72.9037643,72.4636083,72.2621349]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5136.33,5402.36,5689.97,5893.44,6138.99,6421.42,6680.16,7036.4,7365.65,7622.17,7842.63,8176.73,8472.85,8917.1,9411.46,9642.9,9296.15,9552.2,9805.53,9846.42,9943.82,10175.0,10534.5,10827.5,11208.33,11577.52,11901.64,12282.38]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ea19","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EA19.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 Euro area","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4966.6,5249.98,5559.18,5784.54,6043.87,6333.82,6598.18,6961.26,7298.16,7565.42,7801.54,8145.36,8451.99,8908.19,9415.01,9654.41,9302.48,9552.2,9799.05,9832.25,9924.06,10152.24,10507.64,10801.27,11183.95,11553.61,11879.08,12260.21]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"mrd-euro-esp"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-ESP \u2013 Spain","value":[4.545,5.177,5.983,7.061,7.972,9.247,10.728,12.148,13.715,15.703,17.343,19.573,22.972,27.694,33.916,39.82,47.92,60.803,74.421,87.058,100.028,112.232,129.066,146.961,165.835,184.27,210.962,235.9,262.632,294.299,327.801,359.462,387.15,400.538,425.997,459.337,487.992,518.049,554.042,594.316,646.25,699.528,749.288,803.472,861.42,930.566,1007.974,1080.807,1116.225,1079.052,1080.935,1070.449,1039.815,1025.693,1037.82,1081.165,1118.743,1166.319,1208.248,1252.855,1297.838]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Spain","value":[19.78,22.849,25.987,29.418,32.613,36.213,40.385,43.435,47.698,54.689,61.115,68.461,78.674,92.536,110.968,126.395,143.379,158.863,171.689,188.119,212.044,234.226,256.975,274.442,296.114,317.402,337.292,364.048,400.411,443.404,480.995,516.761,536.082,533.682,556.281,542.595,575.346,617.949,661.756,701.384,765.511,812.533,867.0,897.006,951.047,1027.888,1132.66,1215.279,1215.237,1142.116,1137.884,1130.866,1130.76,1116.621,1154.971,1222.406,1241.645,1284.329,1331.784,1385.446,1435.746]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Spain","value":[6.2689567,6.645946,6.9281182,7.1772893,7.1819661,7.2968921,7.5253842,7.5809736,7.6507383,7.8423703,7.7729055,7.8483686,8.1032167,8.2381813,8.5149631,8.6302314,8.532784,8.5399374,8.3933001,8.0903499,8.0833734,8.0536313,8.0799184,8.078281,8.0297379,8.0096245,8.0592171,8.260381,8.3185476,8.4059514,8.4669422,8.5200523,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Spain","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",8.3008464,8.2781672,8.2117869,8.1836858,8.2094338,8.2762495,8.3997223,8.5929862,8.6713913,8.8078004,8.9970998,9.282787,9.493753,9.629342,9.9872151,10.4338276,10.625044,10.6355826,10.6400802,10.200181,9.878621,9.7047829,9.5094171,9.5158797,9.567679,9.6425507,9.7286955,9.8087347,9.8998863,9.9379072]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Spain","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.3725509,7.4255123,7.5430746,7.717537,7.7948636,7.9237361,8.077422,8.314584,8.475769,8.5604977,8.8577364,9.2296167,9.344186,9.286184,9.2624609,8.8609707,8.5558611,8.3858333,8.2123838,8.2075717,8.2435362,8.3007189,8.3475196,8.3861116,8.4351974,8.4469179]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Spain","value":[11.934,13.452,15.521,18.318,20.681,23.99,27.831,31.041,31.684,36.516,40.437,44.876,53.084,64.167,81.97,94.285,106.673,116.519,127.106,157.493,166.931,181.872,199.657,191.778,218.004,237.427,255.363,276.091,317.573,375.499,421.459,465.557,486.067,446.903,446.014,468.879,505.108,519.607,551.397,594.316,646.25,699.528,749.288,803.472,861.42,930.566,1007.974,1080.807,1116.225,1079.052,1080.935,1070.449,1039.815,1025.693,1037.82,1081.165,1118.743,1166.319,1208.248,1252.855,1297.838]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Spain","value":[3.7822441,3.9125431,4.1380767,4.4691408,4.5544465,4.8340417,5.185948,5.4177931,5.0820012,5.2363147,5.1430033,5.1446634,5.4675946,5.7125534,6.2898207,6.4377898,6.348305,6.2636785,6.2137948,6.7732451,6.3636047,6.2534856,6.27772,5.6450426,5.9116158,5.9914616,6.1016126,6.2646037,6.5975965,7.1186236,7.4189221,7.6710753,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Spain","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.4783454,7.5058357,6.8765109,6.5614937,6.6455933,6.8114714,6.6405982,6.749383,6.9216247,7.0311976,7.3393042,7.5973184,8.0212213,8.2133011,8.5503646,8.7929086,8.9584707,9.2892523,9.4836215,9.1410081,8.8091407,8.381548,8.2055009,8.0190807,7.9258261,8.1420483,8.2936129,8.352005,8.3917682,8.4188943]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"esp","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ESP.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Spain","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6.635799,6.314317,6.3709279,6.5190033,6.3426546,6.4305097,6.6049612,6.6892785,6.954038,7.1857221,7.5919703,7.7537505,8.0190726,8.2135958,8.3102415,8.5295875,8.7510145,8.4174964,8.0987571,7.7113755,7.5436408,7.375059,7.2910504,7.4790877,7.5805123,7.6082166,7.6279273,7.6355656]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"mrd-euro-eek"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-EEK \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.473,2.02353,2.77946,3.64928,4.49477,5.04922,5.3787,6.17077,6.97637,7.77384,8.70888,9.70766,11.2623,13.52171,16.2464,16.51727,14.14586,14.71653,16.66763,17.93489,18.93228,20.06119,20.65201,21.68265,23.61511,25.65695,27.23684,28.6291]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.65252,7.66297,7.60313,8.23832,9.47519,10.02547,10.14915,11.53314,12.41605,13.73211,15.19661,16.62849,19.01905,21.47309,24.27417,23.94755,20.80856,21.99078,24.57907,26.01316,26.62217,28.06591,28.87318,29.57701,31.11381,32.66729,34.21131,35.62922]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1177497,0.112733,0.1150349,0.1185067,0.1287953,0.130182,0.1254766,0.1326978,0.1374818,0.1470269,0.1608383,0.1683632,0.1847938,0.1978055,0.2122263,0.2095856,0.1938548,0.197129,0.2147091,0.2232587,0.226721,0.2312367,0.2259882,0.2296935,0.2356848,0.2405981,0.2444614,0.2466173]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1033081,0.1063251,0.1156601,0.1169191,0.112793,0.1193785,0.1234285,0.1316919,0.1435921,0.1496751,0.1638951,0.174976,0.1866422,0.1829942,0.1687556,0.1712474,0.1859593,0.1929163,0.1957974,0.1994447,0.194712,0.19773,0.2022248,0.2057026,0.2082933,0.2096172]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.48843,2.05687,2.90229,3.73855,4.47578,5.01668,5.3787,6.17077,6.97637,7.77384,8.70888,9.70766,11.2623,13.52171,16.2464,16.51727,14.14586,14.71653,16.66763,17.93489,18.93228,20.06119,20.65201,21.68265,23.61511,25.65695,27.23684,28.6291]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0229025,0.0302594,0.0411353,0.050415,0.0572006,0.0614067,0.0626423,0.067138,0.0731946,0.0788219,0.0869425,0.0925587,0.1034819,0.1179546,0.1346613,0.1374571,0.1243258,0.1244514,0.1371644,0.1445662,0.1514574,0.1550098,0.1513962,0.1578032,0.1679254,0.1773535,0.1824355,0.1857129]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"est","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EST.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Estonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0221008,0.0291195,0.0394351,0.0482503,0.0546341,0.0585055,0.0597765,0.0638731,0.0693524,0.0745516,0.0822898,0.0873799,0.0970519,0.1101833,0.1249173,0.126216,0.1147217,0.1146011,0.1261032,0.133007,0.1392408,0.1425608,0.1392709,0.1449542,0.1534869,0.1615592,0.1658298,0.1684334]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6225.4,6475.85,6498.98,6797.44,7055.48,7415.54,7824.71,8169.6,8586.37,9191.18,9531.26,9862.53,10016.83,10488.11,10883.35,11463.49,12064.64,12016.31,11378.06,11825.12,12151.57,12406.0,12500.07,12941.88,13641.04,13740.31,14062.86,14466.56,14929.57,15415.78]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6225.4,6475.85,6498.98,6797.44,6609.41,6951.77,7356.78,7701.12,8088.48,8691.28,9031.05,9339.86,9448.38,9876.56,10292.04,10855.65,11437.87,11426.14,10734.1,11155.53,11447.61,11651.57,11742.26,12137.31,12776.41,12876.73,13201.45,13577.53,13994.56,14447.17]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",89.8058387,89.7207404,89.8014765,89.812049,89.8917293,89.9627117,89.7780636,89.5699098,89.2773279,88.9001314,88.6907551,88.4585892,87.9449153,87.3124149,87.052548,86.8707201,86.6098734,86.4092824,86.360538,86.2513189,86.1602506,86.0842648,85.8030727,85.4963651,85.2049923,84.9969487]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6225.4,6475.85,6498.98,6797.44,7055.48,7415.54,7824.71,8169.6,8586.37,9191.18,9531.26,9862.53,10016.83,10488.11,10883.35,11463.49,12064.64,12016.31,11378.06,11825.12,12151.57,12406.0,12500.07,12941.88,13641.04,13740.31,14062.86,14466.56,14929.57,15415.78]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",96.4995053,96.2329206,95.8669555,95.706241,95.5133012,95.2755185,95.4250118,95.1371147,94.7506442,94.5823481,94.6485586,94.4048003,93.7863242,93.4115913,92.7640641,91.8221107,92.2750293,92.0849903,91.9358353,92.0041911,91.933946,91.9688837,91.9910463,91.8575695,91.4018096,91.0944929,90.897735,90.6955867]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5776.69,6079.01,6270.08,6593.04,6936.85,7210.99,7518.17,7857.96,8176.83,8619.42,8998.81,9328.24,9644.92,10063.06,10462.57,11013.28,11598.68,11877.78,11481.31,11825.12,12152.29,12253.93,12441.7,12787.96,13234.33,13636.54,14126.6,14585.09,14999.3,15478.88]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu15","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU15.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 European Union (15 countries)","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5680.14,5993.0,6188.54,6515.74,6871.81,7163.25,7479.9,7826.5,8151.78,8599.73,8990.44,9324.52,9642.9,10065.09,10462.85,11016.12,11605.06,11885.06,11489.92,11825.12,12140.29,12227.92,12401.81,12738.53,13179.4,13574.9,14059.88,14512.56,14921.52,15396.2]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5752.13,6024.2,6338.25,6638.09,6821.55,7109.32,7432.66,7873.65,8243.11,8546.26,8774.14,9175.24,9573.46,10121.75,10753.26,11102.55,10605.21,10991.0,11322.56,11394.54,11522.8,11784.16,12216.72,12554.91,13047.8,13487.13,13893.99,14372.95]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6361.14,6669.03,7036.35,7385.65,7758.65,8306.04,8647.21,8954.62,9058.3,9495.79,9936.25,10531.34,11215.87,11307.33,10683.82,11111.69,11460.21,11659.04,11735.69,12125.58,12771.23,12907.32,13291.58,13734.34,14209.67,14714.54]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",96.2437285,95.9328577,95.6444458,95.9035509,95.9222078,95.5675207,95.7497821,95.8753178,95.8714717,96.1447109,96.5430689,97.0125101,98.0590662,98.9601637,99.5315957,99.6070716,100.1099957,100.0640768,99.9440712,99.9033946,99.9594633,100.2376036,100.6826945,101.1549015,101.5370663,101.8506475]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",86.4324876,86.0716702,85.8901245,86.1329441,86.2261314,85.9751331,85.9623003,85.8754357,85.5914881,85.4727744,85.6247768,85.8158978,86.2379628,86.4045087,86.6447901,86.5293803,86.7051406,86.4646507,86.3122375,86.1679955,86.1253241,86.2888042,86.3888456,86.4837639,86.5146496,86.5699426]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5752.13,6024.2,6338.25,6638.09,6821.55,7109.32,7432.66,7873.65,8243.11,8546.26,8774.14,9175.24,9573.46,10121.75,10753.26,11102.55,10605.21,10991.0,11322.56,11394.54,11522.8,11784.16,12216.72,12554.91,13047.8,13487.13,13893.99,14372.95]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",88.5083306,88.6244988,89.8343619,89.5159085,87.1796502,87.0216736,86.5635634,85.6652463,86.4850592,86.6537908,87.5939566,87.4822776,87.9643194,88.2955715,89.1304205,92.395674,93.2075456,92.9461839,93.1777236,91.8470234,92.1819156,91.0544301,89.5585643,91.3727885,92.7819587,93.2296577,93.0635751,93.2352701]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",85.4101013,85.2859435,86.1214677,85.6723111,83.2681619,82.9103507,82.6032906,81.4994436,81.9451508,81.9591901,82.9064173,82.5874695,82.4985018,82.4782984,82.6810004,84.8396581,86.0072901,85.5894844,85.6637185,84.5031109,84.7464725,83.7417429,82.3858604,83.9328228,84.8043893,84.9270839,84.592682,84.5602752]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5320.32,5690.42,6056.5,6329.42,6729.75,7080.25,7399.4,7828.25,8215.69,8522.93,8794.62,9206.68,9566.3,10100.12,10701.37,11030.35,10678.1,10991.0,11311.71,11388.47,11522.78,11819.91,12265.36,12628.63,13117.99,13593.45,14020.82,14504.39]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu27","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU27.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 European Union excluding UK","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5238.35,5585.17,6314.18,6716.53,7065.78,7528.06,7947.41,8284.64,8591.74,9044.65,9434.66,9996.7,10642.02,11020.35,10687.08,10991.0,11325.9,11412.45,11552.81,11859.45,12312.87,12688.58,13213.98,13724.09,14185.71,14698.17]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6734.72,7063.53,7359.66,7748.23,8192.27,8574.71,8998.02,9660.98,10059.31,10427.46,10583.18,11109.72,11604.41,12272.02,13005.72,13086.51,12330.59,12841.53,13217.45,13484.17,13596.79,14072.02,14828.66,14958.28,15385.75,15880.83,16424.58,16997.28]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"mrd-pps-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.212.0.UVGD","series_name":"Annually \u2013 Mrd PPS, Standard aggregation \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7359.66,7748.23,8192.27,8574.71,8998.02,9660.98,10059.31,10427.46,10583.18,11109.72,11604.41,12272.02,13005.72,13086.51,12330.59,12841.53,13217.45,13484.17,13596.79,14072.02,14828.66,14958.28,15385.75,15880.83,16424.58,16997.28]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",111.3513347,111.4569492,111.3567437,111.343635,111.2449397,111.1571652,111.385784,111.6446362,112.0105209,112.4857729,112.7513233,113.0472472,113.7075403,114.5312497,114.8731454,115.1135847,115.4602773,115.7283074,115.7936279,115.940256,116.0628007,116.1652483,116.5459428,116.9640369,117.364015,117.6512823]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"mrd-ecu-eur-standard-aggregation"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Standard aggregation \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6734.72,7063.53,7359.66,7748.23,8192.27,8574.71,8998.02,9660.98,10059.31,10427.46,10583.18,11109.72,11604.41,12272.02,13005.72,13086.51,12330.59,12841.53,13217.45,13484.17,13596.79,14072.02,14828.66,14958.28,15385.75,15880.83,16424.58,16997.28]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",103.6274742,103.9145434,104.3112295,104.4863939,104.6974597,104.9587571,104.7943282,105.1114492,105.5401795,105.7279735,105.6540126,105.926817,106.6253538,107.0530955,107.8003653,108.906231,108.3716805,108.5953309,108.771514,108.6907007,108.7737494,108.7324277,108.7062318,108.8641911,109.4070242,109.7761202,110.0137423,110.2589483]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.1.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in ECU\/EUR) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6209.82,6626.07,7038.13,7376.91,7829.9,8227.84,8591.97,9087.65,9516.1,9889.12,10251.39,10735.0,11189.37,11813.27,12499.95,12871.53,12470.21,12841.53,13228.78,13363.19,13578.17,13972.43,14476.88,14929.24,15512.35,16067.47,16573.57,17142.47]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"eu28","unit":"mrd-ecu-eur-weighted-mean-of-t-t-1-national-growth-rates-weights-t-1-current-prices-in-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"EU28.1.2.0.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR, Weighted mean of t\/t-1 national growth rates (weights: t-1 current prices in PPS) \u2013 European Union","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6214.11,6626.37,7417.32,7869.92,8266.34,8796.92,9263.65,9663.17,10050.26,10574.28,11052.83,11704.87,12438.84,12862.79,12479.55,12841.53,13242.31,13383.44,13597.31,13996.46,14511.68,14971.3,15589.71,16180.12,16720.4,17318.35]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"mrd-euro-fim"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-FIM \u2013 Finland","value":[2.8399,3.2191,3.4468,3.7433,4.222,4.6693,5.0059,5.4909,6.2951,7.1853,8.0193,8.8128,10.2772,12.5092,15.7644,18.154,20.615,22.627,25.065,29.07,33.682,38.094,42.831,47.79,53.498,58.285,62.74,67.751,76.754,85.929,91.01,86.962,84.852,85.748,90.768,98.556,102.06,110.738,120.382,126.923,136.261,144.437,148.289,151.569,158.477,164.387,172.614,186.584,193.711,181.029,187.1,196.869,199.793,203.338,205.474,209.952,216.073,223.892,233.555,240.8532,248.3221]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Finland","value":[4.0171,4.4648,4.7841,5.1433,5.6509,6.2185,6.6199,6.9717,7.3475,8.4775,9.7667,10.7009,12.2502,14.3011,16.763,19.6194,21.6555,23.4143,25.7237,30.1968,35.5062,39.7813,44.4388,48.0887,52.6157,57.068,60.3342,63.8938,70.3532,78.1005,82.1851,81.0135,80.4995,80.3795,85.0568,84.1346,87.6404,96.6394,104.9657,111.6141,121.3472,125.0801,127.6078,128.221,137.6944,142.6623,149.8207,164.3731,167.8273,153.6034,158.9971,165.3831,166.2046,164.991,166.9515,173.8322,174.8299,180.2492,186.4491,193.0926,198.733]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Finland","value":[1.2731515,1.2986276,1.2754591,1.2548328,1.244432,1.2530348,1.2335514,1.2168016,1.1785368,1.2156634,1.2421686,1.2267562,1.261746,1.2731825,1.2862792,1.3396096,1.2887638,1.2586774,1.2575448,1.2986578,1.3535371,1.3678443,1.3972634,1.4155072,1.4267799,1.4401103,1.4416194,1.4497739,1.461591,1.4806113,1.4467014,1.3357029,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Finland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.3013376,1.243072,1.2368024,1.2513059,1.2729524,1.2606912,1.3136102,1.3629927,1.3799142,1.3961949,1.3850004,1.3662704,1.357068,1.3941543,1.3861419,1.3801164,1.4370955,1.4688006,1.4309857,1.4252764,1.444695,1.4264557,1.4051043,1.3755232,1.3605716,1.3577203,1.3653739,1.3732177,1.3797688,1.3755843]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Finland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.1431856,1.1311015,1.1796414,1.2241316,1.2404287,1.2560548,1.2434265,1.2237672,1.2115541,1.239405,1.2293797,1.2208315,1.2638524,1.2824453,1.2457095,1.2381478,1.2512485,1.2325902,1.2134557,1.1864069,1.1722719,1.1687835,1.1715328,1.1740512,1.1756319,1.1692047]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Finland","value":[4.9958,5.6038,5.9864,6.5013,7.3328,8.1105,8.6941,8.8871,8.6614,9.9511,11.1057,11.9516,13.1375,15.8022,20.6615,23.7528,28.4309,29.2883,28.4489,32.4768,38.719,47.2559,54.1003,57.4243,67.3326,73.824,74.9106,79.5291,92.3126,108.1748,111.4573,103.3669,86.8787,76.137,87.1753,102.6508,104.1187,111.9637,119.6419,126.923,136.261,144.437,148.289,151.569,158.477,164.387,172.614,186.584,193.711,181.029,187.1,196.869,199.793,203.338,205.474,209.952,216.073,223.892,233.555,240.8532,248.3221]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Finland","value":[1.583328,1.6299239,1.5959946,1.586152,1.6148314,1.6342673,1.6200675,1.5511032,1.3892843,1.4269891,1.4124656,1.3701436,1.3531349,1.4068203,1.5854261,1.6218429,1.6919815,1.5744415,1.3907714,1.396716,1.4760126,1.6248508,1.7010468,1.6903039,1.8258598,1.8629482,1.7899059,1.8045434,1.9177987,2.050754,1.96198,1.7031973,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Finland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.6604058,1.3415786,1.1715226,1.2824712,1.4549082,1.4040597,1.4308997,1.4644772,1.4781924,1.4825192,1.5154034,1.503559,1.5131436,1.5110159,1.510445,1.5057721,1.5465363,1.6120678,1.5910359,1.5822252,1.6201115,1.6104544,1.6266955,1.587667,1.5391203,1.5725478,1.5920804,1.6144471,1.6132624,1.61083]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fin","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FIN.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Finland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.1305135,1.2341595,1.3947762,1.3437727,1.3666996,1.3952883,1.4105652,1.410426,1.4358544,1.4221014,1.4321686,1.4264715,1.4165909,1.4065657,1.43463,1.4802347,1.4681289,1.4569919,1.489463,1.4816855,1.4954853,1.4601596,1.4158529,1.4445042,1.4551903,1.4706724,1.4664189,1.4609517]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"mrd-euro-frf"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-FRF \u2013 France","value":[46.834,50.775,56.906,63.794,70.755,76.422,82.826,89.545,97.683,112.366,125.698,140.192,156.487,179.495,209.367,235.876,272.612,306.807,348.615,398.21,451.77,509.985,585.989,650.512,707.03,757.689,814.596,855.983,925.215,997.121,1053.546,1091.705,1130.983,1142.119,1179.867,1218.273,1252.266,1292.777,1351.896,1400.999,1478.585,1538.2,1587.829,1630.666,1704.019,1765.905,1848.151,1941.36,1992.38,1936.422,1995.289,2058.369,2088.804,2117.189,2149.765,2198.432,2228.568,2291.697,2349.733,2412.712,2479.63]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 France","value":[46.155,50.047,55.637,61.522,68.501,75.066,82.159,88.856,95.649,107.857,122.686,138.307,153.594,178.237,211.074,236.825,271.387,302.523,335.055,379.992,429.496,480.137,533.321,566.603,609.728,649.098,683.65,717.014,785.998,866.376,932.045,986.749,1030.428,1029.989,1073.347,1040.309,1086.789,1151.417,1215.48,1282.858,1392.823,1464.962,1514.222,1486.441,1540.844,1637.829,1708.412,1798.858,1785.371,1706.904,1786.547,1845.704,1869.76,1916.27,1962.251,2043.16,2040.153,2086.448,2142.487,2212.172,2284.395]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 France","value":[14.6279177,14.5567015,14.8330941,15.0098247,15.0853333,15.1259549,15.3095488,15.5084935,15.3420583,15.4666921,15.6036617,15.8556582,15.8198651,15.8678747,16.1963826,16.1704057,16.1507845,16.262606,16.3797119,16.3421218,16.3728653,16.5090539,16.7689217,16.6781326,16.5339996,16.3799844,16.3350796,16.2692938,16.3291452,16.4245575,16.4067613,16.2689411,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 France","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",15.85037,15.9118525,15.8484774,15.7904437,15.7398209,15.6332704,15.6511093,15.7831619,15.8603136,16.0255188,16.2213944,16.2124609,15.7322266,15.6010296,15.9135536,15.7375277,15.7272049,15.6253181,15.9017056,16.0149045,16.1230476,16.047272,16.3194333,16.1671025,15.9916612,15.8437221,15.804686,15.7796511,15.8073679,15.8120585]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 France","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",14.1352782,14.026286,14.0549272,14.1751811,14.2571102,14.4169912,14.5632538,14.5214866,14.0453115,13.8693358,14.1138508,13.921195,13.831277,13.6428426,13.8428399,13.9122629,13.9641511,13.8663326,14.0935504,13.9443392,13.7784554,13.6389517,13.5609062,13.4910281,13.4686666,13.4397672]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 France","value":[58.914,63.206,70.674,79.229,87.874,94.912,102.866,111.732,126.142,139.326,145.222,159.317,181.449,215.337,242.073,290.877,334.567,358.989,398.403,448.057,504.931,553.861,597.688,630.22,674.919,731.434,785.822,810.333,862.512,931.208,999.521,1026.931,1083.286,1129.36,1175.736,1224.716,1265.105,1282.41,1343.328,1400.999,1478.585,1538.2,1587.829,1630.666,1704.019,1765.905,1848.151,1941.36,1992.38,1936.422,1995.289,2058.369,2088.804,2117.189,2149.765,2198.432,2228.568,2291.697,2349.733,2412.712,2479.63]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 France","value":[18.6718116,18.384029,18.8419865,19.329868,19.3515856,19.1248679,19.1680058,19.5010768,20.2329941,19.979303,18.4699742,18.2641951,18.6888688,19.1707436,18.5750381,19.8610872,19.9107419,19.2980642,19.4765959,19.2693706,19.2485172,19.0440015,18.7927911,18.5507262,18.3017865,18.4577234,18.776352,18.3867512,17.9187189,17.6536394,17.5945389,16.9209437,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 France","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",16.4958179,16.7280715,17.3774998,17.2967287,17.3583576,17.0601793,16.3892345,16.4430078,16.3165544,16.0869993,16.1384787,16.0996072,16.279264,16.2471514,16.2257503,16.1220654,16.091325,16.5806361,17.0189141,16.8733114,16.9391183,16.8370441,16.9374231,16.6109142,16.1163095,16.2191927,16.2960972,16.2425112,16.1606232,16.0850074]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"fra","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"FRA.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 France","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",16.7692013,16.6451472,16.640929,16.3276563,15.653899,15.666161,15.5700739,15.3047069,15.2913126,15.2273865,15.4080887,15.3380908,15.2175348,15.0598779,14.9269671,15.22469,15.704208,15.5377872,15.5731199,15.4907862,15.5712414,15.2768724,14.8255618,14.8985563,14.8949277,14.7960332,14.6896405,14.5883919]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"mrd-gbp"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd GBP \u2013 United Kingdom","value":[26.476,28.142,29.46,31.324,34.237,37.036,39.573,41.901,46.008,49.909,56.177,62.948,70.663,81.895,92.743,115.176,136.949,159.701,185.968,220.845,259.962,289.899,319.21,351.109,377.577,414.329,446.413,495.534,554.896,613.381,667.435,703.728,727.965,766.408,806.42,846.536,903.432,948.953,991.238,1031.158,1089.341,1129.443,1182.956,1251.847,1312.854,1388.753,1465.902,1541.442,1579.796,1537.213,1587.466,1644.546,1694.417,1761.347,1844.295,1895.839,1969.524,2049.629,2117.724,2185.13,2258.174]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 United Kingdom","value":[62.441,66.221,69.663,76.045,83.784,89.433,94.462,100.083,108.714,116.655,128.442,142.278,157.687,183.269,202.957,226.521,255.979,282.53,313.585,356.301,388.42,426.312,471.247,515.396,558.791,609.932,647.442,697.171,771.654,836.094,880.377,912.345,941.213,970.682,1026.729,998.523,1079.2,1155.919,1189.06,1239.376,1354.94,1412.095,1472.833,1524.879,1613.934,1668.16,1740.676,1789.852,1779.175,1646.777,1729.833,1757.241,1825.13,1861.096,1946.443,2057.428,2050.959,2094.179,2146.491,2214.912,2282.745]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 United Kingdom","value":[19.7894775,19.2611159,18.5723085,18.5531199,18.4509118,18.0208277,17.6020541,17.4680129,17.4376199,16.7282302,16.3358195,16.3108251,16.2413939,16.3158049,15.5735374,15.4668652,15.2338283,15.1878714,15.3301451,15.3232793,14.8069989,14.658334,14.8171626,15.1708643,15.1527393,15.3916407,15.4699236,15.8190681,16.0311361,15.8504896,15.4972447,15.0422176,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 United Kingdom","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",14.6552079,14.5341885,14.9359192,15.104626,15.1076062,15.5240915,15.7122979,15.4400841,15.3227318,15.5896445,15.6360019,15.7693184,16.1390492,16.341062,16.2082544,16.0347371,15.648474,15.5710861,15.3415497,15.5065132,15.3502816,15.6642306,15.8495567,16.0368614,16.1033375,15.9276447,15.8632482,15.8091354,15.8269487,15.8006348]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 United Kingdom","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",13.5675124,13.9283298,14.1098755,13.8670559,13.7738686,14.0248669,14.0376997,14.1245643,14.4085119,14.5272256,14.3752232,14.1841022,13.7620372,13.5954913,13.3552099,13.4706197,13.2948594,13.5353493,13.6877625,13.8320045,13.8746759,13.7111958,13.6111544,13.5162361,13.4853504,13.4300574]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 United Kingdom","value":[70.188,73.827,77.106,81.984,89.609,96.934,103.574,108.089,107.319,117.181,131.892,146.874,157.399,163.033,181.919,205.662,220.325,244.303,280.11,341.705,434.365,524.124,569.555,598.127,639.283,703.472,664.757,703.313,835.141,911.004,934.978,1003.874,986.87,982.589,1039.332,1021.413,1110.143,1370.717,1465.388,1565.36,1787.335,1816.193,1881.197,1809.045,1934.483,2030.945,2150.266,2252.461,1983.959,1725.384,1850.53,1894.891,2089.627,2073.99,2287.866,2611.941,2403.374,2337.959,2393.704,2530.588,2624.333]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 United Kingdom","value":[22.2448384,21.4732175,20.5566214,20.002148,19.7335622,19.5323495,19.3001012,18.8653425,17.2138946,16.8037755,16.7745929,16.8377778,16.2117703,14.5142657,13.9592519,14.042592,13.1119559,13.1329076,13.693643,14.6955256,16.5584657,18.0215342,17.9082102,17.6060705,17.3354415,17.7521171,15.8836448,15.9584245,17.3500869,17.2706187,16.4583895,16.5410428,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 United Kingdom","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",16.1254617,15.2392314,15.1191436,15.2900446,14.4768677,14.9704855,17.5178094,17.9370835,18.2307648,19.4462029,19.0551203,19.0741828,18.060056,18.4445393,18.6610344,18.757524,18.6699448,16.510557,15.1641349,15.6491471,15.5937904,16.8436773,16.5918338,17.6779976,19.1476674,17.4914025,16.6250655,16.5464625,16.9501672,17.0236782]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"gbr","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GBR.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 United Kingdom","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",14.5898987,14.7140565,13.8785323,14.3276889,16.7318381,17.0896493,17.3967094,18.5005564,18.0548492,18.0408099,17.0935827,17.4125305,17.5014982,17.5217016,17.3189996,15.1603419,13.9927099,14.4105156,14.3362815,15.4968891,15.2535275,16.2582571,17.6141396,16.0671772,15.1956107,15.0729161,15.407318,15.4397248]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"mrd-euro-grd"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-GRD \u2013 Greece","value":[0.3825,0.4376,0.4596,0.5197,0.588,0.6779,0.7566,0.8169,0.8887,1.023,1.1567,1.2841,1.4864,1.9419,2.231,2.6844,3.3391,3.9108,4.7719,5.9217,7.1098,8.5112,10.7049,12.7726,15.8852,19.3818,23.1607,26.0905,31.7474,37.731,45.5389,56.2411,65.0161,73.2067,83.0205,93.0636,103.0366,114.7122,125.2626,133.7887,141.2473,152.1938,163.4608,178.9048,193.7158,199.2423,217.8616,232.6946,241.9904,237.5342,226.0315,207.0289,191.2039,180.6543,178.6565,177.2584,176.488,180.2176,184.7136,190.9078,197.5257]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Greece","value":[5.1266,5.9944,6.2599,7.2876,8.3242,9.6358,10.6707,11.6229,12.8362,15.0765,17.6053,20.323,23.7889,28.0592,29.807,35.918,42.1436,46.7419,53.3945,60.3998,67.6631,73.6765,78.935,81.9398,88.6047,95.1524,98.4327,98.386,107.383,117.7461,123.0729,132.9442,137.5964,136.1945,141.4306,137.0681,145.8972,157.8885,167.144,173.3525,184.8242,197.6898,211.7766,221.3587,235.8527,238.8705,260.2047,266.7794,270.1208,256.5019,239.5703,219.01,211.0591,210.2257,215.4888,218.7333,213.8199,217.0346,223.6336,232.9559,242.197]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Greece","value":[1.6247944,1.7435439,1.6689189,1.778005,1.833152,1.9416219,1.9883909,2.0285961,2.058919,2.1619614,2.2391127,2.3298472,2.4502102,2.4980152,2.2871855,2.4524841,2.5080476,2.5126899,2.6102781,2.5975838,2.5793936,2.5332974,2.4819094,2.4119266,2.402694,2.4011692,2.3519412,2.2324132,2.2308872,2.2322046,2.166449,2.1919071,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Greece","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.1355132,2.1247603,2.0956298,2.0806433,2.0738331,2.0987047,2.1461635,2.1703849,2.143202,2.126547,2.1890014,2.2674484,2.3428208,2.3880057,2.320925,2.3969508,2.3324214,2.3640594,2.3896,2.1475482,1.9131497,1.8114216,1.7903338,1.775425,1.7120088,1.6605145,1.6440205,1.6470856,1.6646171,1.676432]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Greece","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.8624232,1.8829734,1.9272865,1.9492672,1.9265614,1.9130994,1.9652431,2.0309515,2.0916078,2.1229402,2.0584459,2.1203089,2.051246,2.0641173,2.0802077,1.8655906,1.6569765,1.5652364,1.5461419,1.5313275,1.4750711,1.4294417,1.4106201,1.4081983,1.4183369,1.4249161]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Greece","value":[4.1132,4.6568,4.8793,5.5178,6.2426,7.1968,8.0334,8.7137,9.8104,11.3671,12.8522,13.9207,15.0504,17.9072,21.2462,22.8713,27.8301,31.6121,34.7451,39.7548,40.7736,47.0633,55.8248,55.735,61.2209,62.4589,57.4279,56.8914,64.5555,71.89,77.043,85.0924,89.6837,92.8823,98.2176,104.662,114.9082,126.3538,129.0572,139.9434,142.9759,152.1938,163.4608,178.9048,193.7158,199.2423,217.8616,232.6946,241.9904,237.5342,226.0315,207.0289,191.2039,180.6543,178.6565,177.2584,176.488,180.2176,184.7136,190.9078,197.5257]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Greece","value":[1.3035903,1.3544835,1.3008263,1.3462153,1.3747496,1.4501684,1.4969487,1.5208422,1.573581,1.6300329,1.6345966,1.595878,1.5501652,1.5942142,1.6302886,1.5616542,1.656221,1.6993615,1.6985752,1.7097169,1.554337,1.6182284,1.7552696,1.6405769,1.660127,1.576151,1.3721767,1.2908863,1.3411427,1.362874,1.3561857,1.4020852,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Greece","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.3668588,1.384894,1.429183,1.4449188,1.4834127,1.5495585,1.6148054,1.5797251,1.6298333,1.5555768,1.5967865,1.6573913,1.7860419,1.8470042,1.8307078,1.9004824,1.9287326,2.0138501,2.0876513,1.911452,1.7037211,1.541221,1.4452267,1.380452,1.2994492,1.2844535,1.2815147,1.2768314,1.2787225,1.2813214]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"grc","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"GRC.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Greece","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.3791545,1.3904876,1.4221026,1.4830242,1.5423539,1.5050913,1.5552686,1.4799309,1.5129655,1.5675996,1.6904629,1.7436606,1.7169535,1.7752709,1.7891707,1.8491596,1.9263808,1.7601603,1.5663302,1.4179879,1.3286539,1.2695863,1.1953769,1.1798678,1.1713276,1.1631231,1.1623298,1.162102]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"mrd-hrk"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd HRK \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2852,0.4104,2.5498,37.1181,89.4992,117.0611,128.623,146.7035,161.7719,166.2588,180.1735,194.1982,211.5004,232.444,250.5648,269.7795,294.1503,322.4639,347.7499,331.3671,329.1431,333.4566,330.825,331.7849,331.5697,339.6162,351.3491,365.6432,381.7987,397.6853,414.1285]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",30.92423,33.68789,36.98695,38.27406,38.71533,41.69676,43.53999,46.82831,49.45548,52.86166,56.01788,62.15344,68.69969,70.96599,65.59809,65.02306,67.03863,68.23547,68.17585,68.97421,72.6711,74.47868,76.58249,79.4494,83.09154,86.62921]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4678821,0.4845943,0.5027601,0.4969934,0.4786478,0.4797539,0.4821144,0.5013811,0.523428,0.5352236,0.5442836,0.5725444,0.6006335,0.6210843,0.6111189,0.5828775,0.5856122,0.5856331,0.5806024,0.5682827,0.5687912,0.5783976,0.5801067,0.5851534,0.5937416,0.5996275]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4201854,0.4347816,0.451486,0.4463599,0.4302647,0.4315996,0.432833,0.4490866,0.4673025,0.4758145,0.4827293,0.5064647,0.5282266,0.5422837,0.5319946,0.5063499,0.507198,0.5060413,0.5014114,0.4901514,0.490072,0.4979093,0.4977494,0.5002849,0.5058975,0.5096651]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",8.86051,12.54807,17.12318,18.65014,21.01865,22.69555,21.93061,23.57456,25.95547,28.53104,30.71092,33.42352,36.45276,40.1588,43.94702,48.13887,45.14519,45.1558,44.82519,43.98291,43.77908,43.43092,44.60592,46.63952,48.98955,51.46814,53.52818,55.72142]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1363371,0.1845998,0.2426932,0.2515007,0.2686191,0.277805,0.255412,0.2564911,0.2723194,0.2892871,0.3065933,0.3186801,0.3349407,0.3503192,0.3642631,0.4006129,0.3967741,0.3818635,0.3688839,0.3545293,0.3502308,0.3355842,0.326998,0.3394356,0.3483613,0.3557731,0.3585379,0.361457]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hrv","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HRV.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Croatia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1315646,0.1776458,0.2326626,0.2407019,0.2565669,0.2646802,0.243727,0.2440183,0.2580244,0.2736145,0.2901861,0.3008493,0.3141286,0.3272388,0.3379052,0.3678512,0.3661234,0.3516389,0.3391365,0.3261818,0.321981,0.3086331,0.3008089,0.3117973,0.3184085,0.3240897,0.3259029,0.3278255]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"mrd-huf"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd HUF \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",345.62,375.04,406.43,445.93,466.62,501.75,549.78,604.97,654.55,709.23,749.46,810.68,881.37,931.68,1017.12,1074.5,1131.78,1274.81,1497.25,1790.8,2171.76,2596.91,3058.82,3688.31,4537.09,5835.63,7122.46,8833.3,10456.47,11660.56,13350.07,15419.13,17461.7,19138.92,21099.07,22559.88,24256.96,25680.21,27193.63,26424.6,27224.6,28304.94,28781.06,30248.24,32583.42,34378.59,35474.19,38355.12,42072.79,45391.56,48241.1]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",78.6086,79.101,79.0901,82.8555,79.8281,82.12,87.2626,92.4132,97.3014,106.2806,117.0221,126.9522,132.963,138.9682,146.4565,152.57,157.7465,164.0369,157.4182,164.8026,171.8354,173.1492,177.7971,185.5895,194.9272,191.7175,199.0386,211.1385,223.1808,233.3758]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.2627071,1.2214759,1.2169618,1.2189219,1.2077948,1.1812816,1.1861522,1.1999972,1.2029627,1.2228414,1.2957751,1.3592512,1.4072572,1.4070513,1.4230078,1.4054422,1.3791596,1.4356278,1.4665251,1.4773184,1.5010588,1.4860587,1.5141643,1.5290835,1.5256805,1.4888687,1.5077023,1.5550583,1.5947681,1.6153735]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.0846702,1.0598546,1.0651822,1.077742,1.081364,1.1001013,1.1633218,1.2174801,1.2563617,1.2508704,1.2620763,1.2432344,1.2129007,1.2534813,1.2766475,1.2833571,1.3000651,1.2840927,1.3076404,1.3188547,1.3145301,1.2816816,1.2936549,1.3295183,1.358822,1.3730182]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",17.592,21.7735,24.8653,24.527,26.8333,48.2481,25.9051,17.6396,17.9627,22.6704,16.6391,18.2621,17.7038,34.2745,36.288,35.4653,36.7596,41.7346,43.4649,46.1316,51.3376,60.0922,71.8713,75.4635,83.8409,90.9473,91.7909,102.1683,108.1206,94.2635,98.8259,101.3161,99.5026,101.8895,105.5484,110.9003,113.9045,124.049,131.9352,141.7389,150.298]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.6706253,0.7486625,0.7818272,0.7219618,0.727639,1.2175411,0.6189737,0.4002492,0.3731756,0.4297812,0.2928971,0.3009085,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2933484,0.2733824,0.5273833,0.5338483,0.5026624,0.49571,0.5333695,0.5320318,0.5372661,0.5585531,0.6304753,0.7287305,0.7533668,0.7993898,0.8356553,0.8007237,0.8468414,0.899782,0.8284675,0.8357285,0.8337694,0.802052,0.8151116,0.8155565,0.8129898,0.8289805,0.8821038,0.9120013,0.9493834,0.9749618]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"hun","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"HUN.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Hungary","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5089223,0.5137378,0.4818872,0.4744254,0.5094388,0.506896,0.5126862,0.5313913,0.5973795,0.6892504,0.7130508,0.7546623,0.7837304,0.7479688,0.7855645,0.8261988,0.7644686,0.7695805,0.7665329,0.7379214,0.7493643,0.7500582,0.7478778,0.7614814,0.8062588,0.830783,0.862968,0.8842473]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"mrd-euro-iep"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-IEP \u2013 Ireland","value":[0.915,0.9851,1.0664,1.1469,1.3053,1.3898,1.4644,1.5995,1.8047,2.0846,2.3482,2.6858,3.2429,3.9147,4.3299,5.4959,6.7409,8.2593,9.7941,11.4859,13.5842,16.4861,19.4261,21.4804,23.8421,25.8772,27.4453,29.3566,31.6454,35.3314,37.8973,39.3244,41.782,45.1278,48.534,54.8243,60.2189,69.3752,80.3262,92.6324,108.3804,121.9586,135.9592,145.5558,156.1438,170.187,184.9937,197.202,187.7691,170.1006,167.7212,171.1402,175.2162,179.9224,195.2929,262.4662,273.2382,294.1101,318.4596,336.0147,353.8899]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Ireland","value":[2.0382,2.2109,2.3744,2.5887,2.805,2.988,3.1349,3.4184,3.8118,4.2484,4.6754,5.1783,5.8595,6.6958,7.9263,9.4874,10.5588,12.2999,14.0349,15.8408,18.1649,20.7561,23.0009,24.0791,26.633,28.7647,29.6898,31.7766,34.6753,38.9054,43.7714,46.7446,49.6517,51.2893,55.2225,57.5585,63.5159,71.7682,80.4371,88.4256,100.6258,109.2429,118.9204,122.8971,133.2115,142.9834,156.4013,169.5599,157.1119,143.5643,151.081,155.2769,160.8874,162.9321,175.7604,243.6297,245.375,260.7265,281.0918,297.1828,312.5204]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Ireland","value":[0.6459855,0.6430614,0.6330264,0.6315902,0.6177091,0.6020777,0.5841529,0.596622,0.6114145,0.6092143,0.5946334,0.5936407,0.6035131,0.5961051,0.6082087,0.6478004,0.6283719,0.6612007,0.6861215,0.6812587,0.6924677,0.7136789,0.7232058,0.7087754,0.7222063,0.725878,0.7094042,0.7210223,0.7203798,0.7375598,0.770506,0.7706986,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Ireland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.7508698,0.7667208,0.7891911,0.8124002,0.8708573,0.9136652,0.9755383,1.0444857,1.093229,1.1577788,1.2096369,1.2732565,1.3007211,1.3487651,1.3892621,1.4407362,1.482443,1.3750208,1.3374604,1.354315,1.3564124,1.3808212,1.3875697,1.448101,1.9068713,1.9055697,1.9749834,2.0702718,2.1235587,2.1631947]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Ireland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.7820807,0.8197472,0.8760478,0.938074,0.9827224,1.0415692,1.0859886,1.1404547,1.1612491,1.1990539,1.2321471,1.274455,1.3037332,1.2005638,1.1642934,1.1765032,1.174787,1.1931577,1.1983127,1.2490062,1.6429651,1.6403956,1.6945965,1.7700071,1.809378,1.8386494]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Ireland","value":[1.9103,2.0353,2.1982,2.364,2.6906,2.8647,3.0186,3.2496,3.3154,3.8547,4.342,4.9354,5.6889,6.1376,6.6399,7.7318,8.5363,9.9507,11.6186,13.5125,15.8261,18.7894,22.1856,23.6619,25.8659,28.4968,29.4672,29.8153,32.1306,35.8202,38.8744,40.3362,43.2565,44.4289,48.1637,52.9446,59.7723,73.0919,80.4609,92.6324,108.3804,121.9586,135.9592,145.5558,156.1438,170.187,184.9937,197.202,187.7691,170.1006,167.7212,171.1402,175.2162,179.9224,195.2929,262.4662,273.2382,294.1101,318.4596,336.0147,353.8899]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Ireland","value":[0.6054374,0.5919922,0.5860509,0.5767627,0.5925136,0.5772452,0.5624845,0.5671639,0.5317916,0.5527568,0.5522283,0.5657952,0.5859478,0.5464113,0.5095028,0.5279279,0.5080099,0.5349143,0.5679951,0.5811257,0.6033083,0.6460565,0.6975701,0.6964959,0.7014068,0.719116,0.704086,0.6765196,0.6675139,0.6790707,0.6843048,0.6646274,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Ireland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.6479291,0.6679656,0.6836296,0.7085564,0.7504037,0.8060408,0.9341173,0.9848823,1.0788311,1.1791783,1.2795651,1.3785425,1.4531128,1.4887698,1.5637374,1.6137648,1.634546,1.5626187,1.4949875,1.4183469,1.4083789,1.4123502,1.4393717,1.5089988,1.9240921,1.9885878,2.0913966,2.2013497,2.2506651,2.2956339]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"irl","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"IRL.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Ireland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.6596992,0.6818645,0.7193892,0.7714313,0.8922063,0.9383517,1.0294747,1.1218363,1.2123962,1.3038578,1.3753503,1.4054701,1.4665718,1.5074434,1.5162713,1.4348295,1.3795001,1.3060846,1.2948049,1.2994214,1.3232712,1.3878093,1.7699925,1.8266684,1.9115744,2.0053084,2.0458036,2.0820386]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"mrd-isk"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd ISK \u2013 Iceland","value":[0.092,0.104,0.125,0.149,0.191,0.23,0.277,0.281,0.302,0.373,0.466,0.593,0.746,1.047,1.524,2.176,3.06,4.419,6.852,10.123,16.322,25.389,39.851,69.137,91.344,124.623,165.0,214.824,264.287,325.565,379.343,410.157,409.99,422.984,449.657,463.677,497.886,537.525,602.727,648.964,707.83,799.404,851.964,875.561,971.085,1058.882,1208.248,1378.141,1574.729,1627.657,1672.719,1757.695,1841.729,1958.961,2073.56,2293.948,2490.936,2616.825,2803.049,2975.042,3174.995]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Iceland","value":[0.21192,0.21871,0.24648,0.28294,0.32468,0.36404,0.41163,0.41892,0.40794,0.43967,0.50648,0.61295,0.69155,0.80599,0.96734,1.10295,1.28333,1.50464,1.69911,1.95138,2.29613,2.64802,2.93128,3.00986,3.3224,3.59505,3.93195,4.36444,4.5636,4.83332,5.11104,5.34292,5.30632,5.40772,5.70421,5.42088,5.72008,6.29895,6.79711,7.14408,7.32116,7.86122,8.03216,8.01408,8.80228,9.39097,9.83212,10.57138,10.86576,10.1506,9.63269,9.81167,10.16232,10.50259,11.03215,12.14357,12.77157,13.41633,14.18733,14.71349,15.39157]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Iceland","value":[0.0671648,0.0636139,0.0657132,0.0690308,0.0715019,0.0733543,0.0767028,0.0731159,0.0654327,0.063048,0.0644159,0.0702693,0.0712283,0.0717544,0.0742268,0.0753095,0.0763732,0.0808844,0.0830638,0.083922,0.0875309,0.0910499,0.0921666,0.0885963,0.0900935,0.0907211,0.0939496,0.0990307,0.0948089,0.0916291,0.0899695,0.088091,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Iceland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0858246,0.0819401,0.0832088,0.0839169,0.0820176,0.0822823,0.0856211,0.0882613,0.0883241,0.0842357,0.0870466,0.0859987,0.0848196,0.0891229,0.091245,0.0905714,0.0924243,0.0950956,0.0945641,0.0863491,0.0857093,0.0872184,0.0894426,0.0908946,0.0950468,0.0991833,0.1016277,0.1044912,0.1051372,0.1065369]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Iceland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0736566,0.0738243,0.076889,0.0792693,0.079396,0.0757807,0.0781487,0.077029,0.0757246,0.0792304,0.0809258,0.0801182,0.0812825,0.0830303,0.0823205,0.0750121,0.0742327,0.0753648,0.0772431,0.0783978,0.0818926,0.0853813,0.0871997,0.0893362,0.0895821,0.0905531]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Iceland","value":[0.25294,0.24301,0.27207,0.32472,0.41468,0.50027,0.60121,0.59658,0.47179,0.41516,0.51837,0.64366,0.75309,0.94301,1.26815,1.14278,1.50295,1.94578,1.97668,2.09173,2.45145,3.16059,3.31516,3.1448,3.67147,3.93893,4.08334,4.81605,5.20707,5.17985,5.12394,5.61845,5.49154,5.33714,5.41063,5.47529,5.88129,6.68238,7.56267,8.40821,9.75175,9.14469,9.88608,10.10482,11.14394,13.53625,13.76806,15.72609,10.94862,9.42654,10.33245,10.88895,11.45853,12.06405,13.39053,15.67838,18.64613,21.70919,21.91765,22.00961,23.55945]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Iceland","value":[0.0801654,0.0706824,0.0725338,0.0792247,0.0913211,0.1008054,0.1120288,0.1041249,0.075675,0.0595342,0.0659287,0.0737895,0.0775669,0.0839531,0.0973091,0.078029,0.0894437,0.1045988,0.0966333,0.0899579,0.0934522,0.1086738,0.1042367,0.0925683,0.0995594,0.0993988,0.0975668,0.1092779,0.1081772,0.0981984,0.0901966,0.0925764,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Iceland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0902505,0.0848003,0.0821228,0.079598,0.0776033,0.0793103,0.085401,0.0925709,0.0979252,0.106099,0.0959442,0.1002388,0.1008785,0.1062531,0.1243758,0.1201036,0.1303487,0.0911147,0.0828484,0.0873771,0.0896094,0.0923628,0.0965119,0.1034666,0.1149354,0.1357038,0.1543725,0.1515056,0.1474229,0.1528268]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"isl","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ISL.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Iceland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0792481,0.0765995,0.0743959,0.075905,0.0815694,0.0881974,0.0934451,0.1009396,0.0909077,0.0948082,0.09548,0.1003081,0.1166475,0.1121907,0.1209167,0.0836634,0.0764484,0.0804612,0.0823832,0.0849776,0.0887272,0.0951571,0.1057302,0.1246542,0.1410993,0.1380133,0.1340041,0.1386072]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"mrd-euro-itl"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-ITL \u2013 Italy","value":[12.64,14.261,16.072,18.525,20.431,22.084,24.129,26.792,29.122,32.206,36.374,39.726,43.557,52.522,66.422,76.111,95.573,116.144,136.751,167.355,209.021,250.544,295.826,344.771,394.405,442.95,490.629,537.443,597.924,657.02,726.795,794.168,836.206,861.958,911.901,984.983,1043.086,1089.869,1135.5,1171.901,1239.266,1298.89,1345.794,1390.71,1448.363,1489.726,1548.473,1609.551,1632.151,1572.878,1604.515,1637.463,1613.265,1604.599,1621.827,1652.085,1689.824,1727.382,1756.982,1770.233,1801.363]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Italy","value":[46.381,51.962,57.842,63.949,69.406,75.872,84.169,93.454,103.322,115.948,131.798,143.358,157.548,183.471,218.831,241.928,283.326,311.938,341.895,395.27,453.452,504.348,547.373,579.717,633.052,680.549,719.385,758.208,825.489,900.387,959.774,1020.035,1055.999,1053.356,1094.651,1066.943,1113.527,1169.863,1227.372,1267.714,1348.592,1381.635,1403.709,1414.383,1437.688,1480.743,1556.373,1637.698,1645.8,1551.188,1588.108,1628.294,1630.589,1598.765,1616.314,1680.906,1722.189,1751.771,1785.979,1821.631,1866.426]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Italy","value":[14.6995484,15.1138348,15.4207533,15.6020128,15.2846216,15.2881783,15.6841478,16.3109305,16.5726536,16.6269281,16.762622,16.4346139,16.2271395,16.3337933,16.7916233,16.5188652,16.8613151,16.7687716,16.7141275,16.9991928,17.2860971,17.3415364,17.2107427,17.064166,17.1664925,17.1736393,17.1889147,17.2039989,17.1495647,17.0693334,16.8948683,16.8177402,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Italy","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",16.3850496,16.3067051,16.2080325,16.1038627,16.1428018,16.0178915,15.9018377,15.9375702,15.6730849,15.5166077,15.2987194,15.0292286,14.969575,14.5565761,14.3872687,14.3369828,14.3182089,14.4038045,14.4510327,14.236063,14.2238676,13.9945775,13.615482,13.3169119,13.1563231,13.3744307,13.2695317,13.1539249,13.0167029,12.9189734]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Italy","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",14.4971786,14.3713709,14.280085,14.3138583,14.088807,13.9591611,13.7348941,13.4616665,13.3644366,12.9408153,12.7601772,12.6822927,12.5921367,12.5763096,12.5799922,12.3669705,12.3192737,12.092614,11.7584035,11.4860122,11.335521,11.5132803,11.3856659,11.2461277,11.0908807,10.9807332]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Italy","value":[37.074,41.394,46.543,53.646,59.167,63.954,69.874,77.949,87.689,97.611,110.238,118.812,128.906,141.943,162.424,182.043,198.952,223.371,245.123,284.641,340.328,384.048,432.699,494.524,552.834,592.32,649.844,696.12,753.085,842.234,924.63,1002.928,1014.795,906.451,922.002,895.337,1031.004,1093.807,1131.194,1171.901,1239.266,1298.89,1345.794,1390.71,1448.363,1489.726,1548.473,1609.551,1632.151,1572.878,1604.515,1637.463,1613.265,1604.599,1621.827,1652.085,1689.824,1727.382,1756.982,1770.233,1801.363]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Italy","value":[11.7500216,12.0399413,12.4084174,13.0882272,13.0297263,12.8867362,13.0203839,13.6048797,14.0652877,13.9973805,14.0204915,13.6206346,13.2770726,12.6366808,12.4633113,12.429889,11.839999,12.007679,11.9832614,12.2414112,12.973704,13.2051223,13.6051325,14.5564854,14.9912065,14.94718,15.5273109,15.7952161,15.6453721,15.9668814,16.2762383,16.5254485,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Italy","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",16.1102592,15.6704426,13.9475921,13.5639432,12.6899477,13.9032847,13.9788829,13.8463834,13.6483987,13.4832127,13.6276894,13.6455235,13.8837314,13.809569,13.6881169,13.5078733,13.3410625,13.5827997,13.8237846,13.5686975,13.4753184,13.0039075,12.8367254,12.5316174,12.1111409,12.2982925,12.2832891,12.145121,11.8572217,11.6851838]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ita","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ITA.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Italy","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",13.4593574,13.0529787,12.1654665,13.3063111,13.3516925,13.1922135,13.0239861,12.8275395,12.9123235,12.9062565,13.1407516,13.0368961,12.8375817,12.6179194,12.3757118,12.4720134,12.7559013,12.4947338,12.3886466,11.9641399,11.8013082,11.5251887,11.1411652,11.2969126,11.2271485,11.0635364,10.777946,10.597946]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"mrd-jpy"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd JPY \u2013 Japan","value":[16620.9,20074.7,22780.4,26072.0,30669.1,34120.7,39627.2,46438.2,54997.4,64604.7,76145.0,83782.3,95921.8,116793.0,139368.9,153989.9,172932.7,192708.6,212207.8,230004.7,249345.3,268063.2,281430.4,292696.1,311092.7,334120.6,349684.4,363659.7,390944.4,421110.9,454644.7,481999.4,493664.8,496672.2,501537.7,512541.7,525806.9,534142.5,527876.9,519651.8,526706.0,523005.0,515986.2,515400.7,520965.4,524132.8,526879.7,531688.2,520715.7,489501.0,500353.9,491408.5,494957.2,503175.6,513876.0,531319.8,535986.4,545121.9,548904.4,555512.4,561128.1]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Japan","value":[54.089,62.49,70.61,79.956,92.811,102.493,117.502,134.544,155.112,182.818,216.132,241.507,278.213,327.976,367.82,429.576,490.468,551.631,618.551,714.612,817.561,942.061,1055.306,1141.315,1263.876,1407.853,1489.95,1586.21,1778.721,1979.9,2184.782,2365.113,2450.839,2469.508,2535.883,2473.124,2628.652,2736.616,2740.108,2797.736,2983.149,3032.599,3082.577,3134.857,3281.578,3438.825,3502.607,3640.446,3521.683,3232.995,3429.074,3450.171,3587.371,3648.901,3675.738,3859.107,3798.939,3756.368,3827.052,3930.825,4024.982]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Japan","value":[17.1425523,18.17595,18.8249769,19.5071852,20.4386991,20.6523358,21.8953269,23.4826356,24.8797171,26.2160766,27.4885529,27.6864785,28.6553828,29.1985756,28.2240139,29.3314495,29.1886963,29.6538405,30.238921,30.7329926,31.1663311,32.3918923,33.1814089,33.5949892,34.2725555,35.5271605,35.6007214,35.9916616,36.9530102,37.5345105,38.4586419,38.9946058,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Japan","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",37.9913436,37.8457929,37.998423,37.3064127,37.4182379,37.812684,37.1985648,35.5806409,34.5891467,34.3234679,33.5796939,33.004524,33.1787748,33.2259387,33.4124758,32.2652805,31.8279998,30.8212694,30.1189289,30.7387962,30.1387783,30.7887246,31.0749451,30.2846335,30.2049386,29.5023651,28.4542062,28.1866488,28.0882311,27.8600024]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Japan","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",33.6037623,33.92582,33.4048605,31.9557026,31.0927821,30.8783224,30.1471989,29.5621224,29.6211235,29.5379032,29.6337771,28.5414119,27.9911075,26.9107946,26.219295,26.7030136,26.1031577,26.604316,26.8364897,26.1208958,26.0246508,25.3968941,24.4145832,24.0985602,23.9325752,23.6801519]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Japan","value":[43.713,52.245,59.15,67.697,79.634,88.596,102.894,121.144,148.482,175.563,206.914,230.282,282.356,350.554,410.297,426.88,522.124,630.164,794.539,765.506,791.462,1092.446,1155.553,1384.862,1662.806,1850.479,2119.338,2182.858,2581.19,2771.597,2475.47,2895.013,3006.063,3816.24,4133.939,4166.599,3807.877,3896.689,3605.347,4283.419,5294.867,4812.234,4370.448,3935.221,3874.945,3830.003,3608.386,3297.237,3415.558,3755.668,4304.543,4428.755,4829.234,3880.651,3662.535,3955.803,4459.246,4302.082,4209.522,4423.418,4462.318]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Japan","value":[13.8538998,15.196087,15.7696477,16.5163625,17.5368796,17.8521362,19.1732484,21.143838,23.8163104,25.175632,26.3161852,26.3996677,29.0821223,31.2086344,31.4834187,29.1473976,31.07262,33.8755304,38.842366,32.9217607,30.1714067,37.562728,36.3334341,40.7638652,45.0903428,46.6968199,50.6392558,49.5298206,53.6243253,52.5433257,43.5756155,47.701714,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Japan","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",46.5032448,46.4195639,58.7206435,60.8160705,59.0547556,51.3499417,49.7998056,44.1312676,49.8862853,57.6081374,50.4889756,44.3136456,39.286098,36.9460768,35.1914031,31.4772099,27.3297685,28.4243593,33.0079862,36.4016911,36.4459493,38.9265906,31.0450477,28.2998592,28.9992793,32.4537389,30.591806,29.0982917,29.6285655,28.9464221]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"jpn","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"JPN.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Japan","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",56.6651305,58.5250808,56.6139963,49.145099,47.5654383,42.046294,47.6039937,54.8067198,47.8386296,41.9128866,37.1837255,34.87887,33.0047234,29.4033626,25.3522039,26.0998467,30.458129,33.5204938,33.506888,35.8140948,28.5409374,26.0270646,26.6767404,29.8112158,27.9614642,26.5069413,26.931695,26.2531273]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"mrd-won"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd WON \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2794.8,3433.3,4259.8,5513.5,7879.9,10505.1,14413.2,18520.3,25023.1,32218.9,39471.3,49324.0,56858.6,67509.2,77855.6,87239.6,101840.2,120204.9,144073.4,163518.0,197712.3,238877.2,273267.4,310073.7,366054.2,428927.1,481140.8,530347.1,524476.8,576872.8,635184.6,688164.9,761938.9,810915.3,876033.1,919797.3,966054.6,1043257.8,1104492.2,1151707.8,1265308.0,1332681.0,1377456.7,1429445.3999999999,1486079.3,1564123.8999999999,1641786.0,1730398.5,1781860.8999999999,1854436.5,1932821.8]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",12.467,14.74,16.783,21.029,26.136,31.937,39.669,47.987,56.621,67.362,73.68,87.348,102.475,121.775,142.57,160.927,184.212,211.861,248.123,280.537,321.996,372.289,406.279,436.656,485.479,504.932,560.049,610.929,584.608,666.654,744.888,788.966,850.19,868.681,933.834,990.995,1035.743,1116.576,1110.863,1062.008,1151.984,1176.504,1217.736,1208.286,1256.399,1349.415,1365.643,1393.138,1445.833,1510.043,1574.647]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.5856447,1.6898591,1.7286239,1.8721785,2.0054751,2.1806381,2.3607855,2.5796205,2.7680121,2.8970262,2.808754,3.0033709,3.222058,3.5844916,3.8660829,4.0609861,4.401536,4.8071955,5.1547705,5.3183512,5.6680878,6.138078,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5.9801561,6.2737513,6.7188396,7.1420828,7.6395921,8.0561977,8.3042941,7.5912062,8.2420203,8.5705169,8.7361477,9.102814,9.1939711,9.4550582,9.6287525,9.541042,9.7620983,9.7221185,9.8937788,10.3265764,10.2772891,10.4512557,10.2900616,10.3515496,10.5617729,10.605514,10.5529185,10.6487179,10.7902084,10.8993481]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6.8607998,7.2280802,7.4573787,6.8178178,7.4088946,7.7102694,7.8431442,8.1533823,8.2081317,8.4055592,8.5398133,8.4398711,8.5852691,8.4886165,8.6127866,8.9707712,8.901147,9.0308551,8.8865526,8.9283481,9.10005,9.1296787,9.0547283,9.1042667,9.1937963,9.2641133]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",8.804,9.439,9.665,11.238,16.206,17.493,26.635,33.533,40.578,48.573,49.618,66.741,80.372,105.182,136.255,112.929,107.94,112.121,167.975,203.449,204.907,242.917,289.083,346.252,370.397,423.159,477.336,504.891,334.998,455.213,608.706,595.903,648.185,602.059,615.788,722.198,805.998,819.535,687.691,649.617,826.015,864.684,951.485,983.172,1062.896,1244.782,1278.469,1355.328,1371.642,1447.647,1507.841]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.1196813,1.08211,0.9954864,1.0004653,1.2435474,1.1944252,1.5851233,1.8026249,1.9837134,2.0889525,1.8914811,2.294815,2.5270961,3.0960683,3.6948312,2.8497743,2.5791164,2.5440649,3.4896893,3.8569351,3.6069678,4.0025873,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.9020253,4.46402,5.3277906,5.4490586,5.9975956,6.4369719,6.4525169,4.1005491,5.3015758,6.6227173,6.252095,6.5721939,6.0104722,5.8713011,6.6358031,7.0310057,6.792867,5.7229842,5.7093801,6.985262,7.1158235,7.6695548,7.8653334,8.2128354,9.1252731,9.3045122,9.6376406,9.481466,9.6965041,9.7811497]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"kor","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"KOR.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Korea","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",5.1412916,5.2437882,5.7497123,6.1605838,6.1630119,3.9068194,5.0590293,6.3006622,5.9239002,6.2161353,5.6888253,5.5427901,6.2234758,6.5677743,6.3013395,5.2549649,5.2683322,6.4323779,6.5419918,7.0563118,7.2309113,7.553253,8.3944342,8.5468988,8.8089779,8.6370934,8.8139026,8.8710711]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"mrd-euro-ltl"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-LTL \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.04072,0.12594,1.03428,3.51956,5.13354,7.76453,9.71415,11.72434,13.02196,12.71208,13.36818,14.19452,15.20217,16.66848,18.23772,21.00235,24.07918,29.04066,32.69628,26.93482,28.02766,31.27532,33.34848,34.95965,36.56828,37.43391,38.84943,42.19083,45.13355,47.77014,50.23163]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",29.827,29.47625,23.85597,20.10258,18.46742,18.10645,19.59036,21.82136,23.82158,24.0475,25.93619,28.48017,31.03554,34.9736,37.24656,41.02317,44.62615,50.86384,52.42841,43.64963,47.62117,52.21101,55.67893,57.92776,60.89958,63.10209,63.22656,66.41121,69.4451,72.70229,75.76101]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5250438,0.4859872,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4734836,0.3683833,0.3093192,0.2716819,0.2739496,0.2818037,0.2966157,0.3093261,0.2973055,0.2984161,0.3153583,0.3322912,0.3701544,0.3771209,0.3985913,0.4110867,0.4446967,0.458846,0.4066447,0.4268842,0.4560863,0.4778662,0.4933271,0.5017554,0.4938953,0.4910142,0.50306,0.5114707,0.5195038,0.5244003]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2460228,0.2528364,0.2663653,0.2778121,0.2672531,0.2684633,0.2831226,0.2976329,0.330464,0.335261,0.3535136,0.3636415,0.3910881,0.4006295,0.3539945,0.3708373,0.3950158,0.4129207,0.4260399,0.4327706,0.4255414,0.422686,0.4316409,0.4372888,0.4426432,0.4457243]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.66621,2.38899,3.74586,5.1241,6.60388,8.92426,10.02643,10.29351,12.49131,13.68143,15.17302,16.66872,18.2374,21.00235,24.07918,29.04066,32.69628,26.93482,28.02766,31.27532,33.34848,34.95965,36.56828,37.43391,38.84943,42.19083,45.13355,47.77014,50.23163]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0257295,0.0367594,0.0551069,0.0726257,0.0890545,0.1140524,0.1227286,0.119882,0.1359055,0.1435428,0.1538451,0.1664072,0.1738864,0.1929769,0.2100511,0.2407089,0.2720993,0.236726,0.237018,0.2573768,0.2688092,0.2796757,0.2825577,0.2744213,0.2827405,0.300016,0.3119853,0.3199699,0.3258455]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"ltu","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LTU.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Lithuania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0354727,0.053031,0.0696241,0.0852307,0.1089352,0.1169303,0.1143974,0.1292965,0.1360077,0.1455103,0.157502,0.1641571,0.180986,0.1962121,0.2232914,0.2498473,0.218439,0.218258,0.2366215,0.2473158,0.2571169,0.2598651,0.252443,0.2597185,0.2742201,0.2842014,0.2908454,0.2955274]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"mrd-euro-luf"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-LUF \u2013 Luxembourg","value":[0.8871,0.88744,0.9345,0.99703,1.13818,1.19258,1.25317,1.26126,1.37992,1.5979,1.87036,1.90461,2.14781,2.61022,3.18208,2.94755,3.39144,3.48505,3.81313,4.15056,4.51701,4.81475,5.39565,5.93584,6.58089,6.97469,7.66461,7.97246,8.88727,10.15042,10.95911,12.12347,12.80439,14.13917,15.19942,15.77664,16.71355,17.49826,18.18417,20.87064,23.07942,23.77193,25.09471,26.18779,27.93553,30.03104,33.80845,37.17887,38.12858,36.97652,40.17781,43.16465,44.1121,46.49956,49.82451,51.57886,53.30303,55.29938,58.86922,61.41734,64.07164]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Luxembourg","value":[0.57223,0.61368,0.64721,0.69684,0.78473,0.83588,0.87882,0.90783,0.97437,1.1281,1.22993,1.35165,1.53102,1.80954,2.1411,2.2662,2.55158,2.79223,3.09536,3.46968,3.89321,4.28249,4.69309,5.07206,5.70937,6.1555,6.96759,7.40663,8.40761,9.75183,10.73472,12.21906,12.78761,13.4034,14.16716,13.64042,14.60193,15.51553,16.30149,19.01269,21.1613,21.42544,22.52304,23.00999,24.83343,26.97274,30.50197,33.22937,33.47731,31.14864,33.21493,35.97949,36.76495,38.15635,41.53978,43.98879,44.49432,45.32527,47.0096,49.10855,51.24739]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Luxembourg","value":[0.181358,0.178496,0.1725495,0.1700121,0.1728133,0.1684305,0.1637591,0.1584482,0.1562881,0.1617696,0.1564272,0.1549546,0.1576919,0.1610976,0.1642933,0.1547361,0.1518494,0.150101,0.1513221,0.1492188,0.1484136,0.1472495,0.1475623,0.1492977,0.154821,0.1553341,0.166483,0.1680592,0.1746684,0.184873,0.1889629,0.2014607,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Luxembourg","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1962775,0.197466,0.2062387,0.208419,0.206379,0.2100462,0.2109012,0.2116768,0.2350589,0.2434773,0.2372419,0.2411496,0.2435337,0.2514381,0.2620738,0.2809777,0.2905206,0.2929887,0.2901841,0.2977441,0.3142968,0.3155364,0.3249489,0.3422488,0.344297,0.3455406,0.3433356,0.3462308,0.3509116,0.3547227]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Luxembourg","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1853404,0.188455,0.1893924,0.1901113,0.2112985,0.2190388,0.2129912,0.2159975,0.2174204,0.2235288,0.2324352,0.2485489,0.2554981,0.2558155,0.2526126,0.2586525,0.2722121,0.2726527,0.2806276,0.2951941,0.2966471,0.2974561,0.2945925,0.2960148,0.2989942,0.3015035]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Luxembourg","value":[0.67762,0.67081,0.70476,0.75191,0.85837,0.89939,0.94509,0.95565,1.08206,1.2612,1.47618,1.51046,1.75528,2.2028,2.79588,2.60931,3.16943,3.43878,3.83966,4.1686,4.48829,4.70342,4.86808,5.26984,5.84199,6.26442,7.05947,7.47214,8.25522,9.43894,10.42032,11.5827,12.41857,14.09326,15.46135,16.50835,17.15641,17.41481,18.05847,20.87064,23.07942,23.77193,25.09471,26.18779,27.93553,30.03104,33.80845,37.17887,38.12858,36.97652,40.17781,43.16465,44.1121,46.49956,49.82451,51.57886,53.30303,55.29938,58.86922,61.41734,64.07164]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Luxembourg","value":[0.2147609,0.1951134,0.1878912,0.1834481,0.1890291,0.1812287,0.1761079,0.1667938,0.1735614,0.1808563,0.1877472,0.1731607,0.1807899,0.1961083,0.214537,0.1781638,0.1886192,0.1848574,0.1877084,0.1792772,0.1710987,0.1617228,0.1530645,0.1551195,0.1584174,0.1580826,0.1686782,0.1695455,0.1715025,0.1789414,0.1834286,0.1908504,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Luxembourg","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1860555,0.1917672,0.2168536,0.2274583,0.2339789,0.2313574,0.2225619,0.2210448,0.2430672,0.251104,0.2494102,0.2544449,0.2614379,0.2663543,0.2759357,0.2949229,0.308164,0.317307,0.3249809,0.3397667,0.3552187,0.3555706,0.3719945,0.3849866,0.3781153,0.3879317,0.39323,0.406933,0.4113804,0.4156236]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lux","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LUX.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Luxembourg","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2092627,0.2188897,0.2243084,0.2214235,0.2125762,0.2106015,0.2319469,0.2388931,0.2363178,0.24066,0.2474472,0.2514512,0.2587899,0.2754922,0.2858655,0.291358,0.2998762,0.3128741,0.3265733,0.3271399,0.3419892,0.3540679,0.3478323,0.3563446,0.3594194,0.3706936,0.3739355,0.3769523]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"mrd-euro-lvl"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-LVL \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1088,0.24973,1.75034,2.55614,3.55897,4.0588,4.67813,5.39412,6.02197,6.27213,6.85029,7.46012,8.39705,9.55265,11.04873,13.59723,17.10186,22.59201,24.35124,18.82659,17.93788,20.30276,21.88561,22.78659,23.61816,24.32032,25.03768,27.03306,29.52366,31.26172,32.77828]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",20.68067,18.93725,13.21623,11.77863,12.25547,11.52847,12.14438,13.61973,14.74506,15.44303,16.63728,18.33287,19.98169,21.40858,23.39553,26.35124,28.93074,32.88276,33.43558,27.48078,28.18553,30.72611,32.67526,33.52792,34.98994,36.7359,36.83734,38.89701,41.19452,43.29251,45.29421]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.3640411,0.3122264,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.3041933,0.2040847,0.1812382,0.1802953,0.1744252,0.1746947,0.1851317,0.1914664,0.1909262,0.191425,0.2029982,0.2139398,0.2265846,0.2368794,0.2560352,0.2665039,0.2874901,0.2926235,0.256014,0.2526598,0.2684062,0.2804364,0.2855321,0.2882843,0.2875291,0.2860769,0.294642,0.3034021,0.3093523,0.3135162]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.156644,0.1567373,0.166251,0.1719599,0.1716269,0.1722111,0.1822478,0.1916257,0.2022887,0.2105861,0.2270795,0.2357456,0.252833,0.2554966,0.2228667,0.2194874,0.2324662,0.2423231,0.246587,0.248649,0.2477358,0.2462672,0.2528119,0.2593978,0.2635836,0.2664792]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.37283,2.26369,3.76638,4.13689,4.69952,5.74917,6.41019,7.04586,8.60886,9.3615,10.15661,10.47934,11.67279,13.72643,17.26313,22.68054,24.35574,18.74883,17.78814,20.20281,22.05932,22.83025,23.61816,24.32032,25.03768,27.03306,29.52366,31.26172,32.77828]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0211992,0.0348315,0.0554088,0.0586337,0.0633739,0.0734746,0.078464,0.0820587,0.0936644,0.098219,0.1029818,0.1046173,0.1112955,0.1261232,0.1505923,0.1879919,0.2026891,0.1647806,0.1504267,0.1662568,0.1778117,0.182641,0.182494,0.1782879,0.1822206,0.1922302,0.2040821,0.2093946,0.2126281]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"lva","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"LVA.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Latvia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0336122,0.0533215,0.0562104,0.0606528,0.070178,0.074757,0.0783045,0.0891096,0.0930631,0.0974026,0.0990188,0.1050683,0.1182864,0.1406707,0.1743889,0.1861134,0.1520513,0.1385205,0.1528496,0.1635942,0.1679091,0.1678377,0.1640089,0.1673834,0.1757019,0.1859075,0.1903349,0.1928443]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"mrd-mxn"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd MXN \u2013 Mexico","value":[0.19,0.21,0.22,0.25,0.29,0.32,0.36,0.39,0.43,0.48,0.57,0.62,0.72,0.88,1.14,1.4,1.74,2.35,2.97,3.9,5.44,7.46,11.93,21.76,35.88,57.69,96.4,235.32,475.31,626.65,843.62,1083.67,1284.83,1560.09,1781.42,2311.46,3123.17,3962.52,4810.12,5738.47,6693.68,7069.38,7455.46,7868.81,8828.37,9562.65,10630.94,11504.08,12353.85,12162.76,13366.38,14665.58,15817.75,16277.19,17473.84,18551.46,20116.69,21921.24,23571.56,24665.64,25906.12]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Mexico","value":[21.474,23.06,25.093,28.063,32.423,36.088,39.82,43.498,48.05,53.536,61.149,68.185,78.603,92.985,112.026,134.033,153.42,170.986,197.152,235.696,284.092,341.863,367.83,369.413,405.698,436.779,432.648,450.638,477.498,525.594,577.213,630.287,671.333,699.292,747.116,664.563,707.986,785.873,837.062,888.608,962.579,973.443,977.116,982.025,1042.011,1140.492,1224.759,1290.665,1306.993,1244.977,1334.037,1441.97,1521.17,1516.616,1600.983,1632.014,1650.216,1677.012,1729.017,1795.232,1868.385]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Mexico","value":[6.8057261,6.7073143,6.689886,6.8467994,7.1402063,7.2717836,7.4200215,7.5919411,7.7071015,7.6770247,7.7771672,7.8168259,8.0959253,8.27814,8.5961372,9.151759,9.13032,9.1916204,9.6381044,10.1364631,10.8299136,11.7546447,11.5654907,10.8737973,11.0013239,11.0221263,10.3376625,10.2251403,9.9200507,9.9640941,10.1606701,10.3917992,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Mexico","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",10.1244366,10.3667156,10.7600269,10.9911323,10.0548107,10.184257,10.6822965,10.8693503,10.9860972,11.0752249,10.7788425,10.4617793,10.3935812,10.5503438,11.0813011,11.2822257,11.2841393,11.4386208,11.5983425,11.9585315,12.596248,13.0554861,12.9158751,13.1905934,12.7736474,12.8154895,12.7032399,12.7343944,12.8280643,12.9325327]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Mexico","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",9.0298071,9.1373908,9.59286,9.7619862,9.8755927,9.9635727,9.6770361,9.3706063,9.2791116,9.3792695,9.8280897,9.9800977,9.9238268,9.9873361,10.0966527,10.3884624,10.9095945,11.2811519,11.1542192,11.3770608,11.0058066,11.0321199,10.8997702,10.8874443,10.9301512,10.9922581]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Mexico","value":[15.014,15.615,16.764,18.677,22.048,23.961,26.694,29.291,33.534,37.378,44.241,47.607,51.246,57.098,76.186,90.25,103.901,91.355,102.496,124.916,207.752,343.693,205.428,219.212,297.68,249.897,147.645,130.836,178.569,212.813,220.217,267.599,343.383,448.188,428.48,273.953,323.532,441.336,467.002,562.891,766.214,844.504,813.469,644.223,628.658,705.012,776.329,767.724,758.32,646.995,798.599,848.327,935.8,959.51,989.737,1053.119,973.358,1027.786,1038.147,1147.953,1211.851]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Mexico","value":[4.7584248,4.5418759,4.4692381,4.5566949,4.8553643,4.8281731,4.974219,5.1122791,5.378889,5.3599488,5.6267858,5.4577153,5.2782068,5.0832409,5.8460059,6.1622756,6.1833696,4.9109505,5.0106896,5.3722197,7.9197469,11.8175508,6.4591716,6.4525827,8.0721978,6.3061476,3.527818,2.9687178,3.7097883,4.0344598,3.8764748,4.4092864,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Mexico","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.2985064,5.3025169,6.8962874,6.3035445,3.8828407,4.362886,5.6402912,5.7163434,6.5556405,8.3364033,8.8603644,8.2480708,6.4314098,5.994007,6.4778983,6.7721864,6.3634229,6.3107607,5.6863362,6.7534158,6.9812105,7.5431197,7.6760424,7.6475476,7.7202273,7.083958,7.3085139,7.1761799,7.6891217,7.861105]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mex","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MEX.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Mexico","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6.6548832,6.0660849,3.7223612,4.1755542,5.3872283,5.4462759,6.2557207,7.9310136,8.3952523,7.8012191,6.0872367,5.6586303,6.0753827,6.3260071,5.9029697,5.7946737,5.2470684,6.2188823,6.4182342,6.9399862,7.0568886,7.0333641,7.1019179,6.5071517,6.680114,6.5371047,6.9892375,7.1296753]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"mrd-mkd"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd MKD \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5322,0.9677,12.4056,62.2329,154.0007,178.3112,185.5921,195.6636,205.0892,219.8478,248.6465,252.3935,258.5807,268.6936,280.786,308.4472,334.8402,372.8892,414.8901,414.6219,437.2955,464.1863,466.7027,501.891,527.631,558.9536,594.7948,616.6,660.308,696.5285,730.7912]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",10.04088,9.87077,9.47939,8.82307,8.82471,8.28324,8.63882,9.0096,9.4557,10.07347,10.92509,10.69238,11.09675,11.33096,12.32643,13.58885,14.66348,15.73709,17.0198,17.17457,17.86562,18.15481,18.56052,19.29825,20.47453,21.60925,22.42411,22.4912,23.34108,24.49653,25.70723]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1767493,0.1627436,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1585565,0.1463805,0.1357609,0.1298239,0.125325,0.1242679,0.1224666,0.1227835,0.1245409,0.1257017,0.1183957,0.1188107,0.1199249,0.1248049,0.1320326,0.1350769,0.1375876,0.1489549,0.1600001,0.1601504,0.1585903,0.1592962,0.1643487,0.1686909,0.169134,0.1741445,0.1703692,0.1719096,0.1750432,0.1779395]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1125491,0.1114941,0.1099768,0.1102744,0.111952,0.1130846,0.1062934,0.1064186,0.1070657,0.1109518,0.1171007,0.1194871,0.1210013,0.1300561,0.1392842,0.1391238,0.1373549,0.1376467,0.1419324,0.1454981,0.1457263,0.149911,0.146182,0.1469764,0.1491455,0.1512432]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.99805,3.59938,3.65703,3.45179,3.36295,3.62677,4.09458,4.1435,4.24052,4.3859,4.57774,5.03201,5.47217,6.09449,6.7721,6.76651,7.10828,7.54416,7.58476,8.14957,8.5621,9.07236,9.65655,10.01372,10.73468,11.32471,11.88309]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0441056,0.0510154,0.0493158,0.044114,0.0411642,0.0422387,0.0445491,0.0434728,0.0429962,0.0437853,0.043647,0.0462359,0.0477357,0.0505153,0.0563576,0.0594698,0.0601117,0.0620839,0.0611379,0.0651962,0.066158,0.0665078,0.0702789,0.0712069,0.0742034,0.0758542,0.0770839]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mkd","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MKD.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 North Macedonia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0424441,0.0489069,0.0471983,0.0421347,0.0392194,0.0403063,0.0423827,0.0411907,0.0406668,0.0414421,0.0412049,0.0433629,0.0445907,0.04686,0.0517487,0.0548758,0.0553538,0.0570773,0.0562494,0.0599374,0.0608448,0.0611812,0.0645565,0.0650844,0.0675952,0.0689498,0.0699117]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"mrd-euro-mtl"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-MTL \u2013 Malta","value":[0.12769,0.13273,0.12902,0.12795,0.13061,0.1399,0.15609,0.1691,0.18928,0.21768,0.25166,0.25989,0.27131,0.30714,0.34935,0.44014,0.54075,0.63659,0.73693,0.86489,1.04062,1.15876,1.22592,1.21477,1.22406,1.26361,1.35892,1.45793,1.61005,1.77888,1.95037,2.14184,2.322,2.49528,2.7302,3.04075,3.19577,3.39509,3.59754,3.80382,4.1369,4.2629,4.5121,4.75891,4.85243,5.14933,5.38614,5.75748,6.12868,6.13862,6.59951,6.83478,7.16966,7.64588,8.50302,9.64987,10.34412,11.31329,12.31982,13.28544,14.22701]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Malta","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.59537,3.8686,4.06601,4.37615,4.41289,4.72249,5.09554,5.35592,5.68842,6.25046,6.28492,6.66092,7.02893,7.24608,7.64212,7.79293,8.34608,8.47372,8.20001,8.82147,8.98094,9.34668,9.72649,10.68936,12.09378,12.70089,13.73012,14.78858,15.8904,16.93761]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Malta","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0577532,0.0597388,0.0625639,0.0643793,0.0667668,0.0679322,0.0692632,0.0695473,0.0703274,0.0719164,0.0695923,0.0713171,0.074393,0.0733665,0.0742527,0.0717868,0.0729688,0.0741608,0.0763922,0.0790772,0.0784525,0.0802182,0.0828332,0.0880703,0.0946571,0.0986345,0.1040046,0.1089195,0.113547,0.1172383]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Malta","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0599605,0.0609493,0.0621994,0.0624619,0.0632185,0.064698,0.0624786,0.0638787,0.0664161,0.0652229,0.0658553,0.0635016,0.0641724,0.0647516,0.0665014,0.0686949,0.0679476,0.069316,0.0715352,0.0759618,0.0815568,0.0849087,0.0892392,0.0931222,0.0967477,0.0996489]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Malta","value":[0.14454,0.14887,0.14435,0.14322,0.14633,0.15681,0.17521,0.18825,0.18958,0.21988,0.25329,0.26094,0.27098,0.29207,0.32656,0.39922,0.48888,0.56744,0.64548,0.75633,0.98924,1.18727,1.32161,1.45602,1.60846,1.30741,1.38981,1.39263,1.78607,1.83105,2.0744,2.29976,2.41392,2.39611,2.61263,2.82901,2.99758,3.33149,3.55054,3.83509,4.39488,4.5411,4.73721,4.79465,4.86717,5.14214,5.38614,5.75748,6.12868,6.13862,6.59951,6.83478,7.16966,7.64588,8.50302,9.64987,10.34412,11.31329,12.31982,13.28544,14.22701]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Malta","value":[0.0458089,0.0433014,0.0384841,0.0349432,0.0322243,0.0315968,0.0326489,0.0328559,0.030409,0.0315309,0.0322149,0.0299148,0.0279106,0.026002,0.0250582,0.027259,0.0290941,0.0305039,0.0315554,0.0325273,0.0377111,0.0408233,0.0415546,0.0428583,0.0436167,0.0329925,0.033208,0.0315993,0.0371058,0.0347126,0.0365156,0.0378937,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Malta","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0369416,0.0372756,0.036869,0.0384354,0.0400966,0.0404229,0.0425766,0.0434604,0.0446648,0.0478163,0.0476443,0.0480324,0.0478659,0.0464065,0.0472478,0.0469852,0.0477219,0.051003,0.0539514,0.0558093,0.0562461,0.0577919,0.0611667,0.0657016,0.0707415,0.075283,0.080448,0.0851607,0.0889874,0.0922886]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mlt","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MLT.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Malta","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0355784,0.0369875,0.0384394,0.0386873,0.0406663,0.0414071,0.0426214,0.045491,0.0451433,0.0454301,0.0453044,0.04381,0.044312,0.0438896,0.0442688,0.0468321,0.0497837,0.0513919,0.0517103,0.0531709,0.056233,0.060425,0.0650758,0.0691531,0.0735309,0.0775767,0.0808875,0.0837017]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"mrd-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EUR \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.075931,1.307543,1.373409,1.524627,1.68581,1.832414,2.16963,2.68913,3.10333,2.99388,3.12509,3.264781,3.181477,3.362481,3.457922,3.654512,3.954212,4.299091,4.619081,4.845407,5.099305]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.21261,3.605863,3.75482,3.846412,4.106366,4.38233,5.319838,6.31934,6.736378,6.124634,6.463482,6.770348,6.502532,6.786044,7.045418,7.637255,8.088812,8.505816,9.015505,9.454878,9.918107]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0369636,0.0399274,0.0402021,0.0407097,0.0415769,0.0425798,0.0490052,0.0552493,0.0589558,0.0570578,0.0579397,0.059142,0.0558082,0.0577916,0.0580476,0.0597762,0.0628173,0.0644309,0.0664002,0.0675611,0.0686509]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0332534,0.035846,0.036009,0.0363446,0.0369619,0.0377644,0.0433493,0.0485889,0.0514758,0.0496702,0.0503327,0.0512228,0.0482234,0.0499092,0.0500668,0.0515033,0.0540758,0.0552837,0.0567697,0.0575654,0.0583511]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.075931,1.307543,1.373409,1.524627,1.68581,1.832414,2.16963,2.68913,3.10333,2.99388,3.12509,3.264781,3.181477,3.362481,3.457922,3.654512,3.954212,4.299091,4.619081,4.845407,5.099305]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0117061,0.0137185,0.0139255,0.0152207,0.0160735,0.0168369,0.0189264,0.0222894,0.025826,0.0263127,0.0264276,0.0268672,0.0256447,0.0268997,0.0267188,0.0267906,0.0287782,0.0305705,0.0319294,0.0324551,0.0330785]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"mne","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"MNE.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Montenegro","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.0111369,0.0129983,0.0131711,0.0144061,0.0151742,0.0157907,0.0176795,0.0206765,0.023714,0.0242801,0.0243358,0.0247005,0.0235942,0.02473,0.024573,0.0246449,0.0264349,0.027942,0.0290859,0.0295009,0.0300007]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"mrd-euro-nlg"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-NLG \u2013 Netherlands","value":[22.9985,24.2808,26.1393,28.3589,33.3697,37.2691,40.582,44.5221,49.367,55.9103,62.6932,71.1483,79.6746,91.1374,106.4282,115.0464,130.9806,141.4588,153.023,163.5531,176.0662,185.8492,192.0296,198.7272,209.5368,216.8044,223.3185,225.2466,234.9075,248.5974,263.0365,277.8513,289.6444,297.9721,313.1237,329.547,344.625,369.046,394.295,419.459,452.007,481.881,501.137,512.81,529.286,550.883,584.546,619.17,647.198,624.842,639.187,650.359,652.966,660.463,671.56,690.008,708.337,737.048,773.373,804.5073,830.9302]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Netherlands","value":[14.9366,15.9004,17.2019,18.5541,20.9734,23.0683,24.6457,26.7457,29.321,32.8532,37.381,41.7407,45.9206,52.8372,62.0541,70.3009,80.6375,89.0687,97.4303,108.8586,122.7536,134.7117,144.1651,154.4159,168.7027,181.2879,191.7771,199.8993,216.4081,238.7127,259.9487,278.9939,291.6499,297.0591,311.3869,304.7857,324.2174,350.5963,376.2767,403.7356,444.8291,462.4208,477.81,469.6713,493.0129,521.931,554.4621,592.7791,603.2817,560.2745,572.7066,586.8599,598.5951,607.882,612.0499,640.2622,636.0765,658.3187,683.253,707.5248,731.4568]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Netherlands","value":[4.7338709,4.6247971,4.5860696,4.5267368,4.6187454,4.6482793,4.5924801,4.6680517,4.7030521,4.7111336,4.7542655,4.7851865,4.7297292,4.7039176,4.7616115,4.8001469,4.7988959,4.7880395,4.7630451,4.6816322,4.6795038,4.6319372,4.5329052,4.5452839,4.5747143,4.5747979,4.5823043,4.5357869,4.4958875,4.5254621,4.5758684,4.5998892,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Netherlands","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.4815422,4.5036518,4.57086,4.58094,4.6113921,4.6638096,4.7656226,4.885999,4.99149,5.1181076,5.1203431,5.1158137,4.9709179,4.9917487,5.071211,5.1075878,5.1825997,5.2798363,5.2195784,5.1338374,5.1264823,5.1374606,5.1768732,5.0427161,5.0112845,4.9397372,4.986715,5.0322319,5.0557118,5.0629767]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Netherlands","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.1412993,4.1844045,4.2795994,4.3882158,4.4869367,4.6043884,4.5969449,4.5822297,4.4379026,4.4376712,4.4976954,4.5181001,4.5578329,4.6099526,4.543776,4.4598016,4.4400398,4.4392429,4.4707755,4.3494092,4.3177353,4.2523365,4.2787547,4.3023754,4.3077188,4.3033757]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Netherlands","value":[12.6276,13.7251,14.8743,16.1373,18.9887,21.2076,23.0928,25.4536,29.209,33.2972,37.3349,42.868,48.7732,58.579,73.9619,80.873,97.6747,111.3293,122.4428,131.1222,140.565,147.5825,161.8945,172.6065,182.9942,190.2717,204.977,212.6563,221.7193,234.5934,250.7033,264.9541,280.5902,301.8762,319.7162,346.0015,354.9296,367.8608,391.4617,419.459,452.007,481.881,501.137,512.81,529.286,550.883,584.546,619.17,647.198,624.842,639.187,650.359,652.966,660.463,671.56,690.008,708.337,737.048,773.373,804.5073,830.9302]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Netherlands","value":[4.0021011,3.9920971,3.9655385,3.9371133,4.18169,4.2733557,4.3031226,4.4425489,4.6850825,4.7747978,4.74841,4.9144183,5.0235445,5.2150879,5.6753366,5.5220087,5.8128115,5.9846918,5.9858222,5.6391116,5.3584972,5.0744878,5.0903604,5.0807291,4.9622572,4.801504,4.8977001,4.8252476,4.6062285,4.4473702,4.4131229,4.3657027,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Netherlands","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.2560178,4.3328675,4.6449807,4.7034758,4.9040077,4.786293,4.7012729,4.7916884,4.8851752,4.9178345,5.0557966,5.0812202,5.1194845,5.046534,5.0617049,5.0991985,5.1321062,5.3859979,5.4916399,5.4053329,5.3520569,5.2633073,5.2836763,5.1890442,5.0583245,5.1551733,5.2410968,5.3459349,5.3886829,5.3901265]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nld","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NLD.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Netherlands","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",4.4823834,4.5262922,4.7013228,4.5807811,4.4903409,4.565306,4.661679,4.6786858,4.7903998,4.8059374,4.8455183,4.7641703,4.747187,4.7632425,4.7607503,4.945537,5.0674123,4.9775003,4.9204582,4.8424633,4.8574921,4.772306,4.6532057,4.7354169,4.7904573,4.8698523,4.8981907,4.8886068]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"mrd-nok"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd NOK \u2013 Norway","value":[37.88,41.322,44.51,47.762,52.523,57.94,62.528,68.409,73.048,79.543,91.53,102.897,114.362,129.928,150.379,171.849,196.119,220.968,243.888,269.067,318.279,365.013,404.325,449.657,506.486,562.402,581.913,634.875,664.084,708.635,749.86,790.087,813.093,855.4,897.243,963.124,1054.657,1141.324,1163.192,1265.701,1507.886,1564.585,1560.181,1619.613,1781.981,1988.942,2215.312,2351.026,2608.807,2431.198,2593.739,2795.755,2968.258,3075.575,3146.665,3118.116,3119.296,3304.439,3537.124,3710.609,3872.701]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Norway","value":[3.6383,3.9937,4.2724,4.6154,5.0598,5.5671,6.0083,6.5807,6.9325,7.6272,8.3398,9.4334,10.5582,12.0435,14.2106,16.896,19.6344,22.0342,24.3781,27.8673,32.4236,36.4364,39.5761,43.1804,48.5446,53.6779,57.4772,59.807,62.4324,66.6367,70.9971,76.6789,81.6297,84.4474,90.3211,89.2962,100.0838,108.7883,107.9895,118.9364,145.4372,148.0756,147.9657,149.2647,165.1185,187.7333,208.6694,216.9868,232.7054,203.5873,216.8875,232.2226,248.2317,250.2261,249.9871,235.943,221.4034,231.701,237.4913,246.2347,254.8988]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Norway","value":[1.1530786,1.1616148,1.1390257,1.1260335,1.1142615,1.1217753,1.1195817,1.148562,1.111971,1.0937404,1.0606867,1.0814572,1.0874739,1.0721923,1.0904245,1.1536611,1.168479,1.1844875,1.1917653,1.198475,1.2360247,1.2528321,1.2443712,1.2710306,1.3163835,1.3545618,1.3733549,1.3570411,1.2970352,1.2632841,1.249759,1.2642365,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Norway","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.2317099,1.2605245,1.2993959,1.3287511,1.3510475,1.439687,1.478749,1.4022574,1.4704416,1.6733688,1.6396274,1.5842386,1.5797915,1.6718224,1.8240638,1.9222188,1.8970907,2.0366045,1.8966411,1.9442161,2.0285679,2.1304563,2.130987,2.0596589,1.8467079,1.7194075,1.7551175,1.7491488,1.7595025,1.7643514]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Norway","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.2133195,1.2916979,1.3279384,1.2593961,1.3218054,1.5054079,1.4720257,1.4190011,1.4103957,1.4862523,1.617776,1.7003676,1.6683948,1.7782086,1.6510744,1.6889546,1.7569401,1.840912,1.8403318,1.7764829,1.5911281,1.4801393,1.5059447,1.4954586,1.499184,1.4996449]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Norway","value":[5.021,5.4201,5.8248,6.2504,6.8734,7.5818,8.1827,8.9942,9.9396,10.8943,12.5356,13.9184,15.4741,18.2947,22.9795,26.5531,32.1618,36.3691,36.556,38.7872,46.3593,57.1494,64.047,69.2725,78.929,86.3767,79.9606,81.7613,86.2386,93.1947,94.3397,98.5513,101.1087,102.9419,107.1437,116.2386,128.6702,142.3344,137.3978,152.3031,185.8623,194.3962,207.7851,202.3673,212.9076,248.3321,275.2903,293.2732,317.2303,278.5569,324.0433,358.7348,397.0884,393.9655,376.6486,348.4074,335.7475,354.2858,368.5467,384.8455,403.0201]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Norway","value":[1.5913155,1.576499,1.5529124,1.5249373,1.5136657,1.5277329,1.5247641,1.5698054,1.5942994,1.562239,1.5943253,1.5956097,1.5937991,1.6287147,1.7632882,1.8130426,1.9140106,1.955081,1.7871011,1.6681041,1.7672694,1.9650281,2.0137955,2.0390599,2.1403199,2.1797147,1.9105702,1.8551935,1.7916111,1.7667651,1.6606587,1.6238503,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Norway","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.5830523,1.5613184,1.5839714,1.5762354,1.6474928,1.7351422,1.8190381,1.6818185,1.7737787,2.0221815,2.0395648,2.1068131,2.020273,2.0299907,2.2817619,2.4014531,2.4308494,2.6399984,2.4481932,2.7402969,2.9521684,3.2007769,3.1517072,2.910308,2.5541122,2.4435214,2.5193014,2.547576,2.5777394,2.6143343]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nor","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NOR.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Norway","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.5285246,1.5168574,1.5794012,1.6606393,1.7374233,1.6023613,1.6926285,1.9238451,1.9325008,1.9926733,1.9121593,1.9164087,2.1399806,2.2432356,2.2549547,2.4241023,2.259071,2.5234021,2.7141006,2.9448489,2.8974888,2.6765778,2.3495545,2.2445594,2.3026871,2.3207014,2.3431067,2.3710859]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"mrd-nzd"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd NZD \u2013 New Zealand","value":[2.9478,3.0056,3.2534,3.5311,3.8564,4.1847,4.3396,4.5007,4.7598,5.2936,5.9141,6.99,8.08,9.361,10.203,11.506,13.972,15.667,17.81,20.546,23.988,29.028,33.426,37.253,42.244,48.779,57.953,65.167,70.628,74.635,76.167,75.986,78.309,84.46,90.337,96.235,101.101,104.814,106.827,113.229,119.838,128.712,135.181,144.502,154.558,162.935,172.112,186.846,189.617,194.251,203.434,213.241,217.472,232.645,242.238,254.704,271.914,287.307,298.3684,315.7629,331.9172]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 New Zealand","value":[3.4857,3.805,4.0431,4.4721,4.9013,5.4482,6.0194,5.92,6.0956,7.0717,7.4735,8.3026,9.2739,10.9092,13.1286,14.6155,16.1983,16.7651,17.9143,20.0505,22.5969,26.1574,28.6083,31.0695,34.5143,36.74,38.835,38.0008,40.5675,43.0799,45.3211,46.7035,48.6111,52.0922,55.8008,55.3918,58.7631,62.4614,63.7569,68.8517,72.7114,75.8592,79.0429,81.8948,86.7827,90.2232,96.1963,102.3205,100.5192,100.4608,104.1002,108.2679,109.8919,118.1937,123.937,130.7522,134.7494,137.9967,143.3937,150.0541,156.4739]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 New Zealand","value":[1.1047437,1.1067191,1.0778915,1.0910722,1.0793651,1.0978142,1.1216574,1.0332426,0.9777222,1.0140763,0.950511,0.9518185,0.9551921,0.9712057,1.0073986,0.997945,0.9639931,0.901237,0.875771,0.8623007,0.8614185,0.8993986,0.8995167,0.914541,0.9359255,0.9271332,0.927921,0.8622514,0.842792,0.8166986,0.7977868,0.7700201,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 New Zealand","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.7502088,0.7506516,0.8015443,0.820908,0.8380748,0.8452964,0.8490321,0.8278911,0.8512315,0.8366016,0.8399818,0.8462966,0.8667598,0.8786733,0.8766312,0.8861402,0.8945763,0.8797298,0.9359033,0.9331714,0.9457683,0.9431502,1.0065668,1.0211248,1.0233879,1.0464569,1.0453149,1.0561104,1.0722312,1.0830765]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 New Zealand","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.7526401,0.7584062,0.7624433,0.743546,0.7651867,0.7526295,0.7541194,0.7580271,0.77382,0.7811417,0.7774909,0.7838671,0.7867344,0.7681133,0.8147277,0.8106528,0.8191287,0.8149693,0.8692765,0.8807336,0.8817536,0.9008347,0.8969123,0.902936,0.9135945,0.9205819]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 New Zealand","value":[3.9072,3.9356,4.2285,4.5895,5.0122,5.4418,5.6402,5.761,5.1813,5.8001,6.4798,7.5756,8.6088,10.3146,11.864,11.1384,12.4361,13.3256,14.4942,15.3213,17.7672,23.2721,25.6376,27.9797,30.5735,31.9224,30.7719,33.4629,39.154,40.5149,35.7281,35.4735,32.4561,38.997,45.1209,48.2775,54.7445,61.1214,50.9442,56.206,59.0689,60.4269,66.3773,74.3382,82.5149,92.2645,88.8403,100.3076,91.2959,87.8119,110.698,121.1578,137.0589,143.5573,151.4424,159.8847,171.1635,180.7356,174.8465,189.3207,198.9705]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 New Zealand","value":[1.23833,1.1447045,1.1273291,1.1197185,1.103783,1.096519,1.0510015,1.0055016,0.8310725,0.8317381,0.824123,0.8684713,0.886693,0.9182725,0.9103593,0.7605321,0.7400989,0.7163387,0.7085725,0.6589159,0.6773048,0.8001899,0.806108,0.8235915,0.8290618,0.8055611,0.7352606,0.7592852,0.8134266,0.7680733,0.6289211,0.584504,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 New Zealand","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5698188,0.5011857,0.6000477,0.6637921,0.6842555,0.7382396,0.7811332,0.6235831,0.6545955,0.6426696,0.6339868,0.6730248,0.7421335,0.786747,0.8477587,0.7749848,0.8314187,0.7597665,0.7717656,0.9361263,0.9970545,1.1047793,1.1484523,1.1701729,1.1720862,1.2457027,1.2851984,1.2086254,1.2680919,1.2906935]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"nzl","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"NZL.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 New Zealand","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5790431,0.6387865,0.6559749,0.7065413,0.7460861,0.594122,0.6246479,0.6114173,0.6007066,0.6365627,0.7024187,0.742727,0.7950817,0.7239256,0.7712577,0.6976337,0.712147,0.8620318,0.9166504,1.0164432,1.0558175,1.076195,1.0782144,1.1442722,1.1746946,1.1009911,1.1526668,1.1706021]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"mrd-pln"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd PLN \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.263,0.288,0.58,0.724,0.897,1.092,1.355,1.772,3.099,12.375,62.679,90.486,128.591,174.275,251.823,344.683,431.223,521.794,606.07,673.287,747.034,779.974,810.618,845.93,933.062,990.468,1069.824,1187.605,1286.069,1372.208,1445.298,1566.824,1629.425,1656.895,1720.43,1800.228,1861.112,1989.314,2115.672,2242.912,2379.17]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",213.7313,208.2186,219.3952,228.939,245.4159,249.149,271.8469,297.7093,316.6026,338.0203,357.1455,368.6487,386.8557,397.3772,431.1276,450.7858,478.146,527.5453,551.6727,558.4424,612.7903,656.1863,685.6026,690.7824,717.6436,766.5303,766.1584,802.5827,853.069,905.298,954.5212]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.7623051,3.4329869,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.3446622,3.3878957,3.5226937,3.6104147,3.7696124,3.9104695,4.0467345,4.1111233,4.1790335,4.1092383,4.0820139,4.1419848,4.2057696,4.3651614,4.3799471,4.4045804,4.6122682,4.8281614,5.2025101,5.4931546,5.7320791,5.8842053,5.8828739,5.9127097,5.9995754,5.9499471,6.0795043,6.2829458,6.4689264,6.6069773]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.385332,3.5085021,3.6340273,3.692284,3.7566055,3.6967822,3.664753,3.7099721,3.7547988,3.8806343,3.8846082,3.8962297,4.0562553,4.2155843,4.5289176,4.7719429,4.9645465,5.0844995,5.0804816,5.0997901,5.1692492,5.1219682,5.2164015,5.3716903,5.5118482,5.6157291]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",42.8413,26.5326,59.9418,88.8537,100.3842,167.1275,81.0694,43.4364,43.535,64.2926,31.9502,44.8633,43.2261,82.1211,93.2149,108.716,126.0031,140.439,154.749,159.2672,186.3779,212.4034,210.145,192.2753,206.1216,246.1998,274.6057,313.8738,366.1825,317.0818,361.8067,380.2406,389.3733,394.7348,411.1672,430.2526,426.5468,467.3028,496.463,522.9553,555.2893]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.6331569,0.9123002,1.8847181,2.6154378,2.7221195,4.2174602,1.9370646,0.9855874,0.9044417,1.2188441,0.5624175,0.739221,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.7206487,0.6674967,1.2635999,1.3713228,1.5408722,1.6991759,1.7948146,1.8942064,1.854885,2.0277905,2.2284925,2.1307405,1.9195228,1.9652884,2.2621697,2.3954811,2.6016018,3.0473796,2.7867827,3.0596453,3.1291479,3.1385883,3.1578621,3.1770278,3.1541048,3.1043451,3.3229577,3.4317966,3.5028147,3.6020831]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"pol","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"POL.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Poland","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.2193677,1.319664,1.4771873,1.6262174,1.7142867,1.804715,1.7700243,1.9291814,2.111511,2.0153044,1.8168006,1.8553266,2.1216058,2.237657,2.4133516,2.7981683,2.5715046,2.817474,2.8768083,2.8876328,2.9031473,2.921877,2.901494,2.851576,3.0372435,3.1261777,3.1839792,3.2669304]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"mrd-euro-pte"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-PTE \u2013 Portugal","value":[0.4979,0.5184,0.5818,0.6011,0.6526,0.7592,0.8103,0.9077,0.9816,1.0532,1.1882,1.3751,1.6224,1.9182,2.2703,2.6285,3.1443,4.0412,4.9986,6.3557,8.2604,9.9245,12.0009,15.333,18.8287,23.1143,28.2479,33.2833,39.7286,46.9358,56.3562,64.6223,72.6516,75.9803,82.3794,89.0373,94.3514,102.3569,111.3852,119.6392,128.4663,135.8275,142.6314,146.1583,152.3716,158.6526,166.2487,175.4677,178.8726,175.4482,179.9298,176.1666,168.398,170.2693,173.0791,179.8091,186.4805,194.6135,201.6057,207.8002,214.8057]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Portugal","value":[4.1201,4.408,5.0694,5.4792,6.0665,6.9364,7.5414,8.0965,8.764,9.4512,10.9903,12.9982,15.2451,17.4543,20.3952,21.928,24.6305,28.1336,31.8142,37.3184,43.5029,49.1643,54.428,57.6708,60.4979,64.4129,68.493,75.3869,83.1109,93.6334,105.561,114.3243,121.1837,121.0605,125.0853,121.4734,127.8779,137.8135,146.6203,157.9842,170.3015,175.799,182.2846,184.9682,190.5546,203.0121,214.7826,223.4077,222.2026,212.7439,220.9618,213.3044,210.2229,214.3281,220.3976,231.0312,233.1864,236.7722,244.4511,253.246,262.0592]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Portugal","value":[1.3057928,1.2821073,1.3515074,1.3367912,1.3359732,1.3976885,1.4052702,1.413114,1.4057295,1.3552998,1.3977931,1.4901207,1.5702193,1.5538994,1.5649886,1.4972408,1.4658084,1.5123663,1.5552928,1.6049367,1.6583809,1.6904706,1.7113492,1.6975588,1.6405218,1.6254582,1.6365664,1.710556,1.7266318,1.7750817,1.8581865,1.8849125,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Portugal","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.836417,1.8713163,1.8627628,1.8401817,1.8378861,1.8395006,1.8732862,1.903883,1.9532,1.9594517,1.9466064,1.9516836,1.9576709,1.9293625,1.9725156,1.9785317,1.9532279,1.9446856,1.9819456,1.9807384,1.8633083,1.8042449,1.8252711,1.8158695,1.8082639,1.8109136,1.7935315,1.800409,1.8096025,1.813914]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Portugal","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.650529,1.6504135,1.6822387,1.7099164,1.7557653,1.7627758,1.7476256,1.7481213,1.7477563,1.7152058,1.749439,1.7501812,1.7177646,1.697952,1.7253342,1.7206817,1.613809,1.5590351,1.5763139,1.5662114,1.5580047,1.5589116,1.5389051,1.5392843,1.5418717,1.5417715]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Portugal","value":[3.2875,3.3868,3.7926,3.9184,4.2535,4.9485,5.2815,5.944,6.6526,7.1848,8.1083,9.301,10.6726,12.7055,15.2058,16.7634,18.7502,18.5739,17.9377,19.0141,23.8104,29.0488,30.8431,31.1484,32.6315,35.5773,38.5019,41.0335,46.8359,54.2622,62.3847,72.534,83.3669,80.8658,83.8798,91.0246,96.6268,103.3326,110.7153,119.6392,128.4663,135.8275,142.6314,146.1583,152.3716,158.6526,166.2487,175.4677,178.8726,175.4482,179.9298,176.1666,168.398,170.2693,173.0791,179.8091,186.4805,194.6135,201.6057,207.8002,214.8057]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Portugal","value":[1.0419244,0.9850969,1.0111102,0.955999,0.9367134,0.9971311,0.9841629,1.0374278,1.0670761,1.0302963,1.0312493,1.0662779,1.0992573,1.131127,1.1667916,1.144603,1.1158609,0.9984704,0.8769148,0.8177306,0.9076805,0.9988149,0.9697837,0.9168635,0.8848695,0.8977925,0.9199617,0.9310654,0.9730173,1.0286914,1.0981557,1.1951574,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Portugal","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.16513,1.2873492,1.2442855,1.2339897,1.2901255,1.3030303,1.3205938,1.3552113,1.3933621,1.397713,1.4250745,1.4461946,1.4591273,1.4528029,1.457755,1.4502455,1.454397,1.4885821,1.5419871,1.52159,1.4497432,1.3573911,1.3621475,1.3373561,1.3181479,1.3571775,1.3838828,1.3935978,1.3918699,1.3934139]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"prt","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"PRT.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Portugal","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.2007293,1.1875044,1.236804,1.2470813,1.2613427,1.2911846,1.3296159,1.3297438,1.3502672,1.3678448,1.3810429,1.3715157,1.3671748,1.3546974,1.3491577,1.3668475,1.422869,1.401156,1.3328336,1.2488567,1.2522759,1.2299515,1.212578,1.2466703,1.2648939,1.2694909,1.2651782,1.2637649]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"mrd-ron"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd RON \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.065,0.066,0.077,0.081,0.086,0.086,0.088,0.089,0.09,0.084,0.091,0.233,0.636,2.114,5.251,7.611,11.388,25.5,37.008,55.126,80.873,117.391,152.272,191.918,244.688,286.862,342.763,425.691,539.835,530.894,528.247,559.245,593.743,635.459,668.59,712.588,765.135,856.727,944.22,1025.931,1096.915]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",110.3037,100.4494,94.2376,96.2351,101.8305,103.5606,110.666,108.3288,107.8851,109.7143,115.0274,125.3041,133.6842,138.2531,163.0768,174.0044,202.5664,235.6128,272.3747,257.6808,262.8877,272.1965,286.9846,290.6329,302.6566,322.0733,342.1209,367.8409,387.0617,407.2181,427.0938]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.9416731,1.6561505,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.6135407,1.4552141,1.4807731,1.4980707,1.5668675,1.5919111,1.472503,1.4009006,1.3564264,1.3234805,1.3874808,1.4313291,1.4632461,1.6511501,1.6906702,1.865999,2.0599358,2.3837847,2.400582,2.3565689,2.3777576,2.4630541,2.4751017,2.493606,2.5208439,2.6568937,2.7863675,2.8507515,2.9098304,2.9562451]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.4071385,1.4282744,1.3223294,1.2581776,1.2193151,1.190639,1.2456534,1.2820402,1.306347,1.4678746,1.4994682,1.6506364,1.8116088,2.08134,2.0897678,2.0471684,2.0593729,2.1283073,2.1375111,2.1507681,2.1719654,2.2871674,2.3907889,2.4372889,2.4793208,2.5127182]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",27.6103,40.4278,52.8698,57.0586,57.0698,113.49,57.2906,39.695,38.2404,42.3585,19.5662,15.9952,9.4417,23.8631,26.6351,28.5918,29.034,31.437,37.0637,33.7264,40.5953,45.1436,48.6962,51.1091,60.4025,79.224,97.2145,127.6321,146.5889,125.2131,125.41,131.9258,133.1469,143.8019,150.4572,160.2973,170.3926,187.5172,202.883,215.907,230.5794]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",1.0525353,1.3900725,1.6623572,1.6795383,1.5475617,2.8639203,1.368896,0.9006945,0.7944469,0.8030229,0.3444238,0.2635559,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2569343,0.1457991,0.3671822,0.3918405,0.4052425,0.3915294,0.4017655,0.4536789,0.3927896,0.4416766,0.4736377,0.4937499,0.5102326,0.5759136,0.7279375,0.8480356,1.0579023,1.2199161,1.1004789,1.0605389,1.0856685,1.0732455,1.1504094,1.16256,1.1751104,1.2400925,1.3334218,1.4024268,1.4461701,1.4957361]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"rom","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"ROM.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Romania","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.354329,0.3770796,0.3884937,0.3747181,0.3837395,0.4322449,0.3748195,0.4201983,0.4487748,0.4670003,0.4829278,0.5436901,0.6827059,0.7921636,0.9813531,1.1201527,1.0154672,0.9765972,0.9981184,0.9874308,1.0576168,1.0691935,1.0809964,1.1391189,1.2187717,1.2775336,1.3145358,1.3565666]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"mrd-rsd"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd RSD \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",59.295,112.494,142.77,183.405,214.681,413.121,820.842,1037.897,1220.16,1451.448,1846.853,2181.035,2523.496,2908.445,3052.135,3250.581,3612.267,3810.058,4121.2,4160.548,4312.038,4521.265,4754.368,5059.681,5373.603,5751.413]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",37.71507,39.98298,43.7908,45.69179,50.93908,58.07018,62.57884,68.30514,73.37347,69.79928,71.40895,75.02585,75.81112,76.99157,77.0527,79.55438,80.18505,81.46866,85.89539,90.26081,95.28823]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.4339414,0.4427279,0.4688591,0.4835938,0.5157575,0.5642243,0.576463,0.597184,0.6421542,0.6502577,0.6401217,0.6553841,0.6506513,0.6556793,0.6348419,0.6226662,0.622713,0.617119,0.6326289,0.6449705,0.6595633]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.3903854,0.3974725,0.4199567,0.4317396,0.4585091,0.5004148,0.5099311,0.525193,0.5606803,0.5660659,0.5560783,0.5676274,0.5622231,0.5662481,0.5475595,0.5364907,0.5360579,0.5295071,0.5408747,0.5495471,0.5606087]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",21.30182,16.32844,17.27953,7.09878,13.70869,17.11066,18.73405,19.96444,22.25115,25.93228,31.5579,35.7125,32.48622,31.54584,35.42857,33.71087,36.43845,35.48348,35.71322,36.7283,39.16209,42.78019,45.52396,48.74947]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2722379,0.1998684,0.2012438,0.0772347,0.1438288,0.1734916,0.1870258,0.1903531,0.2044513,0.2262164,0.2615735,0.2972003,0.2855164,0.2667698,0.2915554,0.2717303,0.2915061,0.2741755,0.2618072,0.2673032,0.2784789,0.2957177,0.3049248,0.3162309]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"srb","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SRB.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Serbia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.2600234,0.1904256,0.1920369,0.0734789,0.1362787,0.1640924,0.1770172,0.1797024,0.1917474,0.2113123,0.2426462,0.2728956,0.2634603,0.2456549,0.2680439,0.2500033,0.267993,0.2521562,0.2408392,0.2455382,0.2545348,0.2693826,0.2771697,0.2868075]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"mrd-euro-skk"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-SKK \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",9.4928,10.9168,11.347,14.0469,16.9249,19.6858,21.9515,24.4156,26.6641,28.5476,31.6013,34.3106,37.2798,41.4044,46.1015,50.4151,56.2727,63.0539,68.4916,64.0231,67.5773,70.6272,72.7035,74.1699,76.0878,79.1382,81.2261,84.8509,90.2018,96.0645,101.7581]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",33.3669,35.9499,38.8713,39.0536,42.8868,46.7931,49.4621,50.3723,53.6268,57.7713,61.399,64.4743,69.0585,75.8829,83.9164,93.7715,100.7115,94.4623,102.9936,105.219,108.9037,110.943,115.5441,121.0029,122.0703,124.3281,130.8415,138.3615,145.5072]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5152504,0.5531632,0.5718522,0.5908798,0.6169186,0.6360541,0.6422708,0.6227665,0.6170184,0.6396966,0.6573861,0.6823843,0.6992165,0.7372968,0.7730204,0.8198337,0.8814126,0.8800207,0.9232523,0.919135,0.9346693,0.9448182,0.9519746,0.9470804,0.9479916,0.9417762,0.9636615,0.9886806,1.0071673]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.5306445,0.5535039,0.5711859,0.5768366,0.5598156,0.5550865,0.5743072,0.5888201,0.6092145,0.6216044,0.6539141,0.683803,0.721002,0.7695826,0.7660805,0.8020359,0.7960617,0.807641,0.8159501,0.8210906,0.8160068,0.8160716,0.8080729,0.8238956,0.8424052,0.8560615]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",11.7446,13.3763,15.2594,16.9903,19.2991,20.3153,19.4915,22.3468,23.8716,26.3056,30.0645,34.7023,39.3483,45.5302,56.2416,66.0028,64.0231,67.5773,70.6272,72.7035,74.1699,76.0878,79.1382,81.2261,84.8509,90.2018,96.0645,101.7581]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1807141,0.1967839,0.2162767,0.229117,0.2466431,0.2486695,0.2270057,0.2431336,0.2504563,0.2667228,0.3001402,0.3308726,0.3615459,0.3971754,0.4661693,0.5492767,0.5626888,0.5714724,0.5812188,0.586035,0.5933558,0.587919,0.5801482,0.5911515,0.6033686,0.6235192,0.6434508,0.6600904]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svk","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVK.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Slovakia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1743882,0.1893709,0.2073379,0.2192793,0.235577,0.2369212,0.2166202,0.2313103,0.2373089,0.2522727,0.2840784,0.3123596,0.3390806,0.3710079,0.4324376,0.5043574,0.5192212,0.5262403,0.5343483,0.5391767,0.5454954,0.5407026,0.5336844,0.5430174,0.5514898,0.5679916,0.5848822,0.5986729]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"mrd-euro-sit"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd EURO-SIT \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.87255,1.54947,4.51421,6.36399,8.2172,10.52165,12.13192,13.82723,15.33735,17.21036,18.90197,21.14677,23.62249,25.6675,27.6727,29.2266,31.55538,35.15259,37.95119,36.1662,36.25243,36.8963,36.07609,36.2392,37.60329,38.86334,40.35722,42.99966,45.94756,48.5004,51.29485]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",22.34565,21.32809,20.72387,21.43882,22.98937,22.71829,24.19929,26.18239,27.48157,29.52566,31.45939,32.78209,34.78569,35.79108,38.49696,40.71596,42.80509,45.9248,47.31988,42.62138,43.48828,44.61091,44.93276,45.09107,46.88201,49.06609,49.85416,52.75136,55.71657,58.54319,61.21526]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.3933498,0.3516452,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.342598,0.3200176,0.3298801,0.338206,0.3437266,0.3481024,0.3558948,0.3568516,0.3650335,0.3619649,0.3629931,0.3724432,0.3788064,0.3897812,0.3956064,0.3943115,0.4015152,0.4141369,0.3970654,0.3898362,0.3896961,0.3856368,0.3840067,0.3862637,0.3840366,0.3871648,0.3995876,0.4103586,0.4183281,0.423718]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.3086866,0.3123201,0.3195988,0.3204957,0.328135,0.3256335,0.3258882,0.3335971,0.3381883,0.346516,0.3508663,0.3488024,0.3531122,0.3615929,0.3456555,0.3386535,0.3375153,0.333226,0.3316303,0.3331575,0.3308869,0.333288,0.3428585,0.3508417,0.3564364,0.3601474]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",10.04382,10.2843,11.51116,12.8901,16.27975,16.92471,18.30836,19.76597,21.2075,21.92347,23.24809,25.05073,26.30309,27.73666,29.23537,31.56116,35.15259,37.95119,36.1662,36.25243,36.8963,36.07609,36.2392,37.60329,38.86334,40.35722,42.99966,45.94756,48.5004,51.29485]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1613361,0.15881,0.1771226,0.1896316,0.230739,0.2282329,0.2339815,0.2419454,0.2469904,0.2385273,0.2439142,0.2539989,0.262589,0.2644581,0.2686248,0.275319,0.2913688,0.3158308,0.3178592,0.3065714,0.303634,0.2907955,0.2899121,0.290555,0.2849002,0.293714,0.3057676,0.3176122,0.3248613,0.3327424]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"svn","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SVN.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Slovenia","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",0.1709224,0.182488,0.2212024,0.2184332,0.2234834,0.2305148,0.2356907,0.226928,0.2311103,0.2402382,0.2485367,0.2496612,0.2519333,0.2571799,0.2702855,0.2900025,0.2933046,0.2823062,0.2791484,0.267544,0.2665276,0.2672202,0.2620826,0.2697985,0.2794771,0.2893272,0.2952916,0.3017827]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"mrd-sek"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd SEK \u2013 Sweden","value":[80.384,87.28,94.614,102.388,114.124,125.643,136.782,148.542,157.554,170.927,191.198,206.888,226.497,252.263,285.446,334.9,379.127,412.739,459.717,515.302,584.413,638.634,699.524,784.825,881.974,959.717,1049.286,1135.409,1241.401,1373.535,1514.857,1624.458,1627.077,1635.959,1746.392,1885.648,1934.378,2021.978,2124.406,2240.573,2383.626,2481.916,2573.959,2680.863,2808.403,2910.683,3102.834,3300.983,3391.681,3292.009,3523.824,3661.043,3688.871,3773.939,3940.925,4201.543,4385.497,4578.833,4790.748,4963.017,5140.997]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Sweden","value":[10.3703,11.3219,12.2869,13.4671,15.0156,16.2882,17.2933,18.4318,19.6717,21.7455,24.8264,26.8138,29.1474,33.0782,38.7587,45.0504,50.0139,53.023,57.4944,65.363,74.584,82.3284,90.3267,96.5888,106.7211,114.2132,120.709,127.5774,136.9355,148.4955,156.3842,161.9677,164.5461,162.0975,171.7751,169.6076,178.1583,187.0829,195.4729,210.0426,227.9531,229.219,234.8546,239.5573,255.5044,260.9975,281.6424,306.3789,305.3047,280.7138,298.7934,312.3033,322.124,322.46,332.865,356.6355,354.3481,365.0699,377.6731,390.0795,403.2712]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Sweden","value":[3.2866633,3.2930896,3.2757357,3.2856296,3.3067399,3.2820792,3.2224378,3.2169881,3.1553168,3.1183017,3.15752,3.0739562,3.0021202,2.9448427,2.9740822,3.0760402,2.9764271,2.8503377,2.8107131,2.8110343,2.8432245,2.8307853,2.8400923,2.843124,2.8939588,2.8821681,2.8842106,2.8947762,2.8448416,2.8151446,2.7528256,2.6704288,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Sweden","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.6017234,2.5409171,2.4942005,2.5270538,2.5661551,2.5627754,2.5430009,2.5382394,2.5968118,2.6227793,2.5381207,2.5145401,2.5354316,2.5869783,2.5359168,2.5944304,2.6786358,2.6719831,2.6151603,2.6784343,2.7281085,2.7646396,2.7461495,2.742495,2.7913596,2.7518493,2.7653776,2.7816034,2.7873647,2.7913511]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Sweden","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.3045571,2.2993411,2.2836523,2.2796448,2.334319,2.3595234,2.2786757,2.2522713,2.2635656,2.2998271,2.2491237,2.2949965,2.3557239,2.332973,2.2765637,2.3267752,2.3628113,2.3889052,2.3715894,2.3654381,2.4050424,2.3689092,2.372779,2.3781698,2.3749739,2.3725633]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Sweden","value":[14.7116,15.807,17.0958,18.5005,20.6211,22.7038,24.7153,26.9659,29.6006,32.3237,36.1557,38.5216,42.3964,46.8959,54.4748,65.139,77.9047,80.6249,79.9593,87.7601,99.3736,113.3405,113.8667,115.0576,135.4595,147.1658,149.9908,155.3225,171.4188,193.4723,201.4301,217.195,215.9947,179.3518,190.5903,202.0643,227.1805,233.7231,238.2708,254.3931,282.2466,268.1671,280.967,293.8181,307.7922,313.5771,335.2825,356.8589,352.7402,310.0096,369.4795,405.4381,423.8101,436.216,433.1389,449.1966,463.1474,475.2246,467.0138,475.7323,492.5114]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Sweden","value":[4.662572,4.5976361,4.5577963,4.5136616,4.541165,4.5748399,4.6054621,4.7064926,4.7479102,4.6352046,4.5984325,4.4161437,4.3667458,4.1749852,4.1800298,4.4476933,4.6362599,4.3341264,3.9089439,3.7742584,3.788232,3.8971079,3.5802479,3.386758,3.6732574,3.7137287,3.5838657,3.5243228,3.5612321,3.6678045,3.5457677,3.5787665,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Sweden","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.4888527,3.3353847,2.7596929,2.8038518,2.8639324,3.0635714,2.9869883,2.9165551,2.9627567,3.0708424,2.813554,2.8488324,2.9332448,2.9346775,2.8812554,2.9247862,2.9578915,2.9355129,2.7246267,3.1245311,3.3365076,3.4161698,3.4897095,3.3468,3.2929796,3.3707194,3.3792888,3.2282291,3.18651,3.1948514]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"swe","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"SWE.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Sweden","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.66309,2.6982285,2.7455648,2.932029,2.8529711,2.778763,2.8272109,2.9215108,2.6658605,2.6944926,2.7762739,2.7704764,2.7022235,2.7320894,2.7438604,2.6954499,2.5141501,2.8772242,3.0674461,3.1430194,3.2082277,3.0780146,3.0292464,3.0962609,3.0887311,2.9407389,2.8964655,2.8975892]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"mrd-try"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd TRY \u2013 Turkey","value":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.001,0.001,0.001,0.002,0.002,0.004,0.007,0.011,0.014,0.019,0.03,0.048,0.07,0.103,0.178,0.313,0.541,0.867,1.505,2.728,5.325,10.686,20.335,39.695,71.893,107.164,170.667,245.429,359.359,468.015,577.023,673.703,789.228,880.461,994.783,999.192,1160.014,1394.477,1569.672,1809.713,2044.466,2338.647,2608.526,3106.537,3700.989,4126.136,4750.295]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 Turkey","value":[15.212,15.982,17.639,20.091,21.844,23.425,27.211,29.312,32.216,35.723,40.168,45.391,51.813,58.384,69.997,84.987,103.087,114.849,124.171,135.148,146.701,170.144,190.941,210.331,237.93,259.82,286.15,320.375,342.405,362.618,414.101,437.877,476.995,518.395,498.977,507.7,559.224,618.914,482.299,475.852,531.099,513.557,522.051,538.613,615.928,686.132,775.386,851.739,893.362,840.201,964.531,1088.872,1163.202,1242.143,1364.441,1512.049,1518.602,1596.519,1655.266,1647.604,1741.887]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Turkey","value":[4.8210159,4.6484988,4.7026553,4.901751,4.8103895,4.7201407,5.0705529,5.1159109,5.1673592,5.1226729,5.1087908,5.2036153,5.3366551,5.1976976,5.3711003,5.8028972,6.1348928,6.1739208,6.0703305,5.8122635,5.5923966,5.8502347,6.0036524,6.1911501,6.4519389,6.5565473,6.8372505,7.2694291,7.1134749,6.8744284,7.2894027,7.2194672,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 Turkey","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",7.0337231,7.3657536,7.9765586,7.3406516,7.6814826,8.0443388,8.4128356,6.262714,5.8830885,6.1107132,5.6865734,5.5894962,5.7005864,6.2362658,6.6666272,7.1426886,7.4466571,7.8185791,7.8274049,8.6462194,9.5117848,9.9832139,10.5783956,11.2417099,11.8346961,11.7933836,12.0935158,12.1912131,11.773174,12.0569412]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 Turkey","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",6.8984199,7.2174403,7.5548506,5.6246718,5.28841,5.4973633,5.1052955,5.0065067,5.0893312,5.5440485,5.912682,6.3183216,6.5489563,6.8265903,6.8139554,7.511033,8.2381448,8.6264235,9.1355594,9.696123,10.1968038,10.1522476,10.3766081,10.4230441,10.031332,10.2480321]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 Turkey","value":[9.6125,10.0896,11.6926,13.5178,14.4404,15.4429,18.3392,20.5385,23.5664,26.3169,24.6946,22.4002,26.4411,30.2886,42.7573,51.8175,65.7764,73.5754,72.8192,93.0962,72.3056,90.1172,91.8255,102.6209,116.4863,104.2386,97.3927,92.0682,106.6606,123.2205,162.5344,168.3234,168.5298,211.8314,149.8589,178.358,197.0207,230.9919,244.7534,239.6139,296.9066,222.6263,249.6102,276.1394,324.7082,401.7122,436.2841,492.8456,521.8152,461.9231,581.0105,596.4881,678.4719,714.3019,703.4126,772.9897,780.2357,753.899,648.424,649.419,738.4595]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Turkey","value":[3.046517,2.9346564,3.1172962,3.2980028,3.18007,3.1117592,3.4173341,3.5846898,3.7800258,3.7738273,3.1407583,2.567969,2.723382,2.6964916,3.2809053,3.5381001,3.9144833,3.9551706,3.5598889,4.0037466,2.7563696,3.098595,2.8872191,3.0206802,3.1587598,2.6304598,2.3270928,2.0890608,2.2158774,2.3359866,2.8610887,2.7734996,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 Turkey","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",2.7038175,2.6024335,3.2594577,2.2046366,2.5279342,2.6568618,2.952084,2.9959057,2.7906326,3.230343,2.3357494,2.5308933,2.7567546,3.0959652,3.6910717,3.8058586,4.0850426,4.3425594,4.059771,4.9133587,4.9087327,5.4689008,5.7143855,5.4351643,5.6666486,5.6784413,5.3609228,4.4822258,4.3498834,4.790282]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"tur","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"TUR.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 Turkey","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",3.1453605,2.1215862,2.4234536,2.5427826,2.8196329,2.8543647,2.6629615,3.0732551,2.2131376,2.3937783,2.6092285,2.9227398,3.4617205,3.555113,3.7894515,3.9874297,3.7461549,4.5244659,4.5128844,5.0316179,5.2534601,4.9986599,5.2128093,5.2160782,4.8999805,4.0830608,3.9539455,4.3445744]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"mrd-usd"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.0.0.UVGD","series_name":"Annually \u2013 Mrd USD \u2013 United States","value":[542.4,562.2,603.9,637.5,684.5,742.3,813.4,860.0,940.7,1017.6,1073.3,1164.9,1279.1,1425.4,1545.2,1684.9,1873.4,2081.8,2351.6,2627.3,2857.3,3207.0,3343.8,3634.0,4037.6,4339.0,4579.6,4855.2,5236.4,5641.6,5963.1,6158.1,6520.3,6858.6,7287.2,7639.7,8073.1,8577.6,9062.8,9630.7,10252.3,10581.8,10936.4,11458.2,12213.7,13036.6,13814.6,14451.9,14712.8,14448.9,14992.1,15542.6,16197.0,16784.9,17521.7,18219.3,18707.2,19485.4,20494.1,21386.16,22195.23]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"mrd-pps"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.212.0.UVGD","series_name":"Annually \u2013 (Mrd PPS) \u2013 United States","value":[297.57,315.22,348.09,378.1,417.48,464.63,515.03,545.44,589.52,640.04,687.4,760.02,850.07,979.97,1106.65,1251.11,1447.87,1632.08,1834.64,2073.0,2300.72,2609.36,2776.6,3047.25,3464.05,3780.17,4025.16,4258.55,4643.03,5084.9,5415.18,5667.42,6030.29,6232.83,6601.19,6434.2,6883.43,7405.22,7835.33,8401.63,8983.94,9186.82,9393.61,9723.33,10337.12,11080.94,11437.05,11913.2,11626.79,10988.75,11473.24,11725.91,12241.05,12330.52,12915.69,13689.61,13609.85,13758.87,14305.53,14928.54,15476.96]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.212.215.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 United States","value":[94.3078532,91.6864232,92.8019418,92.2461216,91.937347,93.6239962,95.9704226,95.1982531,94.558318,91.7810852,87.4256919,87.1297524,87.5555747,87.2437541,84.9170235,85.425452,86.1657791,87.7350964,89.6895817,89.1524242,87.7061416,89.7204108,87.3030786,89.6967052,93.9347849,95.3925072,96.1769028,96.6279889,96.4592142,96.3983427,95.3231959,93.4410984,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"pps-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.212.315.UVGDR","series_name":"Annually \u2013 (PPS: EU-15 = 100) \u2013 United States","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",91.0370244,93.119637,95.9048047,97.1127845,97.3491394,99.0168715,100.6584534,101.7426538,103.8716079,103.3672634,101.7247711,100.5754304,102.9100215,104.6632231,107.6651804,105.3556851,104.1557684,101.7560476,102.3724051,102.8480553,102.4310604,105.0591661,105.0097511,106.4131739,107.1475732,105.6933605,104.2224469,105.3618071,106.6738393,107.1279744]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"pps-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.212.328.UVGDR","series_name":"Annually \u2013 (PPS: EU-28 = 100) \u2013 United States","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",87.4252111,88.8386702,90.3927773,91.377162,93.3719845,92.9919931,91.3265297,90.0853223,91.8753173,93.0457429,95.4890615,93.1961527,91.5997023,88.8456625,89.117787,89.3448463,88.7154117,90.7808716,90.686986,91.782766,92.3186176,90.9853524,89.4260619,90.0805152,90.8914366,91.0555094]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"mrd-ecu-eur"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.99.0.UVGD","series_name":"Annually \u2013 Mrd ECU\/EUR \u2013 United States","value":[513.53,526.73,564.49,595.9,639.83,693.86,760.32,807.65,914.29,995.51,1049.96,1111.8,1140.24,1157.23,1295.55,1357.95,1675.6,1824.35,1845.7,1917.08,2052.17,2872.5,3413.03,4082.14,5117.14,5686.11,4653.28,4205.68,4428.32,5120.58,4682.71,4969.58,5022.96,5857.05,6126.17,5840.7,6358.02,7563.75,8083.92,9036.32,11100.22,11814.93,11565.89,10129.6,9818.86,10478.82,11002.4,10545.15,10003.57,10359.25,11308.68,11166.02,12606.74,12638.11,13189.08,16420.99,16900.49,17248.58,17353.84,18943.13,19697.22]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.99.215.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 United States","value":[162.7553386,153.2049713,150.4955712,145.3849011,140.9038742,139.8136478,141.6786707,140.9632197,146.650481,142.7560831,133.5384955,127.4575663,117.4425343,103.0246424,99.4115561,92.7206193,99.7179952,98.0708839,90.2299215,82.4469378,78.2310806,98.7681732,107.3141471,120.1590566,138.7616676,143.4888598,111.1849251,95.4282757,91.9985366,97.0748467,82.4295532,81.8847178,"NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA"]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"eur-eu-15-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.99.315.UVGDR","series_name":"Annually \u2013 (EUR: EU-15 = 100) \u2013 United States","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",79.8274267,77.5643826,90.1225897,90.1245841,82.7824721,85.7391441,96.6650215,98.9512382,105.2403693,120.7703226,123.9598188,117.270976,101.1257973,93.6189499,96.2830632,95.9777672,87.405467,83.2499294,91.0458508,95.6326672,91.889516,101.6180935,101.104338,101.9100403,120.3793232,122.9992676,122.6534709,119.9583106,126.8832751,127.7730769]},{"@frequency":"annual","dataset_code":"UVGD","dataset_name":"Gross domestic product at current prices","dimensions":{"freq":"a","geo":"usa","unit":"eur-eu-28-100"},"indexed_at":"2019-05-08T03:03:09.312Z","period":["1960","1961","1962","1963","1964","1965","1966","1967","1968","1969","1970","1971","1972","1973","1974","1975","1976","1977","1978","1979","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020"],"period_start_day":["1960-01-01","1961-01-01","1962-01-01","1963-01-01","1964-01-01","1965-01-01","1966-01-01","1967-01-01","1968-01-01","1969-01-01","1970-01-01","1971-01-01","1972-01-01","1973-01-01","1974-01-01","1975-01-01","1976-01-01","1977-01-01","1978-01-01","1979-01-01","1980-01-01","1981-01-01","1982-01-01","1983-01-01","1984-01-01","1985-01-01","1986-01-01","1987-01-01","1988-01-01","1989-01-01","1990-01-01","1991-01-01","1992-01-01","1993-01-01","1994-01-01","1995-01-01","1996-01-01","1997-01-01","1998-01-01","1999-01-01","2000-01-01","2001-01-01","2002-01-01","2003-01-01","2004-01-01","2005-01-01","2006-01-01","2007-01-01","2008-01-01","2009-01-01","2010-01-01","2011-01-01","2012-01-01","2013-01-01","2014-01-01","2015-01-01","2016-01-01","2017-01-01","2018-01-01","2019-01-01","2020-01-01"],"provider_code":"AMECO","series_code":"USA.1.0.99.328.UVGDR","series_name":"Annually \u2013 (EUR: EU-28 = 100) \u2013 United States","value":["NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA","NA",86.9678532,86.7295194,79.3610357,82.0577119,92.3279532,94.2763053,100.4256348,114.8974004,117.4527269,110.9176428,95.7141095,88.3807827,90.3003458,89.6543596,81.0808635,76.4418423,84.0125855,88.0633324,84.4793941,93.492905,92.9492075,93.7255264,110.738199,112.9841378,112.1074919,109.2754147,115.3340233,115.8845418]}],"limit":1000,"num_found":430,"offset":0}} \ No newline at end of file diff --git a/src/utils/iter_filtered_series.m b/src/utils/iter_filtered_series.m index a7fb491..51e9149 100644 --- a/src/utils/iter_filtered_series.m +++ b/src/utils/iter_filtered_series.m @@ -51,8 +51,14 @@ for gg = 1:size(grouped_series, 2) posted_series_list{series} = posted_series; end - posted_series_list = savejson('',posted_series_list, 'Compact', 1); - posted_series_list = regexprep(posted_series_list,{' [[',']]'},{'[',']'}); + if matlab_ver_less_than('9.8') + posted_series_list = savejson('',posted_series_list, 'Compact', 1); + posted_series_list = regexprep(posted_series_list,{' [[',']]'},{'[',']'}); + else + posted_series_list = jsonencode(posted_series_list); + end + + posted_series_list = transform_json_request(posted_series_list); json_request = sprintf('{"filters":%s,"series":%s}', dbnomics_filters, posted_series_list); try -- GitLab