From 6b4f0ad6da8b6f33fe99d560d85fcc657904079a Mon Sep 17 00:00:00 2001 From: Jeroen Bouma Date: Mon, 20 Mar 2023 16:21:58 +0100 Subject: [PATCH] Add new functionality to measure country performance (#4514) * Add in new country parameters * Add in tests corresponding to the new commands * Update SDK and some more robustness * Update tests * Update tests * Revenue and spending didnt work, then saw spending has many more options * Small bug * Update tests and overall improvements * Forgot to add ccpi * Make more efficient * Update tests * Fix IDX issue within real gdp * Add quarterly flag to fgdp * Add integration tests * Update tests * Fix SDK and related bugs and fix CPI for SDK * Zzzz tests --------- Co-authored-by: James Maslek --- .../core/sdk/models/economy_sdk_model.py | 38 +- openbb_terminal/core/sdk/sdk_init.py | 2 + openbb_terminal/core/sdk/trail_map.csv | 25 +- .../core/sdk/trail_map_forecasting.csv | 80 +- .../core/sdk/trail_map_optimization.csv | 38 +- .../dashboards/voila/currencies.ipynb | 2 +- .../dashboards/voila/forecast.ipynb | 2 +- openbb_terminal/economy/economy_controller.py | 1000 ++- openbb_terminal/economy/fred_model.py | 4 +- openbb_terminal/economy/fred_view.py | 12 +- openbb_terminal/economy/oecd_model.py | 1211 ++++ openbb_terminal/economy/oecd_view.py | 801 +++ openbb_terminal/forecast/forecast.ipynb | 2 +- .../miscellaneous/data_sources_default.json | 12 +- openbb_terminal/miscellaneous/i18n/en.yml | 12 +- .../economy/test_economy.openbb | 26 +- openbb_terminal/sdk.py | 20 +- ..._output[get_series_data-kwargs_dict1].yaml | 2228 +++--- ...output[get_series_notes-kwargs_dict0].yaml | 1717 ++--- .../test_get_cpi[get_cpi-kwargs_dict1].yaml | 1236 ++++ .../test_get_cpi[get_cpi-kwargs_dict2].yaml | 2474 +++++++ .../test_get_cpi[get_cpi-kwargs_dict3].yaml | 1236 ++++ .../test_get_cpi[get_cpi-kwargs_dict4].yaml | 414 +- .../test_get_cpi[get_cpi-kwargs_dict5].yaml | 426 ++ .../test_get_cpi[get_cpi-kwargs_dict6].yaml | 416 +- ...ad_data[get_series_data-kwargs_dict0].yaml | 2228 +++--- ..._output[check_series_id-kwargs_dict0].yaml | 32 +- .../test_oecd_model/test_get_balance.yaml | 39 + .../test_oecd_model/test_get_cpi.yaml | 39 + .../test_oecd_model/test_get_debt.yaml | 39 + .../test_oecd_model/test_get_fgdp.yaml | 39 + .../test_oecd_model/test_get_gdp.yaml | 39 + .../test_oecd_model/test_get_qgdp.yaml | 39 + .../test_oecd_model/test_get_revenue.yaml | 39 + .../test_oecd_model/test_get_rgdp.yaml | 39 + .../test_oecd_model/test_get_spending.yaml | 39 + .../test_oecd_model/test_get_trust.yaml | 39 + ...k_output[get_series_data-kwargs_dict1].csv | 14 + ..._output[get_series_notes-kwargs_dict0].csv | 5975 +++++++++-------- .../test_get_cpi[get_cpi-kwargs_dict1].csv | 759 ++- .../test_get_cpi[get_cpi-kwargs_dict2].csv | 759 ++- .../test_get_cpi[get_cpi-kwargs_dict3].csv | 759 ++- .../test_get_cpi[get_cpi-kwargs_dict5].csv | 244 +- ...oad_data[get_series_data-kwargs_dict0].csv | 14 + .../csv/test_oecd_model/test_get_balance.csv | 3 + .../csv/test_oecd_model/test_get_cpi.csv | 9 + .../csv/test_oecd_model/test_get_debt.csv | 3 + .../csv/test_oecd_model/test_get_fgdp.csv | 9 + .../csv/test_oecd_model/test_get_gdp.csv | 3 + .../csv/test_oecd_model/test_get_qgdp.csv | 9 + .../csv/test_oecd_model/test_get_revenue.csv | 3 + .../csv/test_oecd_model/test_get_rgdp.csv | 9 + .../csv/test_oecd_model/test_get_spending.csv | 3 + .../csv/test_oecd_model/test_get_trust.csv | 3 + ..._output[check_series_id-kwargs_dict0].json | 2 +- .../economy/test_economy_controller.py | 213 + .../economy/test_oecd_model.py | 114 + .../test_print_help.txt | 41 +- 58 files changed, 18337 insertions(+), 6695 deletions(-) create mode 100644 openbb_terminal/economy/oecd_model.py create mode 100644 openbb_terminal/economy/oecd_view.py create mode 100644 tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_balance.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_cpi.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_debt.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_fgdp.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_gdp.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_qgdp.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_revenue.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_rgdp.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_spending.yaml create mode 100644 tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_trust.yaml create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_balance.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_cpi.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_debt.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_fgdp.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_gdp.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_qgdp.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_revenue.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_rgdp.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_spending.csv create mode 100644 tests/openbb_terminal/economy/csv/test_oecd_model/test_get_trust.csv create mode 100644 tests/openbb_terminal/economy/test_oecd_model.py diff --git a/openbb_terminal/core/sdk/models/economy_sdk_model.py b/openbb_terminal/core/sdk/models/economy_sdk_model.py index afff3886a38c..b404bd38a9a2 100644 --- a/openbb_terminal/core/sdk/models/economy_sdk_model.py +++ b/openbb_terminal/core/sdk/models/economy_sdk_model.py @@ -10,18 +10,28 @@ class EconomyRoot(Category): Attributes: `available_indices`: Get available indices\n + `balance`: General government deficit is defined as the balance of income and expenditure of government,\n + `balance_chart`: General government balance is defined as the balance of income and expenditure of government,\n `bigmac`: Display Big Mac Index for given countries\n `bigmac_chart`: Display Big Mac Index for given countries\n + `ccpi`: Inflation measured by consumer price index (CPI) is defined as the change in the prices\n + `ccpi_chart`: Inflation measured by consumer price index (CPI) is defined as the change in the prices\n `country_codes`: Get available country codes for Bigmac index\n `cpi`: Obtain CPI data from FRED. [Source: FRED]\n - `cpi_chart`: Plot CPI data. [Source: FRED]\n + `cpi_chart`: Inflation measured by consumer price index (CPI) is defined as the change in\n `currencies`: Scrape data for global currencies\n + `debt`: General government debt-to-GDP ratio measures the gross debt of the general\n + `debt_chart`: General government debt-to-GDP ratio measures the gross debt of the general\n `events`: Get economic calendar for countries between specified dates\n + `fgdp`: Real gross domestic product (GDP) is GDP given in constant prices and\n + `fgdp_chart`: Real gross domestic product (GDP) is GDP given in constant prices and\n `fred`: Get Series data. [Source: FRED]\n `fred_chart`: Display (multiple) series from https://fred.stlouisfed.org. [Source: FRED]\n `fred_notes`: Get series notes. [Source: FRED]\n `future`: Get futures data. [Source: Finviz]\n `futures`: Get futures data.\n + `gdp`: Gross domestic product (GDP) is the standard measure of the value added created\n + `gdp_chart`: Gross domestic product (GDP) is the standard measure of the value added created\n `get_groups`: Get group available\n `glbonds`: Scrape data for global bonds\n `index`: Get data on selected indices over time [Source: Yahoo Finance]\n @@ -34,13 +44,21 @@ class EconomyRoot(Category): `overview`: Scrape data for market overview\n `perfmap`: Opens Finviz map website in a browser. [Source: Finviz]\n `performance`: Get group (sectors, industry or country) performance data. [Source: Finviz]\n + `revenue`: Governments collect revenues mainly for two purposes: to finance the goods\n + `revenue_chart`: Governments collect revenues mainly for two purposes: to finance the goods\n + `rgdp`: Gross domestic product (GDP) is the standard measure of the value added\n + `rgdp_chart`: Gross domestic product (GDP) is the standard measure of the value added\n `rtps`: Get real-time performance sector data\n `rtps_chart`: Display Real-Time Performance sector. [Source: AlphaVantage]\n `search_index`: Search indices by keyword. [Source: FinanceDatabase]\n `spectrum`: Display finviz spectrum in system viewer [Source: Finviz]\n + `spending`: General government spending provides an indication of the size\n + `spending_chart`: General government spending provides an indication of the size\n `treasury`: Get U.S. Treasury rates [Source: EconDB]\n `treasury_chart`: Display U.S. Treasury rates [Source: EconDB]\n `treasury_maturities`: Get treasury maturity options [Source: EconDB]\n + `trust`: Trust in government refers to the share of people who report having confidence in\n + `trust_chart`: Trust in government refers to the share of people who report having confidence in\n `usbonds`: Scrape data for us bonds\n `valuation`: Get group (sectors, industry or country) valuation data. [Source: Finviz]\n """ @@ -50,18 +68,28 @@ class EconomyRoot(Category): def __init__(self): super().__init__() self.available_indices = lib.economy_yfinance_model.get_available_indices + self.balance = lib.economy_oecd_model.get_balance + self.balance_chart = lib.economy_oecd_view.plot_balance self.bigmac = lib.economy_nasdaq_model.get_big_mac_indices self.bigmac_chart = lib.economy_nasdaq_view.display_big_mac_index + self.ccpi = lib.economy_oecd_model.get_cpi + self.ccpi_chart = lib.economy_oecd_view.plot_cpi self.country_codes = lib.economy_nasdaq_model.get_country_codes self.cpi = lib.economy_fred_model.get_cpi self.cpi_chart = lib.economy_fred_view.plot_cpi self.currencies = lib.economy_wsj_model.global_currencies + self.debt = lib.economy_oecd_model.get_debt + self.debt_chart = lib.economy_oecd_view.plot_debt self.events = lib.economy_nasdaq_model.get_economic_calendar + self.fgdp = lib.economy_oecd_model.get_gdp_forecast + self.fgdp_chart = lib.economy_oecd_view.plot_gdp_forecast self.fred = lib.economy_fred_model.get_aggregated_series_data self.fred_chart = lib.economy_fred_view.display_fred_series self.fred_notes = lib.economy_fred_model.get_series_notes self.future = lib.economy_finviz_model.get_futures self.futures = lib.economy_sdk_helpers.futures + self.gdp = lib.economy_oecd_model.get_gdp + self.gdp_chart = lib.economy_oecd_view.plot_gdp self.get_groups = lib.economy_finviz_model.get_groups self.glbonds = lib.economy_wsj_model.global_bonds self.index = lib.economy_yfinance_model.get_indices @@ -74,12 +102,20 @@ def __init__(self): self.overview = lib.economy_wsj_model.market_overview self.perfmap = lib.economy_finviz_model.get_performance_map self.performance = lib.economy_finviz_model.get_performance_data + self.revenue = lib.economy_oecd_model.get_revenue + self.revenue_chart = lib.economy_oecd_view.plot_revenue + self.rgdp = lib.economy_oecd_model.get_real_gdp + self.rgdp_chart = lib.economy_oecd_view.plot_real_gdp self.rtps = lib.economy_alphavantage_model.get_sector_data self.rtps_chart = lib.economy_alphavantage_view.realtime_performance_sector self.search_index = lib.economy_yfinance_model.get_search_indices self.spectrum = lib.economy_finviz_view.display_spectrum + self.spending = lib.economy_oecd_model.get_spending + self.spending_chart = lib.economy_oecd_view.plot_spending self.treasury = lib.economy_econdb_model.get_treasuries self.treasury_chart = lib.economy_econdb_view.show_treasuries self.treasury_maturities = lib.economy_econdb_model.get_treasury_maturities + self.trust = lib.economy_oecd_model.get_trust + self.trust_chart = lib.economy_oecd_view.plot_trust self.usbonds = lib.economy_wsj_model.us_bonds self.valuation = lib.economy_finviz_model.get_valuation_data diff --git a/openbb_terminal/core/sdk/sdk_init.py b/openbb_terminal/core/sdk/sdk_init.py index 7dfc6c9eb2db..ebe97bd99c66 100644 --- a/openbb_terminal/core/sdk/sdk_init.py +++ b/openbb_terminal/core/sdk/sdk_init.py @@ -234,6 +234,8 @@ wsj_model as economy_wsj_model, yfinance_model as economy_yfinance_model, yfinance_view as economy_yfinance_view, + oecd_model as economy_oecd_model, + oecd_view as economy_oecd_view, ) # ETF's diff --git a/openbb_terminal/core/sdk/trail_map.csv b/openbb_terminal/core/sdk/trail_map.csv index 2b63f1bc47ce..52e9bd2f0f62 100644 --- a/openbb_terminal/core/sdk/trail_map.csv +++ b/openbb_terminal/core/sdk/trail_map.csv @@ -179,14 +179,20 @@ econometrics.pols,econometrics_regression_model.get_pols, econometrics.re,econometrics_regression_model.get_re, econometrics.root,econometrics_model.get_root,econometrics_view.display_root economy.available_indices,economy_yfinance_model.get_available_indices, +economy.balance,economy_oecd_model.get_balance,economy_oecd_view.plot_balance economy.bigmac,economy_nasdaq_model.get_big_mac_indices,economy_nasdaq_view.display_big_mac_index +economy.ccpi,economy_oecd_model.get_cpi,economy_oecd_view.plot_cpi economy.country_codes,economy_nasdaq_model.get_country_codes, +economy.cpi,economy_fred_model.get_cpi,economy_fred_view.plot_cpi economy.currencies,economy_wsj_model.global_currencies, +economy.debt,economy_oecd_model.get_debt,economy_oecd_view.plot_debt economy.events,economy_nasdaq_model.get_economic_calendar, +economy.fgdp,economy_oecd_model.get_gdp_forecast,economy_oecd_view.plot_gdp_forecast economy.fred,economy_fred_model.get_aggregated_series_data,economy_fred_view.display_fred_series economy.fred_notes,economy_fred_model.get_series_notes, economy.future,economy_finviz_model.get_futures, economy.futures,economy_sdk_helpers.futures, +economy.gdp,economy_oecd_model.get_gdp,economy_oecd_view.plot_gdp economy.get_groups,economy_finviz_model.get_groups, economy.glbonds,economy_wsj_model.global_bonds, economy.index,economy_yfinance_model.get_indices,economy_yfinance_view.show_indices @@ -197,12 +203,15 @@ economy.macro_parameters,economy_econdb_model.get_macro_parameters, economy.overview,economy_wsj_model.market_overview, economy.perfmap,economy_finviz_model.get_performance_map, economy.performance,economy_finviz_model.get_performance_data, +economy.revenue,economy_oecd_model.get_revenue,economy_oecd_view.plot_revenue +economy.rgdp,economy_oecd_model.get_real_gdp,economy_oecd_view.plot_real_gdp economy.rtps,economy_alphavantage_model.get_sector_data,economy_alphavantage_view.realtime_performance_sector economy.search_index,economy_yfinance_model.get_search_indices, economy.spectrum,economy_finviz_view.display_spectrum, +economy.spending,economy_oecd_model.get_spending,economy_oecd_view.plot_spending economy.treasury,economy_econdb_model.get_treasuries,economy_econdb_view.show_treasuries economy.treasury_maturities,economy_econdb_model.get_treasury_maturities, -economy.cpi,economy_fred_model.get_cpi,economy_fred_view.plot_cpi +economy.trust,economy_oecd_model.get_trust,economy_oecd_view.plot_trust economy.usbonds,economy_wsj_model.us_bonds, economy.valuation,economy_finviz_model.get_valuation_data, etf.candle,stocks_helper.display_candle, @@ -360,25 +369,25 @@ qa.spread,common_qa_rolling_model.get_spread,common_qa_rolling_view.display_spre qa.summary,common_qa_model.get_summary,common_qa_view.display_summary qa.unitroot,common_qa_model.get_unitroot,common_qa_view.display_unitroot qa.var,common_qa_model.get_var,common_qa_view.display_var -stocks.ba.headlines,stocks_ba_finbrain_model.get_sentiment,stocks_ba_finbrain_view.display_sentiment_analysis +stocks.ba.bullbear,stocks_ba_stocktwits_model.get_bullbear, stocks.ba.cnews,stocks_ba_finnhub_model.get_company_news, -stocks.ba.wsb,stocks_ba_reddit_model.get_wsb_community, -stocks.ba.popular,stocks_ba_reddit_model.get_popular_tickers, -stocks.ba.spacc,stocks_ba_reddit_model.get_spac_community, stocks.ba.getdd,stocks_ba_reddit_model.get_due_dilligence, -stocks.ba.redditsent,stocks_ba_reddit_model.get_posts_about, -stocks.ba.bullbear,stocks_ba_stocktwits_model.get_bullbear, +stocks.ba.headlines,stocks_ba_finbrain_model.get_sentiment,stocks_ba_finbrain_view.display_sentiment_analysis stocks.ba.infer,stocks_ba_twitter_model.load_analyze_tweets,stocks_ba_twitter_view.display_inference stocks.ba.mentions,stocks_ba_google_model.get_mentions,stocks_ba_google_view.display_mentions stocks.ba.messages,stocks_ba_stocktwits_model.get_messages, +stocks.ba.popular,stocks_ba_reddit_model.get_popular_tickers, stocks.ba.queries,stocks_ba_google_model.get_queries, +stocks.ba.redditsent,stocks_ba_reddit_model.get_posts_about, stocks.ba.regions,stocks_ba_google_model.get_regions,stocks_ba_google_view.display_regions stocks.ba.rise,stocks_ba_google_model.get_rise, stocks.ba.sentiment,stocks_ba_twitter_model.get_sentiment,stocks_ba_twitter_view.display_sentiment stocks.ba.snews,stocks_ba_finnhub_model.get_headlines_sentiment,stocks_ba_finnhub_view.display_stock_price_headlines_sentiment +stocks.ba.spacc,stocks_ba_reddit_model.get_spac_community, stocks.ba.stalker,stocks_ba_stocktwits_model.get_stalker, stocks.ba.text_sent,stocks_ba_reddit_model.get_sentiment, stocks.ba.trending,stocks_ba_stocktwits_model.get_trending, +stocks.ba.wsb,stocks_ba_reddit_model.get_wsb_community, stocks.ca.balance,stocks_ca_marketwatch_model.get_balance_comparison, stocks.ca.cashflow,stocks_ca_marketwatch_model.get_cashflow_comparison, stocks.ca.hcorr,stocks_ca_yahoo_finance_model.get_correlation,stocks_ca_yahoo_finance_view.display_correlation @@ -555,8 +564,8 @@ ta.rvol_parkinson,common_ta_volatility_model.parkinson, ta.rvol_rogers_satchell,common_ta_volatility_model.rogers_satchell, ta.rvol_std,common_ta_volatility_model.standard_deviation, ta.rvol_yang_zhang,common_ta_volatility_model.yang_zhang, -ta.standard_deviation,common_ta_volatility_model.standard_deviation, ta.sma,common_ta_overlap_model.sma, +ta.standard_deviation,common_ta_volatility_model.standard_deviation, ta.stoch,common_ta_momentum_model.stoch,common_ta_momentum_view.display_stoch ta.vwap,common_ta_overlap_model.vwap,common_ta_overlap_view.view_vwap ta.wma,common_ta_overlap_model.wma, diff --git a/openbb_terminal/core/sdk/trail_map_forecasting.csv b/openbb_terminal/core/sdk/trail_map_forecasting.csv index ccc4080dedf2..dd2dcdc8d8db 100644 --- a/openbb_terminal/core/sdk/trail_map_forecasting.csv +++ b/openbb_terminal/core/sdk/trail_map_forecasting.csv @@ -1,40 +1,40 @@ -trail,model,view -forecast.anom,forecast_anom_model.get_anomaly_detection_data,forecast_anom_view.display_anomaly_detection -forecast.atr,forecast_model.add_atr, -forecast.autoarima,forecast_autoarima_model.get_autoarima_data,forecast_autoarima_view.display_autoarima_forecast -forecast.autoces,forecast_autoces_model.get_autoces_data,forecast_autoces_view.display_autoces_forecast -forecast.autoets,forecast_autoets_model.get_autoets_data,forecast_autoets_view.display_autoets_forecast -forecast.autoselect,forecast_autoselect_model.get_autoselect_data,forecast_autoselect_view.display_autoselect_forecast -forecast.brnn,forecast_brnn_model.get_brnn_data,forecast_brnn_view.display_brnn_forecast -forecast.clean,forecast_model.clean, -forecast.combine,forecast_model.combine_dfs, -forecast.corr,forecast_model.corr_df,forecast_view.display_corr -forecast.delete,forecast_model.delete_column, -forecast.delta,forecast_model.add_delta, -forecast.desc,forecast_model.describe_df,forecast_view.describe_df -forecast.ema,forecast_model.add_ema, -forecast.expo,forecast_expo_model.get_expo_data,forecast_expo_view.display_expo_forecast -forecast.export,forecast_view.export_df, -forecast.linregr,forecast_linregr_model.get_linear_regression_data,forecast_linregr_view.display_linear_regression -forecast.load,common_model.load, -forecast.mom,forecast_model.add_momentum, -forecast.mstl,forecast_mstl_model.get_mstl_data,forecast_mstl_view.display_mstl_forecast -forecast.nbeats,forecast_nbeats_model.get_NBEATS_data,forecast_nbeats_view.display_nbeats_forecast -forecast.nhits,forecast_nhits_model.get_nhits_data,forecast_nhits_view.display_nhits_forecast -forecast.plot,forecast_view.display_plot,forecast_view.display_plot -forecast.regr,forecast_regr_model.get_regression_data,forecast_regr_view.display_regression -forecast.rename,forecast_model.rename_column, -forecast.rnn,forecast_rnn_model.get_rnn_data,forecast_rnn_view.display_rnn_forecast -forecast.roc,forecast_model.add_roc, -forecast.rsi,forecast_model.add_rsi, -forecast.rwd,forecast_rwd_model.get_rwd_data,forecast_rwd_view.display_rwd_forecast -forecast.season,,forecast_view.display_seasonality -forecast.seasonalnaive,forecast_seasonalnaive_model.get_seasonalnaive_data,forecast_seasonalnaive_view.display_seasonalnaive_forecast -forecast.show,forecast_view.show_df, -forecast.signal,forecast_model.add_signal, -forecast.sto,forecast_model.add_sto, -forecast.tcn,forecast_tcn_model.get_tcn_data,forecast_tcn_view.display_tcn_forecast -forecast.tft,forecast_tft_model.get_tft_data,forecast_tft_view.display_tft_forecast -forecast.theta,forecast_theta_model.get_theta_data,forecast_theta_view.display_theta_forecast -forecast.trans,forecast_trans_model.get_trans_data,forecast_trans_view.display_trans_forecast -forecast.whisper,forecast_whisper_model.transcribe_and_summarize, +trail,model,view +forecast.anom,forecast_anom_model.get_anomaly_detection_data,forecast_anom_view.display_anomaly_detection +forecast.atr,forecast_model.add_atr, +forecast.autoarima,forecast_autoarima_model.get_autoarima_data,forecast_autoarima_view.display_autoarima_forecast +forecast.autoces,forecast_autoces_model.get_autoces_data,forecast_autoces_view.display_autoces_forecast +forecast.autoets,forecast_autoets_model.get_autoets_data,forecast_autoets_view.display_autoets_forecast +forecast.autoselect,forecast_autoselect_model.get_autoselect_data,forecast_autoselect_view.display_autoselect_forecast +forecast.brnn,forecast_brnn_model.get_brnn_data,forecast_brnn_view.display_brnn_forecast +forecast.clean,forecast_model.clean, +forecast.combine,forecast_model.combine_dfs, +forecast.corr,forecast_model.corr_df,forecast_view.display_corr +forecast.delete,forecast_model.delete_column, +forecast.delta,forecast_model.add_delta, +forecast.desc,forecast_model.describe_df,forecast_view.describe_df +forecast.ema,forecast_model.add_ema, +forecast.expo,forecast_expo_model.get_expo_data,forecast_expo_view.display_expo_forecast +forecast.export,forecast_view.export_df, +forecast.linregr,forecast_linregr_model.get_linear_regression_data,forecast_linregr_view.display_linear_regression +forecast.load,common_model.load, +forecast.mom,forecast_model.add_momentum, +forecast.mstl,forecast_mstl_model.get_mstl_data,forecast_mstl_view.display_mstl_forecast +forecast.nbeats,forecast_nbeats_model.get_NBEATS_data,forecast_nbeats_view.display_nbeats_forecast +forecast.nhits,forecast_nhits_model.get_nhits_data,forecast_nhits_view.display_nhits_forecast +forecast.plot,forecast_view.display_plot,forecast_view.display_plot +forecast.regr,forecast_regr_model.get_regression_data,forecast_regr_view.display_regression +forecast.rename,forecast_model.rename_column, +forecast.rnn,forecast_rnn_model.get_rnn_data,forecast_rnn_view.display_rnn_forecast +forecast.roc,forecast_model.add_roc, +forecast.rsi,forecast_model.add_rsi, +forecast.rwd,forecast_rwd_model.get_rwd_data,forecast_rwd_view.display_rwd_forecast +forecast.season,,forecast_view.display_seasonality +forecast.seasonalnaive,forecast_seasonalnaive_model.get_seasonalnaive_data,forecast_seasonalnaive_view.display_seasonalnaive_forecast +forecast.show,forecast_view.show_df, +forecast.signal,forecast_model.add_signal, +forecast.sto,forecast_model.add_sto, +forecast.tcn,forecast_tcn_model.get_tcn_data,forecast_tcn_view.display_tcn_forecast +forecast.tft,forecast_tft_model.get_tft_data,forecast_tft_view.display_tft_forecast +forecast.theta,forecast_theta_model.get_theta_data,forecast_theta_view.display_theta_forecast +forecast.trans,forecast_trans_model.get_trans_data,forecast_trans_view.display_trans_forecast +forecast.whisper,forecast_whisper_model.transcribe_and_summarize, diff --git a/openbb_terminal/core/sdk/trail_map_optimization.csv b/openbb_terminal/core/sdk/trail_map_optimization.csv index 1e400f40d939..577ae0b4e690 100644 --- a/openbb_terminal/core/sdk/trail_map_optimization.csv +++ b/openbb_terminal/core/sdk/trail_map_optimization.csv @@ -1,19 +1,19 @@ -trail,model,view -portfolio.po.blacklitterman,portfolio_optimization_po_model.get_blacklitterman, -portfolio.po.ef,portfolio_optimization_po_model.get_ef,portfolio_optimization_po_view.display_ef -portfolio.po.file,portfolio_optimization_po_model.load_parameters_file, -portfolio.po.herc,portfolio_optimization_po_model.get_herc, -portfolio.po.hrp,portfolio_optimization_po_model.get_hrp, -portfolio.po.load,portfolio_optimization_po_model.generate_portfolio, -portfolio.po.load_bl_views,portfolio_optimization_excel_model.load_bl_views, -portfolio.po.maxdecorr,portfolio_optimization_po_model.get_maxdecorr, -portfolio.po.maxdiv,portfolio_optimization_po_model.get_maxdiv, -portfolio.po.maxret,portfolio_optimization_po_model.get_maxret, -portfolio.po.maxsharpe,portfolio_optimization_po_model.get_maxsharpe, -portfolio.po.maxutil,portfolio_optimization_po_model.get_maxutil, -portfolio.po.minrisk,portfolio_optimization_po_model.get_minrisk, -portfolio.po.nco,portfolio_optimization_po_model.get_nco, -portfolio.po.plot,portfolio_optimization_po_view.display_plot,portfolio_optimization_po_view.display_plot -portfolio.po.relriskparity,portfolio_optimization_po_model.get_relriskparity, -portfolio.po.riskparity,portfolio_optimization_po_model.get_riskparity, -portfolio.po.show,portfolio_optimization_po_model.show, +trail,model,view +portfolio.po.blacklitterman,portfolio_optimization_po_model.get_blacklitterman, +portfolio.po.ef,portfolio_optimization_po_model.get_ef,portfolio_optimization_po_view.display_ef +portfolio.po.file,portfolio_optimization_po_model.load_parameters_file, +portfolio.po.herc,portfolio_optimization_po_model.get_herc, +portfolio.po.hrp,portfolio_optimization_po_model.get_hrp, +portfolio.po.load,portfolio_optimization_po_model.generate_portfolio, +portfolio.po.load_bl_views,portfolio_optimization_excel_model.load_bl_views, +portfolio.po.maxdecorr,portfolio_optimization_po_model.get_maxdecorr, +portfolio.po.maxdiv,portfolio_optimization_po_model.get_maxdiv, +portfolio.po.maxret,portfolio_optimization_po_model.get_maxret, +portfolio.po.maxsharpe,portfolio_optimization_po_model.get_maxsharpe, +portfolio.po.maxutil,portfolio_optimization_po_model.get_maxutil, +portfolio.po.minrisk,portfolio_optimization_po_model.get_minrisk, +portfolio.po.nco,portfolio_optimization_po_model.get_nco, +portfolio.po.plot,portfolio_optimization_po_view.display_plot,portfolio_optimization_po_view.display_plot +portfolio.po.relriskparity,portfolio_optimization_po_model.get_relriskparity, +portfolio.po.riskparity,portfolio_optimization_po_model.get_riskparity, +portfolio.po.show,portfolio_optimization_po_model.show, diff --git a/openbb_terminal/dashboards/voila/currencies.ipynb b/openbb_terminal/dashboards/voila/currencies.ipynb index cee0465981cf..76b4d80e7cb6 100644 --- a/openbb_terminal/dashboards/voila/currencies.ipynb +++ b/openbb_terminal/dashboards/voila/currencies.ipynb @@ -22,7 +22,7 @@ "from openbb_terminal.sdk import openbb, theme\n", "\n", "%matplotlib widget\n", - "theme.applyMPLstyle()\n", + "theme.apply_style()\n", "ipw.HTML(f\"\")" ] }, diff --git a/openbb_terminal/dashboards/voila/forecast.ipynb b/openbb_terminal/dashboards/voila/forecast.ipynb index 1360128c5137..ffbb5f42fee0 100644 --- a/openbb_terminal/dashboards/voila/forecast.ipynb +++ b/openbb_terminal/dashboards/voila/forecast.ipynb @@ -19,7 +19,7 @@ "\n", "from openbb_terminal.sdk import openbb, theme\n", "\n", - "theme.applyMPLstyle()" + "theme.apply_style()" ] }, { diff --git a/openbb_terminal/economy/economy_controller.py b/openbb_terminal/economy/economy_controller.py index 956c1e52b576..f7a017f5ef7e 100644 --- a/openbb_terminal/economy/economy_controller.py +++ b/openbb_terminal/economy/economy_controller.py @@ -13,6 +13,7 @@ from typing import Any, Dict, List, Optional import pandas as pd +from dateutil.relativedelta import relativedelta from openbb_terminal.core.session.current_user import get_current_user from openbb_terminal.custom_prompt_toolkit import NestedCompleter @@ -29,6 +30,8 @@ fred_view, nasdaq_model, nasdaq_view, + oecd_model, + oecd_view, plot_view, wsj_view, yfinance_model, @@ -57,11 +60,20 @@ class EconomyController(BaseController): "eval", "overview", "futures", + "gdp", + "rgdp", + "fgdp", + "debt", + "cpi", + "ccpi", + "balance", + "revenue", + "spending", + "trust", "macro", "fred", "index", "treasury", - "cpi", "plot", "valuation", "performance", @@ -177,6 +189,54 @@ def __init__(self, queue: Optional[List[str]] = None): if session and get_current_user().preferences.USE_PROMPT_TOOLKIT: choices: dict = self.choices_default # This is still needed because we can't use choices and nargs separated by comma + choices["gdp"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_GDP + } + choices["gdp"]["-c"] = "--countries" + + choices["rgdp"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_RGDP + } + choices["rgdp"]["-c"] = "--countries" + + choices["fgdp"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_GDP_FORECAST + } + choices["fgdp"]["-c"] = "--countries" + + choices["debt"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_DEBT + } + choices["debt"]["-c"] = "--countries" + + choices["cpi"]["--countries"] = {c: None for c in fred_model.CPI_COUNTRIES} + choices["cpi"]["-c"] = "--countries" + + choices["ccpi"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_CPI + } + choices["ccpi"]["-c"] = "--countries" + + choices["balance"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_BALANCE + } + choices["balance"]["-c"] = "--countries" + + choices["revenue"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_REVENUE + } + choices["revenue"]["-c"] = "--countries" + + choices["spending"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_SPENDING + } + choices["spending"]["-c"] = "--countries" + + choices["trust"]["--countries"] = { + c: {} for c in oecd_model.COUNTRY_TO_CODE_TRUST + } + choices["trust"]["-c"] = "--countries" + choices["treasury"]["--type"] = { c: {} for c in econdb_model.TREASURIES["instruments"] } @@ -200,9 +260,6 @@ def __init__(self, queue: Optional[List[str]] = None): } choices["events"]["-c"] = "--countries" - choices["cpi"]["--countries"] = {c: None for c in fred_model.CPI_COUNTRIES} - choices["cpi"]["-c"] = "--countries" - self.choices = choices self.completer = NestedCompleter.from_nested_dict(choices) @@ -251,7 +308,7 @@ def update_runtime_choices(self): def print_help(self): """Print help""" - mt = MenuText("economy/") + mt = MenuText("economy/", column_sources=115) mt.add_cmd("overview") mt.add_cmd("futures") mt.add_cmd("map") @@ -264,10 +321,21 @@ def print_help(self): mt.add_cmd("performance") mt.add_cmd("spectrum") mt.add_raw("\n") + mt.add_info("_country_") + mt.add_cmd("gdp") + mt.add_cmd("rgdp") + mt.add_cmd("fgdp") + mt.add_cmd("debt") + mt.add_cmd("cpi") + mt.add_cmd("ccpi") + mt.add_cmd("balance") + mt.add_cmd("revenue") + mt.add_cmd("spending") + mt.add_cmd("trust") + mt.add_raw("\n") mt.add_info("_database_") mt.add_cmd("macro") mt.add_cmd("treasury") - mt.add_cmd("cpi") mt.add_cmd("fred") mt.add_cmd("index") mt.add_raw("\n") @@ -345,164 +413,756 @@ def call_overview(self, other_args: List[str]): ) @log_start_end(log=logger) - def call_futures(self, other_args: List[str]): - """Process futures command""" + def call_futures(self, other_args: List[str]): + """Process futures command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="futures", + description="Futures/Commodities from Wall St. Journal and FinViz.", + ) + + parser.add_argument( + "-c", + "--commodity", + dest="commodity", + help="Obtain commodity futures from FinViz", + type=str, + choices=self.futures_commodities, + default="", + ) + + parser.add_argument( + "-s", + "--sortby", + dest="sortby", + type=str, + choices=self.wsj_sortby_cols_dict.keys(), + default="ticker", + ) + parser.add_argument( + "-r", + "--reverse", + action="store_true", + dest="reverse", + default=False, + help=( + "Data is sorted in descending order by default. " + "Reverse flag will sort it in an ascending way. " + "Only works when raw data is displayed." + ), + ) + if other_args and "-" not in other_args[0][0]: + other_args.insert(0, "-c") + ns_parser = self.parse_known_args_and_warn( + parser, other_args, export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED + ) + + if ns_parser: + if ns_parser.source == "Finviz": + if ns_parser.commodity: + finviz_view.display_future( + future_type=ns_parser.commodity.capitalize(), + sortby=ns_parser.sortby, + ascend=ns_parser.reverse, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + else: + console.print( + "[red]Commodity group must be specified on Finviz.[/red]" + ) + elif ns_parser.source == "WallStreetJournal": + if ns_parser.commodity: + console.print("[red]Commodity flag valid with Finviz only.[/red]") + wsj_view.display_futures( + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_map(self, other_args: List[str]): + """Process map command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="map", + description=""" + Performance index stocks map categorized by sectors and industries. + Size represents market cap. Opens web-browser. [Source: Finviz] + """, + ) + parser.add_argument( + "-p", + "--period", + action="store", + dest="s_period", + type=str, + default="1d", + choices=self.map_period_list, + help="Performance period.", + ) + parser.add_argument( + "-t", + "--type", + action="store", + dest="s_type", + type=str, + default="sp500", + choices=self.map_filter_list, + help="Map filter type.", + ) + ns_parser = self.parse_known_args_and_warn(parser, other_args) + if ns_parser: + finviz_view.display_performance_map( + period=ns_parser.s_period, + map_filter=ns_parser.s_type, + ) + + @log_start_end(log=logger) + def call_bigmac(self, other_args: List[str]): + """Process bigmac command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="bigmac", + description=""" + Get historical Big Mac Index [Nasdaq Data Link] + """, + ) + parser.add_argument( + "--codes", + help="Flag to show all country codes", + dest="codes", + action="store_true", + default=False, + ) + parser.add_argument( + "-c", + "--countries", + help="Country codes to get data for.", + dest="countries", + default="USA", + type=str, + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_BOTH_RAW_DATA_AND_FIGURES, + raw=True, + ) + if ns_parser: + ns_parser.countries = list_from_str(ns_parser.countries) + if ns_parser.codes: + console.print( + nasdaq_model.get_country_codes().to_string(index=False), "\n" + ) + else: + nasdaq_view.display_big_mac_index( + country_codes=ns_parser.countries, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_gdp(self, other_args: List[str]): + """Process gdp command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="gdp", + description="This indicator is based on nominal GDP (also called GDP at current prices or GDP in value)" + " and is available in different measures: US dollars and US dollars per capita (current PPPs).", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-u", + "--units", + type=str, + dest="units", + help="Use either USD_CAP (US dollars per capita) or MLN_USD (millions of US dollars)", + choices=["USD_CAP", "MLN_USD"], + default="USD_CAP", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_gdp( + countries=countries, + units=ns_parser.units, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_rgdp(self, other_args: List[str]): + """Process rgdp command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="rgdp", + description="This indicator is based on real GDP (also called GDP at constant prices or GDP in volume), " + "i.e. the developments over time are adjusted for price changes.", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-u", + "--units", + type=str, + dest="units", + help="Use either PC_CHGPP (percentage change previous quarter), PC_CHGPY (percentage " + "change from the same quarter of the previous year) or IDX (index with base at 2015) " + "for units", + choices=["PC_CHGPP", "PC_CHGPY", "IDX"], + default="PC_CHGPY", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=10)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_real_gdp( + countries=countries, + units=ns_parser.units, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_fgdp(self, other_args: List[str]): + """Process fgdp command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="fgdp", + description="Forecast is based on an assessment of the economic climate in " + "individual countries and the world economy, using a combination of model-based " + "analyses and expert judgement. This indicator is measured in growth rates compared to previous year.", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-t", + "--types", + type=str, + dest="types", + help="Use either 'real' or 'nominal'", + choices=["real", "nominal"], + default="real", + ) + + parser.add_argument( + "-q", + "--quarterly", + action="store_true", + dest="quarterly", + help="Whether to plot quarterly results.", + default=False, + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=10)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=(dt.now() + relativedelta(years=10)).date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_gdp_forecast( + countries=countries, + types=ns_parser.types, + quarterly=ns_parser.quarterly, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_debt(self, other_args: List[str]): + """Process debt command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="debt", + description="General government debt-to-GDP ratio measures the gross debt of the general " + "government as a percentage of GDP. It is a key indicator for the sustainability of government finance.", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_debt( + countries=countries, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_balance(self, other_args: List[str]): + """Process balance command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="balance", + description=" General government balance is defined as the balance of income and expenditure of government," + " including capital income and capital expenditures. 'Net lending' means that government has a surplus, " + "and is providing financial resources to other sectors, while 'net borrowing' means that " + "government has a deficit, and requires financial resources from other sectors. " + "This indicator is measured as a percentage of GDP.", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_balance( + countries=countries, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_revenue(self, other_args: List[str]): + """Process revenue command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="revenue", + description="Governments collect revenues mainly for two purposes: to finance the goods " + "and services they provide to citizens and businesses, and to fulfil their redistributive " + "role. Comparing levels of government revenues across countries provides an " + "indication of the importance of the government sector in the economy in " + "terms of available financial resources.", + ) + + parser.add_argument( + "-c", + "--countries", + type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-u", + "--units", + type=str, + dest="units", + help="Use either THND_USD_CAP (thousands of USD per capity) " + "or PC_GDP (percentage of GDP)", + choices=["PC_GDP", "THND_USD_CAP"], + default="PC_GDP", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, + ) + if ns_parser: + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_revenue( + countries=countries, + units=ns_parser.units, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + + @log_start_end(log=logger) + def call_spending(self, other_args: List[str]): + """Process spending command""" parser = argparse.ArgumentParser( add_help=False, formatter_class=argparse.ArgumentDefaultsHelpFormatter, - prog="futures", - description="Futures/Commodities from Wall St. Journal and FinViz.", + prog="spending", + description="General government spending provides an indication of the size " + "of government across countries. The large variation in this indicator highlights " + "the variety of countries' approaches to delivering public goods and services " + "and providing social protection, not necessarily differences in resources spent", ) parser.add_argument( "-c", - "--commodity", - dest="commodity", - help="Obtain commodity futures from FinViz", + "--countries", type=str, - choices=self.futures_commodities, - default="", + dest="countries", + help="Countries to get data for", + default="united_states", ) parser.add_argument( - "-s", - "--sortby", - dest="sortby", + "-p", + "--perspective", type=str, - choices=self.wsj_sortby_cols_dict.keys(), - default="ticker", + dest="perspective", + help="Use either TOT (Total), RECULTREL (Recreation, culture and religion), " + "HOUCOMM (Housing and community amenities), PUBORD (Public order and safety), " + "EDU (Education), ENVPROT (Environmental protection), GRALPUBSER (General public services), " + "SOCPROT (Social protection), ECOAFF (Economic affairs), DEF (Defence), HEALTH (Health)", + choices=[ + "TOT", + "RECULTREL", + "HOUCOMM", + "PUBORD", + "EDU", + "ENVPROT", + "GRALPUBSER", + "SOCPROT", + "ECOAFF", + "DEF", + "HEALTH", + ], + default="TOT", ) + parser.add_argument( - "-r", - "--reverse", - action="store_true", - dest="reverse", - default=False, - help=( - "Data is sorted in descending order by default. " - "Reverse flag will sort it in an ascending way. " - "Only works when raw data is displayed." - ), - ) - if other_args and "-" not in other_args[0][0]: - other_args.insert(0, "-c") - ns_parser = self.parse_known_args_and_warn( - parser, other_args, export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED + "-u", + "--units", + type=str, + dest="units", + help="Use either THND_USD_CAP (thousands of USD per capity) " + "or PC_GDP (percentage of GDP)", + choices=["PC_GDP", "THND_USD_CAP"], + default="PC_GDP", ) - if ns_parser: - if ns_parser.source == "Finviz": - if ns_parser.commodity: - finviz_view.display_future( - future_type=ns_parser.commodity.capitalize(), - sortby=ns_parser.sortby, - ascend=ns_parser.reverse, - export=ns_parser.export, - sheet_name=" ".join(ns_parser.sheet_name) - if ns_parser.sheet_name - else None, - ) - else: - console.print( - "[red]Commodity group must be specified on Finviz.[/red]" - ) - elif ns_parser.source == "WallStreetJournal": - if ns_parser.commodity: - console.print("[red]Commodity flag valid with Finviz only.[/red]") - wsj_view.display_futures( - export=ns_parser.export, - sheet_name=" ".join(ns_parser.sheet_name) - if ns_parser.sheet_name - else None, - ) - - @log_start_end(log=logger) - def call_map(self, other_args: List[str]): - """Process map command""" - parser = argparse.ArgumentParser( - add_help=False, - formatter_class=argparse.ArgumentDefaultsHelpFormatter, - prog="map", - description=""" - Performance index stocks map categorized by sectors and industries. - Size represents market cap. Opens web-browser. [Source: Finviz] - """, - ) parser.add_argument( - "-p", - "--period", - action="store", - dest="s_period", - type=str, - default="1d", - choices=self.map_period_list, - help="Performance period.", + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), ) parser.add_argument( - "-t", - "--type", - action="store", - dest="s_type", - type=str, - default="sp500", - choices=self.map_filter_list, - help="Map filter type.", + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), + ) + + ns_parser = self.parse_known_args_and_warn( + parser, + other_args, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, + raw=True, ) - ns_parser = self.parse_known_args_and_warn(parser, other_args) if ns_parser: - finviz_view.display_performance_map( - period=ns_parser.s_period, - map_filter=ns_parser.s_type, + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_spending( + countries=countries, + perspective=ns_parser.perspective, + units=ns_parser.units, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, ) @log_start_end(log=logger) - def call_bigmac(self, other_args: List[str]): - """Process bigmac command""" + def call_trust(self, other_args: List[str]): + """Process trust command""" parser = argparse.ArgumentParser( add_help=False, formatter_class=argparse.ArgumentDefaultsHelpFormatter, - prog="bigmac", - description=""" - Get historical Big Mac Index [Nasdaq Data Link] - """, - ) - parser.add_argument( - "--codes", - help="Flag to show all country codes", - dest="codes", - action="store_true", - default=False, + prog="trust", + description="Trust in government refers to the share of people who report " + "having confidence in the national government.", ) + parser.add_argument( "-c", "--countries", - help="Country codes to get data for.", - dest="countries", - default="USA", type=str, + dest="countries", + help="Countries to get data for", + default="united_states", + ) + + parser.add_argument( + "-s", + "--start", + type=valid_date, + help="Start date of data, in YYYY-MM-DD format", + dest="start_date", + default=(dt.now() - relativedelta(years=30)).date(), + ) + parser.add_argument( + "-e", + "--end", + type=valid_date, + help="End date of data, in YYYY-MM-DD format", + dest="end_date", + default=dt.now().date(), ) ns_parser = self.parse_known_args_and_warn( parser, other_args, - export_allowed=EXPORT_BOTH_RAW_DATA_AND_FIGURES, + export_allowed=EXPORT_ONLY_RAW_DATA_ALLOWED, raw=True, ) if ns_parser: - ns_parser.countries = list_from_str(ns_parser.countries) - if ns_parser.codes: - console.print( - nasdaq_model.get_country_codes().to_string(index=False), "\n" - ) - else: - nasdaq_view.display_big_mac_index( - country_codes=ns_parser.countries, - raw=ns_parser.raw, - export=ns_parser.export, - sheet_name=" ".join(ns_parser.sheet_name) - if ns_parser.sheet_name - else None, - ) + countries = ( + list_from_str(ns_parser.countries.lower()) + if ns_parser.countries + else None + ) + + oecd_view.plot_trust( + countries=countries, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) @log_start_end(log=logger) def call_macro(self, other_args: List[str]): @@ -1149,7 +1809,7 @@ def call_cpi(self, other_args: List[str]): dest="start_date", type=valid_date, help="Starting date (YYYY-MM-DD) of data", - default="1980-01-01", + default=(dt.now() - relativedelta(years=30)).date(), ) parser.add_argument( "-e", @@ -1157,7 +1817,7 @@ def call_cpi(self, other_args: List[str]): dest="end_date", type=valid_date, help="Ending date (YYYY-MM-DD) of data", - default=None, + default=dt.now().date(), ) ns_parser = self.parse_known_args_and_warn( parser, other_args, EXPORT_BOTH_RAW_DATA_AND_FIGURES, raw=True @@ -1181,6 +1841,94 @@ def call_cpi(self, other_args: List[str]): else None, ) + @log_start_end(log=logger) + def call_ccpi(self, other_args: List[str]): + """Process ccpi command""" + parser = argparse.ArgumentParser( + add_help=False, + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + prog="ccpi", + description="Inflation is measured in terms of the annual growth rate and in index, " + "2015 base year with a breakdown for food, energy and total excluding food and energy. " + "Inflation measures the erosion of living standards", + ) + + parser.add_argument( + "-c", + "--countries", + dest="countries", + type=str, + help="What countries you'd like to collect data for", + default="united_states", + ) + + parser.add_argument( + "-p", + "--perspective", + dest="perspective", + type=str, + help="Perspective of CPI you wish to obtain. This can be ENRG (energy), FOOD (food), " + "TOT (total) or TOT_FOODENRG (total excluding food and energy)", + default="TOT", + choices=["ENRG", "FOOD", "TOT", "TOT_FOODENRG"], + ) + + parser.add_argument( + "--frequency", + dest="frequency", + type=str, + help="What frequency you'd like to collect data for", + default="M", + choices=["M", "Q", "A"], + ) + + parser.add_argument( + "-u", + "--units", + dest="units", + type=str, + help="Units to get data in. Either 'AGRWTH' (annual growth rate) or IDX2015 (base = 2015)." + " Default is Annual Growth Rate (AGRWTH).", + default="AGRWTH", + choices=["AGRWTH", "IDX2015"], + ) + + parser.add_argument( + "-s", + "--start", + dest="start_date", + type=valid_date, + help="Starting date (YYYY-MM-DD) of data", + default=(dt.now() - relativedelta(years=5)).date(), + ) + parser.add_argument( + "-e", + "--end", + dest="end_date", + type=valid_date, + help="Ending date (YYYY-MM-DD) of data", + default=dt.now().date(), + ) + ns_parser = self.parse_known_args_and_warn( + parser, other_args, EXPORT_BOTH_RAW_DATA_AND_FIGURES, raw=True + ) + if ns_parser: + countries = list_from_str(ns_parser.countries) + + oecd_view.plot_cpi( + countries=countries, + perspective=ns_parser.perspective, + frequency=ns_parser.frequency, + units=ns_parser.units, + start_date=ns_parser.start_date, + end_date=ns_parser.end_date, + raw=ns_parser.raw, + export=ns_parser.export, + sheet_name=" ".join(ns_parser.sheet_name) + if ns_parser.sheet_name + else None, + ) + @log_start_end(log=logger) def call_events(self, other_args: List[str]): """Process events command""" diff --git a/openbb_terminal/economy/fred_model.py b/openbb_terminal/economy/fred_model.py index 778064aea7d6..62ae13ef3168 100644 --- a/openbb_terminal/economy/fred_model.py +++ b/openbb_terminal/economy/fred_model.py @@ -269,8 +269,8 @@ def get_aggregated_series_data( @check_api_key(["API_FRED_KEY"]) def get_cpi( countries: list, - units: str = "", - frequency: str = "", + units: str = "growth_same", + frequency: str = "monthly", harmonized: bool = False, smart_select: bool = True, options: bool = False, diff --git a/openbb_terminal/economy/fred_view.py b/openbb_terminal/economy/fred_view.py index 14ed1c6669de..0593f24f57be 100644 --- a/openbb_terminal/economy/fred_view.py +++ b/openbb_terminal/economy/fred_view.py @@ -164,7 +164,13 @@ def plot_cpi( external_axes: bool = False, limit: int = 10, ) -> Union[None, OpenBBFigure]: - """Plot CPI data. [Source: FRED] + """ + Inflation measured by consumer price index (CPI) is defined as the change in + the prices of a basket of goods and services that are typically purchased by + specific groups of households. Inflation is measured in terms of the annual + growth rate and in index, 2015 base year with a breakdown for food, energy + and total excluding food and energy. Inflation measures the erosion of living standards. + [Source: FRED / OECD] Parameters ---------- @@ -214,7 +220,7 @@ def plot_cpi( return print_rich_table(series.drop(["series_id"], axis=1)) ylabel_dict = { - "growth_same": "Growth Same Period (%)", + "growth_same": "Growth Same Period of Previous Year (%)", "growth_previous": "Growth Previous Period (%)", } @@ -233,7 +239,7 @@ def plot_cpi( for column in df.columns: country, frequency, units = column.split("-") - label = f"{str(country).replace('_', ' ').title()} ({frequency}, {units})" + label = f"{str(country).replace('_', ' ').title()}" fig.add_scatter(x=df.index, y=df[column].values, name=label) diff --git a/openbb_terminal/economy/oecd_model.py b/openbb_terminal/economy/oecd_model.py new file mode 100644 index 000000000000..0d0bb11f4695 --- /dev/null +++ b/openbb_terminal/economy/oecd_model.py @@ -0,0 +1,1211 @@ +""" OECD model """ +__docformat__ = "numpy" + +import logging +from datetime import datetime +from typing import List, Optional + +import pandas as pd +from dateutil.relativedelta import relativedelta + +from openbb_terminal.decorators import console, log_start_end + +logger = logging.getLogger(__name__) + +# pylint: disable=C0302 + +COUNTRY_TO_CODE_GDP = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area": "EA", + "european_union": "EU", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "poland": "POL", + "portugal": "PRT", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_RGDP = { + "G20": "G-20", + "G7": "G-7", + "argentina": "ARG", + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "bulgaria": "BGR", + "canada": "CAN", + "chile": "CHL", + "china": "CHN", + "colombia": "COL", + "costa_rica": "CRI", + "croatia": "HRV", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area_19": "EA19", + "europe": "OECDE", + "european_union_27": "EU27_2020", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "india": "IND", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "oecd_total": "OECD", + "poland": "POL", + "portugal": "PRT", + "romania": "ROU", + "russia": "RUS", + "saudi_arabia": "SAU", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_GDP_FORECAST = { + "argentina": "ARG", + "asia": "DAE", + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "bulgaria": "BGR", + "canada": "CAN", + "chile": "CHL", + "china": "CHN", + "colombia": "COL", + "costa_rica": "CRI", + "croatia": "HRV", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area_17": "EA17", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "india": "IND", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "non-oecd": "NMEC", + "norway": "NOR", + "oecd_total": "OECD", + "peru": "PER", + "poland": "POL", + "portugal": "PRT", + "romania": "ROU", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", + "world": "WLD", +} + +COUNTRY_TO_CODE_CPI = { + "G20": "G-20", + "G7": "G-7", + "argentina": "ARG", + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "china": "CHN", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area_19": "EA19", + "europe": "OECDE", + "european_union_27": "EU27_2020", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "india": "IND", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "oecd_total": "OECD", + "poland": "POL", + "portugal": "PRT", + "russia": "RUS", + "saudi_arabia": "SAU", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_BALANCE = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area": "EA", + "european_union": "EU", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "poland": "POL", + "portugal": "PRT", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_REVENUE = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "euro_area": "EA", + "european_union": "EU", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "oecd_average": "OAVG", + "oecd_europe": "OEU", + "oecd_total": "OECD", + "poland": "POL", + "portugal": "PRT", + "romania": "ROU", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_SPENDING = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "indonesia": "IDN", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "oecd_average": "OAVG", + "oecd_europe": "OEU", + "oecd_total": "OECD", + "poland": "POL", + "portugal": "PRT", + "romania": "ROU", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_DEBT = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "oecd_average": "OAVG", + "oecd_total": "OECD", + "poland": "POL", + "portugal": "PRT", + "romania": "ROU", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + +COUNTRY_TO_CODE_TRUST = { + "australia": "AUS", + "austria": "AUT", + "belgium": "BEL", + "brazil": "BRA", + "canada": "CAN", + "chile": "CHL", + "colombia": "COL", + "costa_rica": "CRI", + "czech_republic": "CZE", + "denmark": "DNK", + "estonia": "EST", + "finland": "FIN", + "france": "FRA", + "germany": "DEU", + "greece": "GRC", + "hungary": "HUN", + "iceland": "ISL", + "ireland": "IRL", + "israel": "ISR", + "italy": "ITA", + "japan": "JPN", + "korea": "KOR", + "latvia": "LVA", + "lithuania": "LTU", + "luxembourg": "LUX", + "mexico": "MEX", + "netherlands": "NLD", + "new_zealand": "NZL", + "norway": "NOR", + "poland": "POL", + "portugal": "PRT", + "russia": "RUS", + "slovak_republic": "SVK", + "slovenia": "SVN", + "south_africa": "ZAF", + "spain": "ESP", + "sweden": "SWE", + "switzerland": "CHE", + "turkey": "TUR", + "united_kingdom": "GBR", + "united_states": "USA", +} + + +@log_start_end(log=logger) +def get_gdp( + countries: Optional[List[str]], + units: str = "USD_CAP", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Gross domestic product (GDP) is the standard measure of the value added created + through the production of goods and services in a country during a certain period. + As such, it also measures the income earned from that production, or the total amount + spent on final goods and services (less imports). While GDP is the single most important + indicator to capture economic activity, it falls short of providing a suitable measure of + people's material well-being for which alternative indicators may be more appropriate. + This indicator is based on nominal GDP (also called GDP at current prices or GDP in value) + and is available in different measures: US dollars and US dollars per capita (current PPPs). + All OECD countries compile their data according to the 2008 System of National Accounts (SNA). + This indicator is less suited for comparisons over time, as developments are not only caused + by real growth, but also by changes in prices and PPPs. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'USD_CAP' or 'MLN_USD'. + Default is US dollars per capita. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with gdp data + """ + if not start_date: + start_date = datetime.now() - relativedelta(years=30) + if not end_date: + end_date = datetime.now() + + if isinstance(start_date, datetime): + start_date = start_date.date() + if isinstance(end_date, datetime): + end_date = end_date.date() + + if units not in ["USD_CAP", "MLN_USD"]: + return console.print( + "Use either USD_CAP (US dollars per capita) " + "or MLN_USD (millions of US dollars) for units" + ) + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GDP.TOT.{units}.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_GDP[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_real_gdp( + countries: Optional[List[str]], + units: str = "PC_CHGPY", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Gross domestic product (GDP) is the standard measure of the value added + created through the production of goods and services in a country during + a certain period. As such, it also measures the income earned from that + production, or the total amount spent on final goods and services (less imports). + While GDP is the single most important indicator to capture economic activity, it + falls short of providing a suitable measure of people's material well-being for + which alternative indicators may be more appropriate. This indicator is based on + real GDP (also called GDP at constant prices or GDP in volume), i.e. the developments + over time are adjusted for price changes. The numbers are also adjusted for seasonal + influences. The indicator is available in different measures: percentage change from + the previous quarter, percentage change from the same quarter of the previous year and + volume index (2015=100). All OECD countries compile their data according to the 2008 + System of National Accounts (SNA). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'PC_CHGPP', 'PC_CHGPY' or 'IDX. + Default is percentage change from the same quarter of the previous year. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the gdp data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=10)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + if units not in ["PC_CHGPP", "PC_CHGPY", "IDX"]: + return console.print( + "Use either PC_CHGPP (percentage change previous quarter), " + "PC_CHGPY (percentage change from the same quarter of the " + "previous year) or IDX (index with base at 2015) " + "for units" + ) + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.QGDP." + f"{'VOLIDX' if units == 'IDX' else 'TOT'}.{units}.Q/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_RGDP[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = ( + pd.PeriodIndex(result.index, freq="Q").to_timestamp().strftime("%Y-%m") + ) + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_gdp_forecast( + countries: Optional[List[str]], + types: str = "real", + units: str = "Q", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Real gross domestic product (GDP) is GDP given in constant prices and + refers to the volume level of GDP. Constant price estimates of GDP are + obtained by expressing values of all goods and services produced in a + given year, expressed in terms of a base period. Forecast is based on an + assessment of the economic climate in individual countries and the world economy, + using a combination of model-based analyses and expert judgement. This indicator + is measured in growth rates compared to previous year. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + type: str + Type of GDP to get data for. Either 'real' or 'nominal'. + Default s real GDP (real). + units: str + Units to get data in. Either 'Q' or 'A. + Default is Quarterly (Q). + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the gdp data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=10)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = (datetime.now() + relativedelta(years=10)).date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + if units not in ["Q", "A"]: + return console.print("Use either Q (quarterly) or A (annually) for units") + if types not in ["real", "nominal"]: + return console.print("Use either 'real' or 'nominal' for type") + + if types == "real": + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.REALGDPFORECAST.TOT.AGRWTH.{units}/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + else: + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.NOMGDPFORECAST.TOT.AGRWTH.{units}/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_GDP_FORECAST[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + + if temp.empty: + console.print(f"No {types} GDP data for {country} with {units}.") + else: + result = pd.concat([result, temp], axis=1) + + except KeyError: + console.print(f"No data available for {country}.") + + if units == "Q": + result.index = ( + pd.PeriodIndex(result.index, freq="Q").to_timestamp().strftime("%Y-%m") + ) + else: + result.index = pd.to_datetime(result.index).year + + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_debt( + countries: Optional[List[str]], + start_date="", + end_date="", +) -> pd.DataFrame: + """ + General government debt-to-GDP ratio measures the gross debt of the general + government as a percentage of GDP. It is a key indicator for the sustainability + of government finance. Debt is calculated as the sum of the following liability + categories (as applicable): currency and deposits; debt securities, loans; insurance, + pensions and standardised guarantee schemes, and other accounts payable. Changes in + government debt over time primarily reflect the impact of past government deficits. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the debt data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=30)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGDEBT.TOT.PC_GDP.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_DEBT[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_cpi( + countries: Optional[List[str]], + perspective: str = "TOT", + frequency: str = "Q", + units: str = "AGRWTH", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Inflation measured by consumer price index (CPI) is defined as the change in the prices + of a basket of goods and services that are typically purchased by specific groups of + households. Inflation is measured in terms of the annual growth rate and in index, + 2015 base year with a breakdown for food, energy and total excluding food and energy. + Inflation measures the erosion of living standards. A consumer price index is estimated + as a series of summary measures of the period-to-period proportional change in the + prices of a fixed set of consumer goods and services of constant quantity and + characteristics, acquired, used or paid for by the reference population. Each summary + measure is constructed as a weighted average of a large number of elementary aggregate indices. + Each of the elementary aggregate indices is estimated using a sample of prices for a defined + set of goods and services obtained in, or by residents of, a specific region from a given + set of outlets or other sources of consumption goods and services. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + perspective: str + Perspective of CPI you wish to obtain. This can be ENRG (energy), FOOD (food), + TOT (total) or TOT_FOODENRG (total excluding food and energy) + Default is Total CPI. + frequency: str + Frequency to get data in. Either 'M', 'Q' or 'A. + Default is Quarterly (Q). + units: str + Units to get data in. Either 'AGRWTH' (annual growth rate) or IDX2015 (base = 2015). + Default is Annual Growth Rate (AGRWTH). + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with cpi data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=5)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + if perspective not in ["ENRG", "FOOD", "TOT", "TOT_FOODENRG"]: + return console.print( + "Use either ENRG (energy), FOOD (food), " + "TOT (total) or TOT_FOODENRG (total excluding food and energy) for perspective" + ) + if frequency not in ["M", "Q", "A"]: + return console.print( + "Use either M, (monthly), Q (quarterly) or A (annually) for frequency" + ) + if units not in ["AGRWTH", "IDX2015"]: + return console.print("Use either 'AGRWTH' or 'IDX2015' for type") + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.CPI.{perspective}.{units}.{frequency}/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_CPI[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + + if temp.empty: + console.print( + f"No {perspective} CPI data available for " + f"{country.title()} with set parameters." + ) + else: + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + if frequency in ["M", "Q"]: + result.index = pd.to_datetime(result.index).strftime("%Y-%m") + else: + result.index = pd.to_datetime(result.index).year + + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_balance( + countries: Optional[List[str]], + start_date="", + end_date="", +) -> pd.DataFrame: + """ + General government deficit is defined as the balance of income and expenditure of government, + including capital income and capital expenditures. "Net lending" means that governmen + has a surplus, and is providing financial resources to other sectors, while + "net borrowing" means that government has a deficit, and requires financial + esources from other sectors. This indicator is measured as a percentage of GDP. + All OECD countries compile their data according to the + 2008 System of National Accounts (SNA 2008). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the balance data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=30)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGNLEND.TOT.PC_GDP.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_BALANCE[country]]["Value"] + ) + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_revenue( + countries: Optional[List[str]], + units: str = "PC_GDP", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Governments collect revenues mainly for two purposes: to finance the goods + and services they provide to citizens and businesses, and to fulfil their + redistributive role. Comparing levels of government revenues across + countries provides an indication of the importance of the government + sector in the economy in terms of available financial resources. + The total amount of revenues collected by governments is determined + by past and current political decisions. This indicator is measured + in terms of thousand USD per capita, and as a percentage of GDP. All + OECD countries compile their data according to the 2008 System of + National Accounts (SNA 2008). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'PC_GDP' or 'THOUSAND_USD_PER_CAPITA'. + Default is Percentage of GDP. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with revenue data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=30)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + if units not in ["THND_USD_CAP", "PC_GDP"]: + return console.print( + "Use either THND_USD_CAP (thousands of USD per capity) " + "or PC_GDP (percentage of GDP) for units" + ) + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGREV.TOT.{units}.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_REVENUE[country]]["Value"] + ) + + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_spending( + countries: Optional[List[str]], + perspective: str = "TOT", + units: str = "PC_GDP", + start_date="", + end_date="", +) -> pd.DataFrame: + """ + General government spending provides an indication of the size + of government across countries. The large variation in this indicator + highlights the variety of countries' approaches to delivering public + goods and services and providing social protection, not necessarily + differences in resources spent. This indicator is measured in terms of + thousand USD per capita, and as percentage of GDP. All OECD countries + compile their data according to the 2008 System of + National Accounts (SNA).[ Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + perspective: str + The type of spending. Choose form the following: + TOT (Total) + RECULTREL (Recreation, culture and religion) + HOUCOMM (Housing and community amenities) + PUBORD (Public order and safety) + EDU (Education) + ENVPROT (Environmental protection) + GRALPUBSER (General public services) + SOCPROT (Social protection) + ECOAFF (Economic affairs) + DEF (Defence) + HEALTH (Health) + units: str + Units to get data in. Either 'PC_GDP' or 'THOUSAND_USD_PER_CAPITA'. + Default is Percentage of GDP. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the spending data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=30)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + if units not in ["THND_USD_CAP", "PC_GDP"]: + console.print( + "Use either THND_USD_CAP (thousands of USD per capity) " + "or PC_GDP (percentage of GDP) for units" + ) + return pd.DataFrame() + if perspective not in [ + "TOT", + "RECULTREL", + "HOUCOMM", + "PUBORD", + "EDU", + "ENVPROT", + "GRALPUBSER", + "SOCPROT", + "ECOAFF", + "DEF", + "HEALTH", + ]: + console.print( + "Use either TOT (Total), RECULTREL (Recreation, culture and religion), " + "HOUCOMM (Housing and community amenities), PUBORD (Public order and safety), " + "EDU (Education), ENVPROT (Environmental protection), GRALPUBSER (General public services), " + "SOCPROT (Social protection), ECOAFF (Economic affairs), DEF (Defence), HEALTH (Health)" + ) + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGEXP.{perspective}.{units}.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_SPENDING[country]]["Value"] + ) + + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result + + +@log_start_end(log=logger) +def get_trust( + countries: Optional[List[str]], + start_date="", + end_date="", +) -> pd.DataFrame: + """ + Trust in government refers to the share of people who report having confidence in + the national government. The data shown reflect the share of respondents answering + “yes” (the other response categories being “no”, and “don’t know”) to the + survey question: “In this country, do you have confidence in… national + government? Due to small sample sizes, country averages for horizontal inequalities + (by age, gender and education) are pooled between 2010-18 to improve the accuracy + of the estimates. The sample is ex ante designed to be nationally representative of + the population aged 15 and over. This indicator is measured as a percentage + of all survey respondents. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the trust data + """ + if not start_date: + start_date = (datetime.now() - relativedelta(years=30)).date() + elif isinstance(start_date, datetime): + start_date = start_date.date() + if not end_date: + end_date = datetime.now().date() + elif isinstance(end_date, datetime): + end_date = end_date.date() + + df = pd.read_csv( + f"https://stats.oecd.org/sdmx-json/data/DP_LIVE/.TRUSTGOV.TOT.PC.A/OECD?contentType=csv&detail=code" + f"&separator=comma&csv-lang=en&startPeriod={start_date}&endPeriod={end_date}", + index_col=5, + ) + + df = df.iloc[:, [0, 5]] + + result = pd.DataFrame() + for country in countries: # type: ignore + try: + temp = pd.DataFrame( + df[df["LOCATION"] == COUNTRY_TO_CODE_TRUST[country]]["Value"] + ) + + temp.index = temp.index.map(str) + temp.columns = [country] + result = pd.concat([result, temp], axis=1) + except KeyError: + console.print(f"No data available for {country}.") + + result.index = pd.to_datetime(result.index).year + result.sort_index(inplace=True) + + return result diff --git a/openbb_terminal/economy/oecd_view.py b/openbb_terminal/economy/oecd_view.py new file mode 100644 index 000000000000..7514aa49d439 --- /dev/null +++ b/openbb_terminal/economy/oecd_view.py @@ -0,0 +1,801 @@ +""" OECD view """ +__docformat__ = "numpy" + +# IMPORTATION STANDARD +import logging +import os +from datetime import datetime +from typing import List, Optional + +import pandas as pd + +from openbb_terminal import OpenBBFigure +from openbb_terminal.decorators import log_start_end +from openbb_terminal.economy import oecd_model +from openbb_terminal.helper_funcs import console, export_data, print_rich_table + +logger = logging.getLogger(__name__) + +# pylint: disable=too-many-arguments, too-many-function-args + + +@log_start_end(log=logger) +def plot_gdp( + countries: Optional[List[str]], + units: str = "USD_CAP", + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Gross domestic product (GDP) is the standard measure of the value added created + through the production of goods and services in a country during a certain period. + As such, it also measures the income earned from that production, or the total amount + spent on final goods and services (less imports). While GDP is the single most important + indicator to capture economic activity, it falls short of providing a suitable measure of + people's material well-being for which alternative indicators may be more appropriate. + This indicator is based on nominal GDP (also called GDP at current prices or GDP in value) + and is available in different measures: US dollars and US dollars per capita (current PPPs). + All OECD countries compile their data according to the 2008 System of National Accounts (SNA). + This indicator is less suited for comparisons over time, as developments are not only caused + by real growth, but also by changes in prices and PPPs. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'USD_CAP' or 'MLN_USD'. + Default is US dollars per capita. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + if units not in ["USD_CAP", "MLN_USD"]: + return console.print( + "Use either USD_CAP (US dollars per capita) " + "or MLN_USD (millions of US dollars) for units" + ) + + df = oecd_model.get_gdp(countries, units, start_date, end_date) + + if units == "USD_CAP": + fig = OpenBBFigure(yaxis_title="US Dollars per Capita") + else: + fig = OpenBBFigure(yaxis_title="Millions of US Dollars") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Nominal Gross Domestic Product (GDP)" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + f"nominal_gdp_{units}", + df, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_real_gdp( + countries: Optional[List[str]], + units: str = "PC_CHGPY", + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Gross domestic product (GDP) is the standard measure of the value added + created through the production of goods and services in a country during + a certain period. As such, it also measures the income earned from that + production, or the total amount spent on final goods and services (less imports). + While GDP is the single most important indicator to capture economic activity, it + falls short of providing a suitable measure of people's material well-being for + which alternative indicators may be more appropriate. This indicator is based on + real GDP (also called GDP at constant prices or GDP in volume), i.e. the developments + over time are adjusted for price changes. The numbers are also adjusted for seasonal + influences. The indicator is available in different measures: percentage change from + the previous quarter, percentage change from the same quarter of the previous year and + volume index (2015=100). All OECD countries compile their data according to the 2008 + System of National Accounts (SNA). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'PC_CHGPP', 'PC_CHGPY' or 'IDX. + Default is percentage change from the same quarter of the previous year. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + if units not in ["PC_CHGPP", "PC_CHGPY", "IDX"]: + return console.print( + "Use either PC_CHGPP (percentage change previous quarter), " + "PC_CHGPY (percentage change from the same quarter of the " + "previous year) or IDX (index with base at 2015) " + "for units" + ) + + df = oecd_model.get_real_gdp(countries, units, start_date, end_date) + + if units == "PC_CHGPP": + fig = OpenBBFigure(yaxis_title="Previous Quarter (% Change)") + elif units == "PC_CHGPY": + fig = OpenBBFigure( + yaxis_title="Same Quarter of the Previous Year (% Change)", + yaxis_title_font_size=13, + ) + else: + fig = OpenBBFigure(yaxis_title="Index (Base = 2015)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Real Gross Domestic Product (GDP)" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + f"real_gdp_{units}", + df if units == "IDX" else df / 100, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_gdp_forecast( + countries: Optional[List[str]], + types: str = "real", + quarterly: bool = False, + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Real gross domestic product (GDP) is GDP given in constant prices and + refers to the volume level of GDP. Constant price estimates of GDP are + obtained by expressing values of all goods and services produced in a + given year, expressed in terms of a base period. Forecast is based on an + assessment of the economic climate in individual countries and the world economy, + using a combination of model-based analyses and expert judgement. This indicator + is measured in growth rates compared to previous year. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + type: str + Type of GDP to get data for. Either 'real' or 'nominal'. + Default s real GDP (real). + quarterly: bool + Whether to get quarterly results. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + if types not in ["real", "nominal"]: + return console.print("Use either 'real' or 'nominal' for type") + + units = "Q" if quarterly else "A" + df = oecd_model.get_gdp_forecast(countries, types, units, start_date, end_date) + + fig = OpenBBFigure(yaxis_title="Growth rates Compared to Previous Year (%)") + + future_dates = df[ + df.index > str(datetime.now()) + if units == "Q" + else df.index >= datetime.now().year + ] + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + if not future_dates.empty: + fig.add_vrect( + x0=future_dates.index[0], + x1=future_dates.index[-1], + annotation_text="Forecast", + fillcolor="yellow", + opacity=0.20, + line_width=0, + ) + + title = ( + f"Forecast of {'Quarterly' if units == 'Q' else 'Annual'} " + f"{'Real' if types == 'real' else 'Nominal'} Gross Domestic Product (GDP)" + ) + fig.set_title(title, font_size=20) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + "forecast_gdp", + df / 100, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_cpi( + countries: Optional[List[str]], + perspective: str = "TOT", + frequency: str = "Q", + units: str = "AGRWTH", + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Inflation measured by consumer price index (CPI) is defined as the change in the prices + of a basket of goods and services that are typically purchased by specific groups of + households. Inflation is measured in terms of the annual growth rate and in index, + 2015 base year with a breakdown for food, energy and total excluding food and energy. + Inflation measures the erosion of living standards. A consumer price index is estimated + as a series of summary measures of the period-to-period proportional change in the + prices of a fixed set of consumer goods and services of constant quantity and + characteristics, acquired, used or paid for by the reference population. Each summary + measure is constructed as a weighted average of a large number of elementary aggregate indices. + Each of the elementary aggregate indices is estimated using a sample of prices for a defined + set of goods and services obtained in, or by residents of, a specific region from a given + set of outlets or other sources of consumption goods and services. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + perspective: str + Type of CPI you wish to obtain. This can be ENRG (energy), FOOD (food), + TOT (total) or TOT_FOODENRG (total excluding food and energy) + Default is Total CPI. + frequency: str + Frequency to get data in. Either 'M', 'Q' or 'A. + Default is Quarterly (Q). + units: str + Units to get data in. Either 'AGRWTH' (annual growth rate) or IDX2015 (base = 2015). + Default is Annual Growth Rate (AGRWTH). + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + df = oecd_model.get_cpi( + countries, perspective, frequency, units, start_date, end_date + ) + + fig = OpenBBFigure( + yaxis_title="Annual Growth Rate (%)" + if units == "AGRWTH" + else "Index (2015 = 100)" + ) + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + perspective_naming = { + "FOOD": "Food", + "ENRG": "Energy", + "TOT": "Total", + "TOT_FOODENRG": "Total Excluding Food and Energy", + } + + title = f"Consumer Price Index (CPI) ({perspective_naming[perspective]})" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + "cpi", + df / 100 if units == "AGRWTH" else df, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_balance( + countries: Optional[List[str]], + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + General government balance is defined as the balance of income and expenditure of government, + including capital income and capital expenditures. "Net lending" means that governmen + has a surplus, and is providing financial resources to other sectors, while + "net borrowing" means that government has a deficit, and requires financial + esources from other sectors. This indicator is measured as a percentage of GDP. + All OECD countries compile their data according to the + 2008 System of National Accounts (SNA 2008). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + df = oecd_model.get_balance(countries, start_date, end_date) + + fig = OpenBBFigure(yaxis_title="Percentage of GDP (%)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Government Defict or Suplus" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + "balance_percentage_gdp", + df / 100, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_revenue( + countries: Optional[List[str]], + units: str = "PC_GDP", + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Governments collect revenues mainly for two purposes: to finance the goods + and services they provide to citizens and businesses, and to fulfil their + redistributive role. Comparing levels of government revenues across + countries provides an indication of the importance of the government + sector in the economy in terms of available financial resources. + The total amount of revenues collected by governments is determined + by past and current political decisions. This indicator is measured + in terms of thousand USD per capita, and as a percentage of GDP. All + OECD countries compile their data according to the 2008 System of + National Accounts (SNA 2008). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'PC_GDP' or 'THOUSAND_USD_PER_CAPITA'. + Default is Percentage of GDP. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + if units not in ["THND_USD_CAP", "PC_GDP"]: + return console.print( + "Use either THND_USD_CAP (thousands of USD per capity) " + "or PC_GDP (percentage of GDP) for units" + ) + + df = oecd_model.get_revenue(countries, units, start_date, end_date) + + if units == "THND_USD_CAP": + fig = OpenBBFigure(yaxis_title="Thousands of USD per Capita") + else: + fig = OpenBBFigure(yaxis_title="Percentage of GDP (%)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Government Revenue" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + f"revenue_{units}", + df / 100 if units == "PC_GDP" else df, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_spending( + countries: Optional[List[str]], + perspective: str = "TOT", + units: str = "PC_GDP", + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + General government spending provides an indication of the size + of government across countries. The large variation in this indicator + highlights the variety of countries' approaches to delivering public + goods and services and providing social protection, not necessarily + differences in resources spent. This indicator is measured in terms of + thousand USD per capita, and as percentage of GDP. All OECD countries + compile their data according to the 2008 System of + National Accounts (SNA). [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + units: str + Units to get data in. Either 'PC_GDP' or 'THOUSAND_USD_PER_CAPITA'. + Default is Percentage of GDP. + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + df = oecd_model.get_spending(countries, perspective, units, start_date, end_date) + + if units == "THND_USD_CAP": + fig = OpenBBFigure(yaxis_title="Thousands of USD per Capita") + else: + fig = OpenBBFigure(yaxis_title="Percentage of GDP (%)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + perspective_naming = { + "TOT": "Total", + "RECULTREL": "Recreation, culture and religion)", + "HOUCOMM": "Housing and community amenities", + "PUBORD": "Public order and safety)", + "EDU": "Education", + "ENVPROT": "Environmental protection", + "GRALPUBSER": "General public services)", + "SOCPROT": "Social protection", + "ECOAFF": "Economic affairs", + "DEF": "Defence", + "HEALTH": "Health", + } + + title = f"Government Spending ({perspective_naming[perspective]})" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + f"spending_{units}_{perspective}", + df / 100 if units == "PC_GDP" else df, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_debt( + countries: Optional[List[str]], + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + General government debt-to-GDP ratio measures the gross debt of the general + government as a percentage of GDP. It is a key indicator for the sustainability + of government finance. Debt is calculated as the sum of the following liability + categories (as applicable): currency and deposits; debt securities, loans; insurance, + pensions and standardised guarantee schemes, and other accounts payable. Changes in + government debt over time primarily reflect the impact of past government deficits. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + df = oecd_model.get_debt(countries, start_date, end_date) + + fig = OpenBBFigure(yaxis_title="Percentage of GDP (%)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Government Debt-to-GDP Ratio" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + "debt_to_gdp", + df / 100, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) + + +@log_start_end(log=logger) +def plot_trust( + countries: Optional[List[str]], + start_date: str = "", + end_date: str = "", + raw: bool = False, + export: str = "", + sheet_name: str = "", + external_axes: bool = False, +) -> pd.DataFrame: + """ + Trust in government refers to the share of people who report having confidence in + the national government. The data shown reflect the share of respondents answering + “yes” (the other response categories being “no”, and “don’t know”) to the + survey question: “In this country, do you have confidence in national + government? Due to small sample sizes, country averages for horizontal inequalities + (by age, gender and education) are pooled between 2010-18 to improve the accuracy + of the estimates. The sample is ex ante designed to be nationally representative of + the population aged 15 and over. This indicator is measured as a percentage + of all survey respondents. [Source: OECD] + + Parameters + ---------- + countries: list + List of countries to get data for + start_date: str + Start date of data, in YYYY-MM-DD format + end_date: str + End date of data, in YYYY-MM-DD format + + Returns + ------- + pd.DataFrame + Dataframe with the interest rate data + """ + df = oecd_model.get_trust(countries, start_date, end_date) + + fig = OpenBBFigure(yaxis_title="Percentage of all Survey Respondents (%)") + + for country in df.columns: + fig.add_scatter( + x=df.index, + y=df[country], + name=country.replace("_", " ").title(), + mode="lines", + line_width=2.5, + showlegend=True, + ) + + title = "Trust in the Government" + fig.set_title(title) + + if raw: + print_rich_table( + df, + headers=list(df.columns), + show_index=True, + title=title, + export=bool(export), + ) + + export_data( + export, + os.path.dirname(os.path.abspath(__file__)), + "trust", + df / 100, + sheet_name, + fig, + ) + + return fig.show(external=external_axes) diff --git a/openbb_terminal/forecast/forecast.ipynb b/openbb_terminal/forecast/forecast.ipynb index 3e7d0c013dfc..1195b14cda59 100644 --- a/openbb_terminal/forecast/forecast.ipynb +++ b/openbb_terminal/forecast/forecast.ipynb @@ -19,7 +19,7 @@ "\n", "%matplotlib inline\n", "matplotlib_inline.backend_inline.set_matplotlib_formats(\"svg\")\n", - "api.theme.applyMPLstyle()" + "api.theme.apply_style()" ] }, { diff --git a/openbb_terminal/miscellaneous/data_sources_default.json b/openbb_terminal/miscellaneous/data_sources_default.json index 7e68411258df..292124501ed7 100644 --- a/openbb_terminal/miscellaneous/data_sources_default.json +++ b/openbb_terminal/miscellaneous/data_sources_default.json @@ -446,9 +446,17 @@ "valuation": ["Finviz"], "performance": ["Finviz"], "spectrum": ["Finviz"], - "macro": ["EconDB"], - "treasury": ["EconDB"], + "gdp": ["OECD"], + "rgdp": ["OECD"], + "fgdp": ["OECD"], + "debt": ["OECD"], "cpi": ["FRED"], + "ccpi": ["OECD"], + "balance": ["OECD"], + "revenue": ["OECD"], + "spending": ["OECD"], + "trust": ["OECD"], + "treasury": ["EconDB"], "fred": ["FRED"], "index": ["YahooFinance"] }, diff --git a/openbb_terminal/miscellaneous/i18n/en.yml b/openbb_terminal/miscellaneous/i18n/en.yml index 778b33ecb9a0..a5fc4789cba5 100644 --- a/openbb_terminal/miscellaneous/i18n/en.yml +++ b/openbb_terminal/miscellaneous/i18n/en.yml @@ -740,6 +740,17 @@ en: etf/ta/obv: on balance volume etf/ta/_custom_: Custom etf/ta/fib: fibonacci retracement + economy/_country_: Country Performance + economy/gdp: Show nominal Gross Domestic Product (GDP) + economy/rgdp: Show real Gross Domestic Product (GDP) + economy/fgdp: Show forecasts of nominal and real Gross Domestic Product (GDP) + economy/debt: Show government debt-to-GDP ratio + economy/cpi: obtain the (harmonized) Consumer Price Index (CPI) + economy/ccpi: obtain components of the CPI including Food, Energy and Total + economy/balance: Show Government defict or surplus in capital income and expenditures + economy/revenue: Show Government revenue based on tax income + economy/spending: Show Government spending as indicator of size of government + economy/trust: Show Government trust based on surveys regarding confidence in the government economy/_database_: Databases economy/_stored: Stored datasets economy/overview: show a market overview of either indices, bonds or currencies @@ -750,7 +761,6 @@ en: economy/fred: collect macro data from FRED based on a series ID economy/index: find and plot any (major) index on the market economy/treasury: obtain U.S. treasury rates - economy/cpi: obtain (harmonized) Consumer Price Indices for any country economy/ycrv: show sovereign yield curves economy/spread: show bond spread matrix economy/events: show economic calendar diff --git a/openbb_terminal/miscellaneous/integration_tests_scripts/economy/test_economy.openbb b/openbb_terminal/miscellaneous/integration_tests_scripts/economy/test_economy.openbb index a7281b1e2e21..2f39aba83dd9 100644 --- a/openbb_terminal/miscellaneous/integration_tests_scripts/economy/test_economy.openbb +++ b/openbb_terminal/miscellaneous/integration_tests_scripts/economy/test_economy.openbb @@ -20,17 +20,11 @@ map map -p 1w -t world bigmac bigmac -c USA,ESP,LVA,DEU,FRA,FIN -ycrv -ycrv --source FRED --date 2022-10-03 --raw -ycrv -c united_states --source Investing events events --country united_states -s 2022-07-07 -e 2022-07-08 events -c spain,canada events -n edebt --limit 10 -spread -spread --group PIIGS --color binary -spread --countries portugal,spain,italy,united states --maturity 5Y --change=True --color openbb rtps valuation valuation --group sector --sortby MarketCap --reverse @@ -38,6 +32,26 @@ performance performance -g basic_materials -s Month -a spectrum spectrum --group consumer_defensive +gdp +rgdp +fgdp +debt +cpi +ccpi +balance +revenue +spending +trust +gdp --units USD_CAP +rgdp --units IDX +fgdp --quarterly +debt --start 2010-01-01 --end 2020-01-01 +cpi --units growth_same +ccpi --perspective FOOD +balance --countries austria,belgium,canada +revenue --countries united_states,germany,japan +spending --perspective ENVPROT +trust --countries belgium --start 2010-01-01 macro macro -p RGDP,CPI macro -p URATE -c Netherlands,Germany diff --git a/openbb_terminal/sdk.py b/openbb_terminal/sdk.py index 2ea66e77c71b..e31c441a90ed 100644 --- a/openbb_terminal/sdk.py +++ b/openbb_terminal/sdk.py @@ -132,18 +132,28 @@ def economy(self): Attributes: `available_indices`: Get available indices\n + `balance`: General government deficit is defined as the balance of income and expenditure of government,\n + `balance_chart`: General government balance is defined as the balance of income and expenditure of government,\n `bigmac`: Display Big Mac Index for given countries\n `bigmac_chart`: Display Big Mac Index for given countries\n + `ccpi`: Inflation measured by consumer price index (CPI) is defined as the change in the prices\n + `ccpi_chart`: Inflation measured by consumer price index (CPI) is defined as the change in the prices\n `country_codes`: Get available country codes for Bigmac index\n `cpi`: Obtain CPI data from FRED. [Source: FRED]\n - `cpi_chart`: Plot CPI data. [Source: FRED]\n + `cpi_chart`: Inflation measured by consumer price index (CPI) is defined as the change in\n `currencies`: Scrape data for global currencies\n + `debt`: General government debt-to-GDP ratio measures the gross debt of the general\n + `debt_chart`: General government debt-to-GDP ratio measures the gross debt of the general\n `events`: Get economic calendar for countries between specified dates\n + `fgdp`: Real gross domestic product (GDP) is GDP given in constant prices and\n + `fgdp_chart`: Real gross domestic product (GDP) is GDP given in constant prices and\n `fred`: Get Series data. [Source: FRED]\n `fred_chart`: Display (multiple) series from https://fred.stlouisfed.org. [Source: FRED]\n `fred_notes`: Get series notes. [Source: FRED]\n `future`: Get futures data. [Source: Finviz]\n `futures`: Get futures data.\n + `gdp`: Gross domestic product (GDP) is the standard measure of the value added created\n + `gdp_chart`: Gross domestic product (GDP) is the standard measure of the value added created\n `get_groups`: Get group available\n `glbonds`: Scrape data for global bonds\n `index`: Get data on selected indices over time [Source: Yahoo Finance]\n @@ -156,13 +166,21 @@ def economy(self): `overview`: Scrape data for market overview\n `perfmap`: Opens Finviz map website in a browser. [Source: Finviz]\n `performance`: Get group (sectors, industry or country) performance data. [Source: Finviz]\n + `revenue`: Governments collect revenues mainly for two purposes: to finance the goods\n + `revenue_chart`: Governments collect revenues mainly for two purposes: to finance the goods\n + `rgdp`: Gross domestic product (GDP) is the standard measure of the value added\n + `rgdp_chart`: Gross domestic product (GDP) is the standard measure of the value added\n `rtps`: Get real-time performance sector data\n `rtps_chart`: Display Real-Time Performance sector. [Source: AlphaVantage]\n `search_index`: Search indices by keyword. [Source: FinanceDatabase]\n `spectrum`: Display finviz spectrum in system viewer [Source: Finviz]\n + `spending`: General government spending provides an indication of the size\n + `spending_chart`: General government spending provides an indication of the size\n `treasury`: Get U.S. Treasury rates [Source: EconDB]\n `treasury_chart`: Display U.S. Treasury rates [Source: EconDB]\n `treasury_maturities`: Get treasury maturity options [Source: EconDB]\n + `trust`: Trust in government refers to the share of people who report having confidence in\n + `trust_chart`: Trust in government refers to the share of people who report having confidence in\n `usbonds`: Scrape data for us bonds\n `valuation`: Get group (sectors, industry or country) valuation data. [Source: Finviz]\n """ diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_data-kwargs_dict1].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_data-kwargs_dict1].yaml index 42100632c992..e707fb190f0c 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_data-kwargs_dict1].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_data-kwargs_dict1].yaml @@ -10,1108 +10,1126 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&observation_start=2020-01-01&series_id=DGS10 response: body: - string: "\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n" + sort_order=\"asc\" count=\"837\" offset=\"0\" limit=\"100000\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n" headers: Connection: - close @@ -1119,11 +1137,11 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:56 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:48:56 GMT Last-Modified: - - Mon, 27 Feb 2023 21:22:03 GMT + - Fri, 17 Mar 2023 20:25:04 GMT Transfer-Encoding: - chunked Vary: @@ -1131,7 +1149,7 @@ interactions: x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '120' + - '118' status: code: 200 message: OK diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].yaml index fc02096b6643..65dac924b80c 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].yaml @@ -13,845 +13,874 @@ interactions: response: body: string: !!binary | - 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 + RVtNfgnyS/Dml4ikc71f4r//9/8HsalIhxUbDwA= headers: Accept-Ranges: - bytes @@ -860,21 +889,21 @@ interactions: Content-Encoding: - gzip Content-Length: - - '47805' + - '49448' Content-Type: - application/json; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:55 GMT ETag: - - W/"d15afcdc107282b6c2707ff9033f7818-gzip-gzip" + - '"70973a812d79f09400e399afe9c728db-gzip"' Expires: - - Tue, 28 Feb 2023 02:47:33 GMT + - Mon, 20 Mar 2023 14:57:55 GMT Vary: - Accept-Encoding x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '118' + - '119' status: code: 200 message: OK diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].yaml new file mode 100644 index 000000000000..18c94041aed2 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].yaml @@ -0,0 +1,1236 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - api.stlouisfed.org + method: GET + uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01USM659N + response: + body: + string: "\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" + headers: + Connection: + - close + - Transfer-Encoding + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Mon, 20 Mar 2023 14:47:57 GMT + Expires: + - Mon, 20 Mar 2023 14:48:57 GMT + Last-Modified: + - Wed, 15 Mar 2023 18:07:03 GMT + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + x-rate-limit-limit: + - '120' + x-rate-limit-remaining: + - '116' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].yaml new file mode 100644 index 000000000000..571f2919d21d --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].yaml @@ -0,0 +1,2474 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - api.stlouisfed.org + method: GET + uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01BEM659N + response: + body: + string: "\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" + headers: + Connection: + - close + - Transfer-Encoding + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Mon, 20 Mar 2023 14:47:57 GMT + Expires: + - Mon, 20 Mar 2023 14:48:57 GMT + Last-Modified: + - Wed, 15 Mar 2023 18:18:09 GMT + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + x-rate-limit-limit: + - '120' + x-rate-limit-remaining: + - '115' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - api.stlouisfed.org + method: GET + uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01USM659N + response: + body: + string: "\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" + headers: + Connection: + - close + - Transfer-Encoding + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Mon, 20 Mar 2023 14:47:57 GMT + Expires: + - Mon, 20 Mar 2023 14:48:57 GMT + Last-Modified: + - Wed, 15 Mar 2023 18:07:03 GMT + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + x-rate-limit-limit: + - '120' + x-rate-limit-remaining: + - '114' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].yaml new file mode 100644 index 000000000000..71427ceb8d7c --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].yaml @@ -0,0 +1,1236 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - api.stlouisfed.org + method: GET + uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01USM659N + response: + body: + string: "\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" + headers: + Connection: + - close + - Transfer-Encoding + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Mon, 20 Mar 2023 14:47:58 GMT + Expires: + - Mon, 20 Mar 2023 14:48:58 GMT + Last-Modified: + - Wed, 15 Mar 2023 18:07:03 GMT + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + x-rate-limit-limit: + - '120' + x-rate-limit-remaining: + - '113' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict4].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict4].yaml index f28d6d061d10..a05105d8318c 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict4].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict4].yaml @@ -10,109 +10,109 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01GBA657N response: body: - string: "\n\n\n \n \n \n \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n \n - \ \n \n - \ \n \n\n\n\n\n" + realtime_start=\"2023-03-20\" realtime_end=\"2023-03-20\" date=\"1956-01-01\" + value=\".\"/>\n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n\n\n\n\n" headers: Connection: - close @@ -121,9 +121,9 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:59 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:48:58 GMT Last-Modified: - Tue, 14 Feb 2023 17:47:05 GMT Vary: @@ -146,109 +146,109 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01USA657N response: body: - string: "\n\n\n \n \n \n \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n\n\n\n\n" + realtime_start=\"2023-03-20\" realtime_end=\"2023-03-20\" date=\"1956-01-01\" + value=\".\"/>\n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" headers: Connection: - close @@ -257,9 +257,9 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:59 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:48:59 GMT Last-Modified: - Tue, 14 Feb 2023 17:45:03 GMT Vary: @@ -267,7 +267,7 @@ interactions: x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '110' + - '111' status: code: 200 message: OK diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].yaml new file mode 100644 index 000000000000..b73d4c7cbbad --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].yaml @@ -0,0 +1,426 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - api.stlouisfed.org + method: GET + uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPHPTT01USM659N + response: + body: + string: "\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n" + headers: + Connection: + - close + Content-Length: + - '29534' + Content-Type: + - text/xml; charset=UTF-8 + Date: + - Mon, 20 Mar 2023 14:47:59 GMT + Expires: + - Mon, 20 Mar 2023 14:48:59 GMT + Last-Modified: + - Wed, 15 Mar 2023 18:07:13 GMT + Vary: + - Accept-Encoding + x-rate-limit-limit: + - '120' + x-rate-limit-remaining: + - '110' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict6].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict6].yaml index 77ea123710bf..58d120da73bb 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict6].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_get_cpi[get_cpi-kwargs_dict6].yaml @@ -10,109 +10,109 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01GBA657N response: body: - string: "\n\n\n \n \n \n \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n \n - \ \n \n - \ \n \n\n\n\n\n" + realtime_start=\"2023-03-20\" realtime_end=\"2023-03-20\" date=\"1956-01-01\" + value=\".\"/>\n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n\n\n\n\n" headers: Connection: - close @@ -121,9 +121,9 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:48:00 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:49:00 GMT Last-Modified: - Tue, 14 Feb 2023 17:47:05 GMT Vary: @@ -131,7 +131,7 @@ interactions: x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '113' + - '120' status: code: 200 message: OK @@ -146,109 +146,109 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&series_id=CPALTT01USA657N response: body: - string: "\n\n\n \n \n \n \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n - \ \n \n\n\n\n\n" + realtime_start=\"2023-03-20\" realtime_end=\"2023-03-20\" date=\"1956-01-01\" + value=\".\"/>\n \n \n \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n + \ \n \n\n\n\n\n" headers: Connection: - close @@ -257,9 +257,9 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:48:00 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:49:00 GMT Last-Modified: - Tue, 14 Feb 2023 17:45:03 GMT Vary: @@ -267,7 +267,7 @@ interactions: x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '111' + - '119' status: code: 200 message: OK diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_load_data[get_series_data-kwargs_dict0].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_load_data[get_series_data-kwargs_dict0].yaml index 42100632c992..5dce44993387 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_load_data[get_series_data-kwargs_dict0].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_load_data[get_series_data-kwargs_dict0].yaml @@ -10,1108 +10,1126 @@ interactions: uri: https://api.stlouisfed.org/fred/series/observations?api_key=MOCK_API_KEY&observation_start=2020-01-01&series_id=DGS10 response: body: - string: "\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n" + sort_order=\"asc\" count=\"837\" offset=\"0\" limit=\"100000\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n" headers: Connection: - close @@ -1119,11 +1137,11 @@ interactions: Content-Type: - text/xml; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:56 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:48:56 GMT Last-Modified: - - Mon, 27 Feb 2023 21:22:03 GMT + - Fri, 17 Mar 2023 20:25:04 GMT Transfer-Encoding: - chunked Vary: @@ -1131,7 +1149,7 @@ interactions: x-rate-limit-limit: - '120' x-rate-limit-remaining: - - '120' + - '117' status: code: 200 message: OK diff --git a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_output[check_series_id-kwargs_dict0].yaml b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_output[check_series_id-kwargs_dict0].yaml index 621140f2c880..8b9d2e053d3b 100644 --- a/tests/openbb_terminal/economy/cassettes/test_fred_model/test_output[check_series_id-kwargs_dict0].yaml +++ b/tests/openbb_terminal/economy/cassettes/test_fred_model/test_output[check_series_id-kwargs_dict0].yaml @@ -13,18 +13,18 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAEA6pWKkpNzCnJzE2NLy5JLCpRslIyMjAy1jUw0jUyV9JByKbmpaDLFacWZaYWFytZ + H4sIAAAAAAAEA6pWKkpNzCnJzE2NLy5JLCpRslIyMjAy1jUw1jUyUNJByKbmpaDLFacWZaYWFytZ RVcrZYJkXdyDTZH1kGxiSWZJTqqSlZJvYlF2aolCZGZqTopCfp5CqF6wnkJIUWpicWlRpUJwanJp UWZJZmqxQmKJgqluZGpikYJzfl5xSWJeiYJvYglItlJHIbA0vyQVrD8xT8Ezryy1uCQ3Na9EwSmx - OLNYSUcpP6k4tagssSQzPw/ueUNLMyNdA0NdAyM0BWj+N1HSUUorSi0sTc1LrlSyUnJJzMypRBaL - L87ILwIFp4uSjlJpXmZJsZKVUkBqUXJqXglMBK5GVUlHqTg1sTg/LzEnPjElqxTiUiUrJb/8EoVg - qExOpYIjWC41Bbt6uHl+wY5KOko5icUl8aUFKYklqaDYQcSrgqGplZGRlYGlroGZko5SQX5BaU5i - UWZJpZKVubmOUl5+SSrItW75RQpppUUlGalFCpl5aflFueCwUihKTU8sSsnMS1cogUVJMiz0c6Gh - r5CSWJKoo1CQk5pYnKpQlJqWWqRQkq9QkpGq4KFnaKoQXJJYkllckpmcmKMQlApRBbZXQSOjpKSg - 2CpGP0a/vLxcLy01JbUoMacoFRRXqXrp+WUx+kUQDcUx+hmGpjH6KalpiaU5JXoZJbmaCol5KWBb - 4KkFkoicS4vKUhV8U0sy8lPyc/LTK5HtycjPTdWD+QViRUF+TmZypW5mcXFpanGMflpmXmJecmZe - um5JRqpuen5ZalEeKC3F6GfmlaQWpRaX6BYllqTqFsO8VRyjDzNQtxKUjHWTQS7QzUW4ADBNPaXa - 2FoAqNDsT4EDAAA= + OLNYSUcpP6k4tagssSQzPw/ueUNLMyNdA0NdAyM0Baj+NzRT0lFKK0otLE3NS65UslJySczMqUQW + iy/OyC8CBaeLko5SaV5mSbGSlVJAalFyal4JTASuRlVJR6k4NbE4Py8xJz4xJasU4lIlKyW//BKF + YKhMTqWCI1guNQW7erh5fsGOSjpKOYnFJfGlBSmJJamg2IHFq6G5gqGplZGplaGBrgEovgryC0pz + EosySyqVrMzNdZTy8ktSQa51yy9SSCstKslILVLIzEvLL8oFh5VCUWp6YlFKZl66QgksSpJhoZ8L + DX2FlMSSRB2FgpzUxOJUhaLUtNQihZJ8hZKMVAUPPUNTheCSxJLM4pLM5MQchaBUiCqwvQoaGSUl + BcVWMfox+uXl5XppqSmpRYk5RamguErVS88vi9EvgmgojtHPMDSN0U9JTUsszSnRyyjJ1VRIzEsB + 2wJPLZBE5FxaVJaq4JtakpGfkp+Tn16JbE9Gfm6qHswvECsK8nMykyt1M4uLS1OLY/TTMvMS85Iz + 89J1SzJSddPzy1KL8kBpKUY/M68ktSi1uES3KLEkVbcY5q3iGH2YgbqVoGSsmwxygW4uwgWAaeop + 1cbWAgA8286ZgQMAAA== headers: Accept-Ranges: - bytes @@ -33,18 +33,18 @@ interactions: Content-Encoding: - gzip Content-Length: - - '638' + - '640' Content-Type: - application/json; charset=UTF-8 Date: - - Tue, 28 Feb 2023 02:37:33 GMT + - Mon, 20 Mar 2023 14:47:54 GMT Expires: - - Tue, 28 Feb 2023 02:38:33 GMT + - Mon, 20 Mar 2023 14:48:54 GMT Last-Modified: - - Mon, 27 Feb 2023 21:22:09 GMT + - Fri, 17 Mar 2023 20:25:10 GMT Set-Cookie: - - ak_bmsc=63F09FE47B7A2C92ACF06066D02941F7~000000000000000000000000000000~YAAQJOw4F4RETouGAQAAIN7hlRLIT19OGncz5rrfo2+dqoW2EoQo9S5LCkLaD2iJ1c/9b+uEIoX6WATHuuqP0HfTAqAEtq36ezchAofhHKYF7GuckHLvSeGKHgdG+k4ETfhl1YHh+JbqTQio2D4kgZ9GpIbZYsyxMi6nIOnxLM0XVBYeZwrIoT3nwYxWzUJINznMNsRpIF4iGNoK1t/TxiYMhMLxRZ3LKLoCYsN7KVwGMTCX0I1yQjdTpYtkRFYnk+YWOvExH3qsqwzHz2y9Tdy2sHTrP4/EERcmz3ANxVpqi6O6vdMS3UmvnAG35uSmw/fohIWiGIQ4ChVa+mTU1+V0pgh0nZU6/uts36vfKW2j2NReOnTZaMaUdMUyvs2E; - Domain=.stlouisfed.org; Path=/; Expires=Tue, 28 Feb 2023 04:37:33 GMT; Max-Age=7200; + - ak_bmsc=AC3FDDC398A3EE00FDFA4E92A744AA58~000000000000000000000000000000~YAAQ7xjdWMSASPOGAQAAZLd9/xOhenCyKu2rmmjYiP1nBO0Q8zcko35Ld7a+A1DGRp6kNxYnJEME94RPBMic5i2MxoTj/bRrA7yLhB3bUzBFKoBfXqonJKJ3TkMJgWg6ceOWBcYTSRkFioGVQQvclJr10UpIzAX04U5bQ/0GqWm/hlDE05vmdR/ID2b0I3Y1dystY7A6FDZwjb2ptFZGn7kE5Tk8Vo2tFTs4e6OdJQ46CPqmzem5E3Q9JUri35jTww95zUihBIWnVLya78TEqepFskR24Xz8ic6C571qmQGF7vjMDIibpkxBv05IonRia6KjIdcjAArokYAgYn8MbFwzvKmAFi/xn02mgeJnrTk37pdlw5F1bqmKexavTzIoNQ==; + Domain=.stlouisfed.org; Path=/; Expires=Mon, 20 Mar 2023 16:47:54 GMT; Max-Age=7200; HttpOnly Vary: - Accept-Encoding diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_balance.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_balance.yaml new file mode 100644 index 000000000000..a207e4116b57 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_balance.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGNLEND.TOT.PC_GDP.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-9.16219280827564,\r\n\"AUS\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-4.27010923535253,\r\n\"AUT\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-8.00884720254813,\r\n\"AUT\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.92955037868276,\r\n\"BEL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-8.97273600922783,\"E\"\r\n\"BEL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.5606320857412,\"E\"\r\n\"CAN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-10.9103983787705,\r\n\"CAN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-4.38138393970716,\r\n\"CZE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.76648179906889,\r\n\"CZE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.09963057709172,\r\n\"DNK\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",0.214895583223667,\r\n\"DNK\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",3.63404719170736,\r\n\"FIN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.58062158142818,\r\n\"FIN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-2.75803117048346,\r\n\"FRA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-8.9909451284566,\"E\"\r\n\"FRA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-6.5307273068972,\"E\"\r\n\"DEU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-4.33290362744206,\"E\"\r\n\"DEU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-3.7274102866662,\"E\"\r\n\"GRC\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-9.93313914005727,\"E\"\r\n\"GRC\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-7.45178441229841,\"E\"\r\n\"HUN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.53624972026301,\r\n\"HUN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-7.14365519110091,\"E\"\r\n\"ISL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-8.9250819582196,\r\n\"ISL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-7.94060286624924,\r\n\"IRL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.03237348119276,\r\n\"IRL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-1.66071899677964,\r\n\"ITA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-9.49313311270106,\r\n\"ITA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-7.23335322053742,\r\n\"JPN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-9.07705389751177,\r\n\"JPN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-6.2000515854893,\r\n\"KOR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-2.69496026796567,\r\n\"KOR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-0.751132667650742,\"E\"\r\n\"LUX\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-3.42785762124927,\r\n\"LUX\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",0.794369980740584,\"E\"\r\n\"MEX\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.35515696342991,\"E\"\r\n\"MEX\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.95329287411094,\"E\"\r\n\"NLD\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-3.71461213011437,\r\n\"NLD\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-2.60732685939025,\"E\"\r\n\"NOR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-2.59790716570114,\r\n\"NOR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",10.1455811633456,\r\n\"POL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-6.92287027435842,\r\n\"POL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-1.83673609385552,\r\n\"PRT\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.8194077395982,\r\n\"PRT\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-2.89804618628049,\"E\"\r\n\"SVK\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.35916787244911,\r\n\"SVK\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.46207589881999,\r\n\"ESP\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-10.1252337903146,\"E\"\r\n\"ESP\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-6.87297923008977,\"E\"\r\n\"SWE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-2.77122054056157,\r\n\"SWE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-0.077773139706044,\r\n\"CHE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-3.05939695603663,\r\n\"CHE\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-0.540009154748259,\r\n\"TUR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-4.66018301258022,\r\n\"GBR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-13.096880252788,\r\n\"GBR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-8.08361737009998,\r\n\"USA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-14.8599779853008,\r\n\"USA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-12.0643385283542,\r\n\"CHL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.46739004347129,\r\n\"EST\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.46878192986287,\r\n\"EST\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-2.40579457040692,\r\n\"ISR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-10.7567529096334,\r\n\"ISR\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-3.67538851604989,\r\n\"SVN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.72333063302274,\r\n\"SVN\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-4.67278353736836,\r\n\"EA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.04668760445516,\"E\"\r\n\"EA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-5.11625831057079,\"E\"\r\n\"EU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-6.72762566425552,\"E\"\r\n\"EU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-4.63504415448578,\"E\"\r\n\"NZL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.32541268648051,\r\n\"LVA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-4.34108419658055,\r\n\"LVA\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-6.97589279550967,\r\n\"COL\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-8.761723768147,\"E\"\r\n\"CRI\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-5.31406171547734,\r\n\"CRI\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-0.957469872871735,\"E\"\r\n\"LTU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",-7.03427652499294,\r\n\"LTU\",\"GGNLEND\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",-0.987680910985457,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141555803.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:55 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_cpi.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_cpi.yaml new file mode 100644 index 000000000000..c7c4d242cd6a --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_cpi.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.CPI.TOT.AGRWTH.Q/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.191061,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.3484321,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.6932409,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.8605852,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.114923,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.846154,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.012048,\r\n\"AUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.498293,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.871677,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.04397,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.413601,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.203881,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.337793,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.508361,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.133333,\r\n\"AUT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.072848,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.041347,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.5478865,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.8181651,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.5569667,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.5350683,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.439878,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.619981,\r\n\"BEL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.167534,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.80917,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.02445586,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.2682927,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.7816316,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.436222,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.349633,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.062272,\r\n\"CAN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.726127,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.603604,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",3.11344,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.309838,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.625954,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.188905,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.899851,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.123405,\r\n\"CZE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.129128,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.6168831,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.09702458,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.5169628,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.452635,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.7099064,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.647819,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.896496,\r\n\"DNK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.154168,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.811741,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.1741261,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.3192313,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.2091444,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.046766,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.086698,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.201794,\r\n\"FIN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.438865,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.193702,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.2970012,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.3474214,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.07644286,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.7428426,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.381902,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.72474,\r\n\"FRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.718014,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.619552,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.4118892,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.9164779,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.5044136,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.499001,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.190508,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.878302,\r\n\"DEU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.709419,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.3604815,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-1.38277,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-1.9002,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-2.051077,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-1.623779,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",0.2910405,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.815497,\r\n\"GRC\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.448262,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",4.319853,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.48083,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.713707,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.815013,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",3.14978,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.193662,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.99132,\r\n\"HUN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.083877,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.089589,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.497999,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.242031,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",3.546129,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",4.229271,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.412032,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.295227,\r\n\"ISL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.831192,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.02108,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.3255208,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.8449789,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-1.17302,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.1956309,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.436969,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.917076,\r\n\"IRL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.308276,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.2924927,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.129408,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.4846527,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.2271252,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.5832793,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.198575,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.175325,\r\n\"ITA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.544715,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.5,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.1,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.1666667,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.8333333,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.5333334,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",-0.8,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",-0.1666667,\r\n\"JPN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",0.5,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.9666483,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.008706601,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.7218354,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.454149,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.422432,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.487862,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.535268,\r\n\"KOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.546241,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.486396,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.5181674,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.7386597,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.5441963,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.254047,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.272584,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.478614,\r\n\"LUX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.09536,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.394335,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.772662,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.89529,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",3.520772,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",3.987519,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.952112,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.79949,\r\n\"MEX\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.990496,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.612647,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.311898,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.162102,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.010321,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.752958,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.006024,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.165076,\r\n\"NLD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.763375,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.534113,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.453488,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.443696,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.436782,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.520913,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.342885,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.933586,\r\n\"NZL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.949008,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.151864,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.144923,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.561093,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.286655,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.966737,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.829908,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.488028,\r\n\"NOR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.638109,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",4.533333,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",3.2,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.033333,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.833333,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.733333,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.466667,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.466667,\r\n\"POL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.733333,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.4070112,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.2726436,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.003538286,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.1739637,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.4124616,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",0.7671499,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.493531,\r\n\"PRT\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.385597,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.756746,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.942308,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.531394,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.529344,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.9824296,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.225995,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.883861,\r\n\"SVK\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.498023,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.6022679,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.6582605,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.5030371,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.7187424,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.5931606,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.559851,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.397224,\r\n\"ESP\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.81176,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.9915571,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.111606,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.5734788,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.3197767,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.542149,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.799632,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.981402,\r\n\"SWE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.318826,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-0.1261417,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-1.220927,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.8620005,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.6896046,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.4310983,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",0.49446,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",0.8342547,\r\n\"CHE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",1.435084,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",12.12581,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",11.65203,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",11.76091,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",13.50983,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",15.59347,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",17.08753,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",19.26423,\r\n\"TUR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",25.84839,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.7,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.8,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.8,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.8,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.9,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.1,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.7,\r\n\"GBR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.4,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.118652,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.3642956,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.222386,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.239488,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.898514,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.848945,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.335693,\r\n\"USA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.689106,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.831513,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.136361,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",2.626523,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.250595,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",5.285479,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.720136,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",9.642137,\r\n\"BRA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",10.48824,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.698689,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.932427,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",2.678107,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.883996,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.948951,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.592073,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.887313,\r\n\"CHL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.632462,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",4.956629,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.72193,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.958384,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.120048,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.1089662,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.268126,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.000762,\r\n\"CHN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",1.782459,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.488991,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-1.151213,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.9444187,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-1.132661,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.655533,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.084671,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.548609,\r\n\"EST\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",9.337728,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",6.608884,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",5.201698,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",5.530673,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.952394,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",4.435952,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.325812,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.824363,\r\n\"IND\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.969291,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.921555,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.11416,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.200565,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.469645,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.431666,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.477457,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.569749,\r\n\"IDN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",1.760552,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",0.1332889,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-1.089468,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.6960557,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.6955945,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.06655574,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.335114,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.202937,\r\n\"ISR\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.501668,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.427432,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",3.112306,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.535463,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.438831,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",5.548501,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",6.016016,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",6.856453,\r\n\"RUS\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",8.311345,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.503589,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.9205074,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.06643047,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.7018431,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.5351852,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.870889,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.168339,\r\n\"SVN\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.161228,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",4.321683,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.32816,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",3.03918,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",3.17171,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",3.097983,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.947635,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.939588,\r\n\"ZAF\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.441696,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.132015,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.8676671,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.210148,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.187024,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.91654,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.74171,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.401721,\r\n\"OECD\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.86934,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.354158,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",1.447821,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.235008,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.364484,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.332466,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.352535,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.353547,\r\n\"OECDE\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.354013,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.70821,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.3318911,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.6782046,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.6413606,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.378897,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.352296,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.008748,\r\n\"G-7\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.227496,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.732994,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.848354,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.938496,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.615969,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.555435,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.957476,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.307304,\r\n\"COL\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.155358,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.941713,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-0.4235514,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.0006892101,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.6141456,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.1234037,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.327995,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.793282,\r\n\"LVA\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.140482,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.145143,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.9603555,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",6.010391,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",5.629128,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",5.306026,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.697166,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",0.4452417,\r\n\"SAU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",1.06134,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.114045,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.2217155,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",-0.03489405,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.2785339,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.05719,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.829846,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.830578,\r\n\"EA19\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.630864,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",50.43414,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",43.8875,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",39.79948,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",36.37781,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",40.6471,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",48.46569,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",51.89367,\r\n\"ARG\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",51.39849,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.501036,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.7760175,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",1.017205,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.5270131,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.8332189,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.235482,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.414587,\r\n\"LTU\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",9.253412,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.760079,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.6033264,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.02117056,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.5296397,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.6149967,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.486468,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.750066,\r\n\"CRI\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.050039,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",3.783855,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",2.35604,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",2.525919,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.137543,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",2.618424,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.203518,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.548521,\r\n\"G-20\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.743986,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.487359,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",0.6039144,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",0.4619961,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.2114565,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.380096,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.178012,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.089958,\r\n\"EU27_2020\",\"CPI\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.938272,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141555209.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:54 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_debt.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_debt.yaml new file mode 100644 index 000000000000..fa20226879c1 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_debt.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGDEBT.TOT.PC_GDP.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",92.03627,\r\n\"AUS\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",83.73977,\r\n\"AUT\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",107.084,\r\n\"AUT\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",101.1389,\r\n\"BEL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",139.7873,\r\n\"BEL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",129.1714,\r\n\"CAN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",146.0698,\r\n\"CAN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",134.0756,\r\n\"CZE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.98997,\r\n\"CZE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",48.39663,\r\n\"DNK\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",58.34686,\r\n\"DNK\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",50.30406,\r\n\"FIN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",87.1865,\r\n\"FIN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",82.34475,\r\n\"FRA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",145.6395,\r\n\"FRA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",137.7307,\r\n\"DEU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",78.37959,\r\n\"DEU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",77.44357,\r\n\"GRC\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",236.7442,\r\n\"GRC\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",224.293,\r\n\"HUN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",97.1219,\r\n\"HUN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",88.8319,\r\n\"IRL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",71.77652,\r\n\"IRL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",65.28168,\r\n\"ITA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",183.1265,\r\n\"ITA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",172.5164,\r\n\"JPN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",257.0157,\r\n\"JPN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",256.0379,\r\n\"KOR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",58.87553,\r\n\"KOR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",59.64111,\r\n\"LUX\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",32.02375,\r\n\"LUX\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",30.95047,\r\n\"MEX\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",58.552,\r\n\"MEX\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",54.46469,\r\n\"NLD\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",70.17966,\r\n\"NLD\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",66.29334,\r\n\"NOR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",53.72802,\r\n\"NOR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.67981,\r\n\"POL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",77.51134,\r\n\"POL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",68.25085,\r\n\"PRT\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",157.071,\r\n\"PRT\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",143.4006,\r\n\"SVK\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",77.69492,\r\n\"SVK\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",79.84526,\r\n\"ESP\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",148.1147,\r\n\"ESP\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",142.6613,\r\n\"SWE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",62.7906,\r\n\"SWE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",58.70519,\r\n\"CHE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",43.66068,\r\n\"CHE\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.10917,\r\n\"TUR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",42.88387,\r\n\"TUR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",43.58462,\r\n\"GBR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",151.1714,\r\n\"GBR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",119.6295,\r\n\"USA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",160.3383,\r\n\"USA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",148.0194,\r\n\"CHL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",44.26263,\r\n\"CHL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.47789,\r\n\"EST\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",24.77591,\r\n\"EST\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",24.33048,\r\n\"ISR\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",86.41267,\r\n\"SVN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",100.5367,\r\n\"SVN\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",89.88457,\r\n\"LVA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",53.77295,\r\n\"LVA\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",57.0099,\r\n\"LTU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",55.53088,\r\n\"LTU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",50.82867,\r\n\"NZL\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",52.76,\r\n\"ROU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",59.33,\r\n\"ROU\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",57.58,\r\n\"RUS\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",28.92,\r\n\"OAVG\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",94.82,\r\n\"OAVG\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",90.43,\r\n\"OECD\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",130.05,\r\n\"OECD\",\"GGDEBT\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",124.35,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141553178.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:52 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_fgdp.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_fgdp.yaml new file mode 100644 index 000000000000..4a3d9424b297 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_fgdp.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.REALGDPFORECAST.TOT.AGRWTH.Q/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-6.22941376046926,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-35.3442805261767,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",43.4274004886382,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.0034834639886,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",3.23872807358525,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.06662403815911,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",4.88003681931609,\r\n\"OECD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.41418988573397,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-21.5264892859458,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-40.3062020498179,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",71.7363518118242,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-3.25853452889562,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",1.06124925542943,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",10.3399274995284,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",11.8086675701747,\r\n\"ITA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.42894121859846,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-1.04003009420477,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-25.1690112869036,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",14.5886904325609,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",14.4183073892544,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",8.07199066639297,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.43783527931567,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",-7.02344406453502,\r\n\"AUS\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",16.2340867278049,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-9.87486015610207,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-37.9423848474858,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",53.0841542773139,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-7.36167309735571,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-4.04497072042551,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",17.7950365949336,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",17.8391510133497,\r\n\"AUT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",-5.01907281994945,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-8.35396749824822,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-37.3776227888085,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",41.0750818731529,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",9.06232614203013,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",4.44400949928597,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",-3.13075289989114,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",5.33479715083745,\r\n\"CAN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.56605086723929,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-12.3530416131029,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-30.9679587210328,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",30.8504657666298,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.6408479828209,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-2.04711144474834,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.74805561375083,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",6.97047840545629,\r\n\"CZE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.43060168106926,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-0.899713122216442,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-22.9657245781948,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",25.1775228883916,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",0.38098823436699,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",4.32537560420408,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.7364524068932,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.13701741388445,\r\n\"DNK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",11.2913598502074,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-0.451972749679942,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-22.4693764158891,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",21.0494424263566,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",3.05964216546445,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.890012425555493,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",6.45801368448971,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.79938591476172,\r\n\"FIN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.8199571158532,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-20.4292256864798,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-44.0763592401921,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",96.1986461632792,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-3.48600959930642,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.270286916680842,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",4.27840619070338,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",13.9874078368804,\r\n\"FRA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.2561224469156,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-5.57075419083824,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-32.8638507509185,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",41.1824827426716,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.50915594681332,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-5.74414532203929,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.94063918067349,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.17813736887946,\r\n\"DEU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",-0.112572888014507,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-9.35574565250951,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-42.590133672197,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",22.2796194940495,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",17.4406678303442,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",14.2353518316687,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",6.94938968966026,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",10.3384579512489,\r\n\"GRC\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.91597953364503,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-23.9716386536681,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-23.6625574413166,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",11.3268226811764,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",22.5823467130666,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-14.4954421765608,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",20.5824243608944,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.76420262055613,\r\n\"ISL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",13.3167852005516,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",11.0348554174994,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-20.3510117662099,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",64.6094651429715,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-18.9033401492232,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",41.2885927827687,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",8.01320318569805,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",18.9664981120624,\r\n\"IRL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",-7.21079062799031,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.33053324552712,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-28.0905314914596,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",23.008168881942,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",6.74375985197828,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-1.39042035301093,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",1.90232608811978,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",-2.57926579766692,\r\n\"JPN\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.03058625346451,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-5.24344937126438,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-11.5690122055353,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",9.7270748390287,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.94407907806672,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",7.07667211576122,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.37529181985047,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",0.855688063316512,\r\n\"KOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.45944245353998,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-4.80561457943091,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-20.6764757929584,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",37.6636772964208,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-1.14918013524589,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",8.12390791493279,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.39994223779752,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",-1.07003381202759,\r\n\"LUX\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.05847208483171,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-5.78751443677133,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-28.061379346631,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",27.8481599027935,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.0696545542905817,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",0.0196003168129666,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",15.730164724362,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",7.30492634305871,\r\n\"NLD\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.4416727641363,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-3.93830234412326,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-32.9305226805161,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",70.7206078937887,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-3.95259586477219,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",6.54356882307554,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",8.31699448160562,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",-17.3819859060583,\r\n\"NZL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",11.5680430965557,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-4.15199320208284,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-16.9925693360264,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",19.3065823518784,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",2.85410334065064,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.425907156290976,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",2.14392699928891,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",16.6058500356442,\r\n\"NOR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",0.40437492424104,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-16.3164244771185,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-48.0923008463958,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",72.4076674008469,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.49051237992203,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-9.8918792277528,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",18.9087079243405,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",11.6007113337122,\r\n\"PRT\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.98339459618885,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-20.2076043469009,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-54.4034167050328,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",85.0799050913409,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.235691745231547,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.911520826584178,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.51952215273131,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",13.0245083205252,\r\n\"ESP\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",9.37373223819343,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-0.116380377582282,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-28.5437688185389,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",32.6811708895185,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-0.797937622790744,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",6.87077202837127,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",3.66931362698564,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",6.67900272337635,\r\n\"SWE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",5.43025266979561,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-5.88778198325169,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-25.3465765156984,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",32.6345577515765,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.07833840350477,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.484976049285211,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",8.20671854795886,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",7.37995706500059,\r\n\"CHE\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",0.433955830638422,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-10.1521934895539,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-61.0329016466148,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",84.8938807331246,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",4.94465199162265,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-4.59504543855939,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",28.8452404493373,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",7.25294750470894,\r\n\"GBR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.64488987955428,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-4.61840480160517,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-29.8574197741433,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",35.3171391372906,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",3.90887822555523,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",6.31545495620863,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.00489594009191,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.652766290028,\r\n\"USA\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",6.95725734423304,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",9.53594717966967,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-42.5143420559075,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",23.0975905330767,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",29.6061211848239,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",15.8913128888491,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",5.57977138028457,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",18.9740853237474,\r\n\"CHL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.13972761898631,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",2.89521663490649,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-24.4071761807694,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",20.5151899133403,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",11.1728742257727,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",10.7939932252437,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",11.7619455201345,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",3.14743152723906,\r\n\"EST\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",3.34702834439414,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-4.43401762540953,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-30.6916231549919,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",39.644725587327,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",9.28621140680642,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.569842113729416,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",16.2611557404318,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",7.11223429906631,\r\n\"ISR\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",19.7099382584089,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",1.82866470382366,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-19.7991179999772,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",15.6648387923539,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",7.39355309283199,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",9.14040933876511,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",6.70699036406626,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",2.97846557817501,\r\n\"LTU\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",4.54210429158979,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-11.0030911808905,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-38.3720957057672,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",55.8471618245,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-2.0923362824604,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",5.57087744183617,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.08953487195905,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",9.62273442125741,\r\n\"BEL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.299939745973,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-10.6424581906267,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-26.4911768772972,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",42.2351028211611,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",1.76608922804081,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-5.65860433449014,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",7.85196226787945,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",1.56651409168487,\r\n\"SVK\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",1.13470777440229,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-12.8167840236482,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-38.4625780499408,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",59.703728237265,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",-1.13632552810928,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",-0.26869993447979,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",8.19393400151065,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",9.32561271600497,\r\n\"EA17\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",2.04947471617798,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-7.95944559602241,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-50.1911632989783,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",51.6701186462832,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",24.2844850264315,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",13.8208480699833,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",-9.21102167651865,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",30.4048468773762,\r\n\"COL\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",10.7736594211686,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q1\",-4.49249827622074,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q2\",-28.5924342141701,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q3\",5.13343716167356,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2020-Q4\",15.3882985752844,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q1\",10.8100073546402,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q2\",8.23189457207837,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q3\",15.7096332728418,\r\n\"CRI\",\"REALGDPFORECAST\",\"TOT\",\"AGRWTH\",\"Q\",\"2021-Q4\",7.07389699525852,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141552662.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:52 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_gdp.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_gdp.yaml new file mode 100644 index 000000000000..9db6e834e459 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_gdp.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GDP.TOT.USD_CAP.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",55690.9186,\r\n\"AUS\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",61977.196179,\r\n\"AUT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",57253.300563,\r\n\"AUT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",59976.264665,\r\n\"BEL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",54539.032525,\"P\"\r\n\"BEL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",58806.119249,\"P\"\r\n\"CAN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",47265.698235,\r\n\"CAN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",53101.315002,\r\n\"CZE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",42813.74134,\r\n\"CZE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",44801.666875,\r\n\"DNK\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",60840.940164,\r\n\"DNK\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",64897.769113,\r\n\"FIN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",52289.303157,\r\n\"FIN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",54687.859802,\r\n\"FRA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",47823.919578,\r\n\"FRA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",50998.933198,\"P\"\r\n\"DEU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",56476.934309,\"P\"\r\n\"DEU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",58784.138861,\"P\"\r\n\"GRC\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",28413.784684,\"P\"\r\n\"GRC\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",31289.247761,\"P\"\r\n\"HUN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",34156.840044,\r\n\"HUN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",36677.803167,\"P\"\r\n\"ISL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",54649.872164,\r\n\"ISL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",58297.114413,\r\n\"IRL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",94028.901163,\r\n\"IRL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",106852.122229,\r\n\"ITA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",43140.246576,\r\n\"ITA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",46674.614118,\r\n\"JPN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",41770.933602,\r\n\"JPN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",42782.469082,\r\n\"KOR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",44698.282816,\r\n\"KOR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",46888.679035,\"P\"\r\n\"LUX\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",119871.429414,\r\n\"LUX\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",131277.948732,\"P\"\r\n\"MEX\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",18466.909979,\"P\"\r\n\"MEX\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",19445.00585,\"P\"\r\n\"NLD\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",59815.501543,\"P\"\r\n\"NLD\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",63418.747204,\"P\"\r\n\"NZL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",45414.702452,\r\n\"NZL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",47045.373087,\"E\"\r\n\"NOR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",65129.643836,\r\n\"NOR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",81850.933065,\r\n\"POL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",34893.459765,\r\n\"POL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",37710.71133,\r\n\"PRT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",34952.243057,\r\n\"PRT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",36760.996583,\"P\"\r\n\"SVK\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",32898.852987,\r\n\"SVK\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",33941.41438,\r\n\"ESP\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",37992.368883,\"P\"\r\n\"ESP\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",40724.034713,\"P\"\r\n\"SWE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",56135.141361,\r\n\"SWE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",60111.612638,\r\n\"CHE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",70804.014012,\r\n\"CHE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",75950.570423,\r\n\"TUR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",27971.203588,\r\n\"TUR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",30671.746024,\r\n\"GBR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",45867.757803,\r\n\"GBR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",49765.080563,\r\n\"USA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",63480.861222,\r\n\"USA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",70181.12175,\r\n\"CHL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",24606.968439,\r\n\"CHL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",28105.05092,\r\n\"CHN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",17176.865661,\r\n\"CHN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",19334.953602,\r\n\"COL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",15650.441829,\"P\"\r\n\"COL\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",17436.951542,\"E\"\r\n\"EST\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",39456.812096,\r\n\"EST\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",43494.06995,\r\n\"ISR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",40223.17989,\r\n\"ISR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",44060.518619,\r\n\"RUS\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",29819.046969,\"E\"\r\n\"SVN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",40860.470781,\r\n\"SVN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",43970.371468,\r\n\"ZAF\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",12293.489021,\r\n\"OECD\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",45359.343025,\"P\"\r\n\"OECD\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",49021.954326,\"E\"\r\n\"OECDE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",44618.19283,\"P\"\r\n\"OECDE\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",47872.813415,\"P\"\r\n\"LVA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",33008.225642,\r\n\"LVA\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",35037.056459,\r\n\"LTU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",40124.47344,\r\n\"LTU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",43688.013736,\r\n\"SAU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",46378.343249,\r\n\"EA19\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",48238.265758,\r\n\"EA19\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",51333.028282,\r\n\"ARG\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",20769.015441,\r\n\"ARG\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",23627.366959,\r\n\"CRI\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",21763.124576,\r\n\"CRI\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",22700.254928,\"E\"\r\n\"BGR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",25167.305528,\r\n\"BGR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",26793.309833,\"P\"\r\n\"HRV\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",29690.20613,\r\n\"HRV\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",34022.550299,\"P\"\r\n\"CYP\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",40897.780537,\"P\"\r\n\"CYP\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",43317.904519,\"P\"\r\n\"MLT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",44509.304787,\r\n\"MLT\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",48726.138109,\r\n\"ROU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",33080.128126,\"P\"\r\n\"ROU\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",35946.765464,\"P\"\r\n\"ZMB\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",3358.004891,\r\n\"HKG\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",58988.697181,\"E\"\r\n\"HKG\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",66159.314319,\"E\"\r\n\"MDG\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",1540.394877,\"E\"\r\n\"MAR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",8051.435771,\"E\"\r\n\"MAR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",9073.558801,\"E\"\r\n\"SGP\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",98148.67364,\r\n\"EU27_2020\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",45843.543522,\r\n\"EU27_2020\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",48924.776134,\r\n\"ALB\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",14033.967211,\"P\"\r\n\"SRB\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",19547.72567,\r\n\"SRB\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2021\",21588.39529,\"P\"\r\n\"GEO\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",14731.202573,\r\n\"CMR\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",3867.183996,\r\n\"SEN\",\"GDP\",\"TOT\",\"USD_CAP\",\"A\",\"2020\",3513.149951,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141550584.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:50 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_qgdp.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_qgdp.yaml new file mode 100644 index 000000000000..40679b80b880 --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_qgdp.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.QGDP.../OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.349879941,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.690301717,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-0.551002495,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.013466342,\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.220669794,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.435831326,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.480089589,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.129545468,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.174503908,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.156264055,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.849972384,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.192414352,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-11.325280203,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.519495248,\"P\"\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-1.994598117,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.855696527,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.337455717,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-3.026935758,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",2.347785538,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.213742846,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.724067239,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.833347929,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.213238983,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.33777574,\"P\"\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.2805,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-21.92439,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.82416,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",1.01893,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.28373,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",22.07702,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.90716,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.43889,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",4.369336537,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.630150609,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",5.615139371,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",5.32341674,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",7.520444916,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",22.355880781,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.670948119,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",9.198787073,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.27863911,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",2.144567584,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-1.278151445,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.898369962,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.867156226,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.452376954,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.438442068,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.159279376,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.528712799,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.145126764,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.785048256,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.667550228,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.445082612,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.104964766,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.718132116,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.274791984,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.425459941,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.353774335,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.455504321,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",2.357144864,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.168598931,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.698536857,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.876566221,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",3.218108013,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.095771949,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.761315198,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-1.955563734,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",3.658784146,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.462892348,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.782890147,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.216009106,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.596123382,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.887117389,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.133409698,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.770834769,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.472666594,\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.361596289,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.133910412,\"P\"\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-6.052123546,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.668670574,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.140361555,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.874924009,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-2.38689818,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",3.418195593,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.642689582,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",3.511719095,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.640828448,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-20.991372606,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",16.608614293,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.213880983,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-1.052939341,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",6.52844295,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.733513287,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.525013404,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.547263823,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",7.117315315,\"P\"\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.851093996,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.081925802,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.006000427,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.383469892,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.935971772,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.418042212,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.461669741,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",2.127968541,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",3.076492738,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.251133881,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.710189039,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.229941366,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.452626922,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.023538629,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",7.120280988,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.739209755,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.716076379,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.730633713,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",4.671274198,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.707695042,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.859526236,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.657105027,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.593041205,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.415665546,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.426986992,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.116889166,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.705443025,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.367204563,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.6876156,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.038325768,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.689358592,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",3.0059592,\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-5.48725517,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-17.826255917,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",16.637933629,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.058975087,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.228663315,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.352205559,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.108188446,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.26529089,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-0.709409962,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.145312857,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.653834271,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-18.78425028,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-8.350460098,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.952526351,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.585993737,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.304877601,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.305854687,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.145930463,\"P\"\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.418271128,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-7.943970553,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.628609989,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.881870431,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.165087422,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.347472292,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-0.358150705,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.110855207,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-6.4539695,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.556852833,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.467293746,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-12.211942682,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.651911857,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.937785714,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.471026779,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.133964192,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.330050305,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.861233437,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.630777897,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-10.323705116,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.442485755,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.048166937,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.857296978,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.71007989,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.180031541,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.403655826,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.190331248,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.046313055,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.047839268,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.376090646,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.299131364,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.439743907,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.203601418,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",10.471966564,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.255304937,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-5.467467939,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",4.326985049,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.429312099,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.611004919,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.304549026,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.311582511,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.650870801,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.065511829,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.703055357,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.628566634,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-14.363494977,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",11.869261972,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.595091332,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.048661394,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.283218903,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.536038724,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.425776499,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.128337649,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-10.928273391,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.017921364,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.130500855,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.308902555,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",-0.588596311,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.430867107,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.671567869,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.374681766,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.014302861,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-4.266027871,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-14.975655896,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",11.893161342,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",4.53939723,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",3.452561206,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",-0.787434564,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.862045315,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.961825186,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.354975414,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.046495861,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.047701296,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.411364052,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.211159497,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.460028645,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.093138944,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.627390661,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.94631834,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.785373772,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-5.147899654,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-18.591307669,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.612532609,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.248052716,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.470961133,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.659794291,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.550116729,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.110955914,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-4.750814696,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-9.736607524,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",12.975616642,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-1.262466085,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.722026132,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.985756447,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.885785586,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",3.385208508,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.235003307,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.265812846,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",4.895755771,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.814551908,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.112658206,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.43801216,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.912075885,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.936542368,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.525823925,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.291001922,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.419208751,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.444607267,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.022883238,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.445091127,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.880456791,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.24942773,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",1.940032222,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",11.353496402,\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-9.004043787,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.434425502,\"P\"\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.209520295,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-8.712336509,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",7.951020086,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",3.370351143,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.049073357,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",-0.303263951,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.310800531,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.061030288,\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.479569596,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-7.898193754,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",6.348572441,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.060463078,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.019217218,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",3.745701057,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.811962365,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.500202925,\"P\"\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-1.448392581,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.053576598,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.175154201,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-8.484336154,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",7.854483117,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.963213279,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.542791999,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.707015905,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.656694491,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.69569402,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.581598301,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.780250957,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.209852565,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.62867818,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.875826803,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.028685895,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.992497499,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.620944107,\"P\"\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.773327914,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-7.406259636,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.207535508,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.438957025,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-1.442751033,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.913593264,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.338659369,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.353785599,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-9.943235134,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",10.398249469,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.513294044,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.007477875,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.714175678,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.137847324,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.341424522,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.429486458,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.087757253,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.755158519,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.004813519,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.261168037,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.51990586,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.635934321,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.953112943,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.712697904,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",2.038467821,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.088696685,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.321370438,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.211061724,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.605141744,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.032287087,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.467576233,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.299478987,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.432061294,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.569583717,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.830445643,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.976387586,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.732323499,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.112500753,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.424815486,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.28470992,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.006066413,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.345858406,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.401720494,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-6.9,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",3.1,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",4.8,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",6.4,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",18.7,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",8.3,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.2,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.3,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-11.030858472,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",7.597470975,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-6.275887791,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.767228295,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.105800402,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.998601633,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.24563213,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",16.764754437,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.16549925,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.873576609,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-1.856707716,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.239895051,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.594454617,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-14.222786731,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.84860189,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.106392351,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.498502315,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.173168444,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",17.232039261,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",11.766218502,\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.037586503,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-12.792852773,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.266432648,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.353963758,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.181904605,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.604504328,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.954755309,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.112560221,\"P\"\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",7.587362096,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-0.063023758,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",10.816743646,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",4.218397825,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",10.76372508,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.564765296,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",9.915884675,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",13.951442341,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.767955735,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.946623325,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-6.01143,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.93384,\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.991744942,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-17.765385862,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",13.083826987,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",4.318031468,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.416912719,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.714373124,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-1.133084729,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.157738351,\"P\"\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.79469798,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.886718931,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.034554452,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.518241561,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.096159639,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.812062282,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.701549071,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",0.931898472,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",6.184537758,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",13.588246804,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.202985418,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.064019942,\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.872160024,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-11.39783177,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",11.731267216,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.527239151,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.364535083,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.727122043,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.32344601,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.57009132,\"P\"\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-6.342471122,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.913096667,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.92721011,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.853941112,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.952087905,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.930410205,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",4.130253528,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.623391351,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",-0.111390423,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.316480988,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.218770045,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-8.760464937,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",8.863303699,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.303684308,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.310395383,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",3.975902064,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.039394093,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",4.448364418,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.963017842,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-22.627407624,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.324677638,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-9.213327419,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-7.732633139,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",24.405387754,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.535696482,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.869336232,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.502967961,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.552722062,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.726528694,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.375875838,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.48473417,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.821325578,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.288862858,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.000517433,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.828070461,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.557814739,\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.692121012,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",2.624436468,\"P\"\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.020113167,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.84778488,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.37556323,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.221716561,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.51983281,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-10.371752592,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",15.649317805,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.084647787,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.616659059,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.994956988,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.714482826,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.575638393,\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.884818142,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.863552785,\"P\"\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.350497326,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-4.697399086,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-0.538748007,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.987662143,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.136891917,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.517815839,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",9.094901287,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.660334612,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.838527923,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-19.718734014,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.316963002,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.787733179,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.888793203,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",20.058099075,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",11.440945783,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.693205945,\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-7.98791233,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.720565286,\"P\"\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.1068,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-22.56279,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",22.58889,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",6.30126,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.36017,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",-7.57764,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",9.36381,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.9399,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.870005137,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.57279588,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.308290805,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.474718801,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.317485051,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.492631488,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.311138266,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.364214314,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.508265648,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-2.596707233,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-0.832931497,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.889112426,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.186322733,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",6.254134737,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.038118083,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.165612121,\"P\"\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.989999942,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.345552652,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.807801985,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.223143581,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.578633714,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",6.54360415,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.506627514,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.696893973,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.524137872,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.942597429,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.760761994,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.861892721,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.674429109,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.196587551,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.023433336,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",-0.184364844,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-1.77538501,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.538596026,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-3.242594973,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-8.848739463,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",6.953208665,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.140550376,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.495155357,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.389823598,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.697764004,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.849939884,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.087754069,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.862233095,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-7.042936885,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.963664331,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-3.334001264,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.113262245,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.596420266,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.256251389,\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.673702928,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-21.937066645,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.216818083,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-9.466967619,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.429802869,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.875245592,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.201974928,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.625335158,\"P\"\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.341387675,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",3.921724115,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.740482537,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-9.20559796,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",6.761717909,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.121471225,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.571794875,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.173567115,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.088769567,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.634625676,\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.422765492,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-9.481133512,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.004694909,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.621471543,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-1.468048603,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.928643933,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.785236875,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",-0.02815511,\"P\"\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.655186031,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.944950312,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.350092263,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.405581464,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.000447045,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.233900409,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.109026297,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",3.276353595,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.233812646,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-5.559299793,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",8.290337456,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.368679044,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.021735062,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.581737437,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-0.194103088,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.633183727,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-7.241872042,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.333402029,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.000695682,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-17.094183366,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",13.764967337,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.696950399,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.822924303,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.387912495,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-1.801676582,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.369403562,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.196323318,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-4.485002074,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",2.7780786,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.739743224,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.680789326,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",3.190933741,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-0.794505895,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-4.355487705,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-15.119496961,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",14.588001222,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.370563245,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-2.559961929,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",4.426176806,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.802832825,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.927323082,\"P\"\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.170229449,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.385848879,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",2.2,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",8.1,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.074357536,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.011800879,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-5.780682539,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-12.071695945,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",14.251541927,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.687573353,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.478026943,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.417697538,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.901945924,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.925439552,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.459992972,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-11.431778628,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",11.353646415,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-1.738626805,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-1.265851186,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",4.128453288,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",4.244865631,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",-0.756046042,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",2.678829838,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-5.588505324,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",12.880212689,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-4.759692389,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",9.127466138,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.91322289,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.77077569,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",-1.262947995,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.505430657,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-7.055715635,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",7.270475534,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.345350051,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.139170746,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.98738369,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.711542445,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.189981019,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-7.784648809,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.816280414,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.951273678,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.2767588,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",4.988849717,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.052631579,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-10.136491369,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",14.144086871,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.555446841,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.084342456,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.370961285,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",-3.883256083,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.857185913,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-10.1,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",11.6,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.2,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.4,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.8,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.4,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.4,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.3,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-0.797560166,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.102428973,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",2.241782344,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-12.951958514,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.451150931,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",6.665278172,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",3.663587692,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.348715839,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",4.611339688,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.692121555,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-8.300516889,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.50275827,\"P\"\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.443408462,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.645349645,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.086844712,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.108867458,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.987594005,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.15003723,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.080745342,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.205478005,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-8.979117055,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.986517993,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.227145585,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-8.068459658,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",7.307984119,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.15176981,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.503150233,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.843160841,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.786602156,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.124998357,\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.287110928,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.54559782,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.120136972,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.558613548,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.091455135,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.286551812,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.581955683,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.174275949,\"P\"\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.689774476,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.202747233,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.246619905,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.282739444,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.650309531,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.467695775,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.617352227,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.489101559,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-5.582248653,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-13.574172362,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",18.423649127,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.914073346,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.057077156,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.066066729,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.344041374,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.579475884,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.820082981,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.350640156,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.024010121,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.516619933,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.19193505,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.460854406,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.955654481,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.717100091,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.978224062,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",11.668224702,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.47213377,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.765139835,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.826653854,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.131368275,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.133847069,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.299886093,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.107120071,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.551591724,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.375453249,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.572299085,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.707854968,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.09529401,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.422093982,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.723489281,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.388246237,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",10.348976518,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.761219712,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.307248625,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.192928445,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.253468578,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.097908045,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.173079163,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.225790055,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.139951401,\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.882491837,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-13.358366043,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.290651885,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",4.06374153,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",3.284195388,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.296258402,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.239217484,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.525233215,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.551575744,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-15.592397122,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.758819759,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.854389142,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.94951287,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.6348127,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",12.401320988,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.579307642,\"P\"\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.608791,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.178214,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.592294,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.306955,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-2.98412,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",6.3,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.592139,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-12.170916,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",12.335271,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.178129,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.235631,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.476846,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.205811,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.94421,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.565265671,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.998653582,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.686814223,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.723251546,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.928317382,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.594438662,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.17109311,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.975356125,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.803243,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-10.195969,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.493696,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.855263,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.607641,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.805181,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.010322,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.283633,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.938758301,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.462791017,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.593879987,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.617557675,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.226666497,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.106752304,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.343444974,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.78663033,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-3.16325,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-6.22122,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",7.9128,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.67119,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.81356,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.53526,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.88934,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.4,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.47381,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.44766,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.71862,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.36415,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.72762,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.30697,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.99752,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.7,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-7.252299074,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",11.016193253,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.100536723,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-16.083750345,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",9.57457238,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",7.312215358,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",3.765342631,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",-2.784369655,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",4.631918268,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",5.351605222,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.140255349,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-16.643540048,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.095781516,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.398176996,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.389951153,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.617117463,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",13.266575174,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",11.197177998,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-6.091809,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.335812,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-3.361388,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-11.464211,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",12.363239,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.257669,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-0.035988,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.967983,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.279179,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.556224,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.830501143,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-14.23533105,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.840982005,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.110001652,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.810361822,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.238179624,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.985852983,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.834372011,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-0.021762516,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.981033609,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.304913805,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-5.2598093,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",6.067886194,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",0.27864302,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",1.763466513,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.494932583,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.519911438,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.265738835,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.589449599,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-4.136625013,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.468018663,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.461664649,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.545949219,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.857222429,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.146768659,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.181784015,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.949058678,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-4.957660407,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",1.359321523,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",2.216717829,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",-1.535258578,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.771834299,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",4.266683362,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.382212793,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.515352973,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.388541885,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.007193624,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.434200582,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-3.042035447,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",3.823095525,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.801127554,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.974044951,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",108.198049469,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",113.867513708,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.444457193,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",106.067131815,\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.357328156,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",107.574495862,\"P\"\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",103.451396693,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",108.636174702,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",108.371229335,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",112.221357908,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",107.696551638,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",112.925969356,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",106.05861343,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",109.289684699,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",98.930524262,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",105.673906211,\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",103.164999758,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",105.872499634,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",94.822661666,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",102.820408424,\"P\"\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",112.382124267,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",120.380714408,\"P\"\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",109.71030576,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",114.464494375,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",135.109779623,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",153.468829934,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",95.060793606,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",101.702233056,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",98.292692627,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",100.40064585,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",110.946970254,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",115.546069276,\"P\"\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",109.276694366,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",114.852460079,\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",98.348414253,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",102.991015355,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",105.490715579,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",110.621312215,\"P\"\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",115.405752132,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",121.889440812,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",104.340016596,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",108.407576461,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",117.364242707,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",125.401093574,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",102.262398858,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",107.889651468,\"P\"\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",108.142383361,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",111.402122316,\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",98.146074868,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",103.563242806,\"P\"\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",106.490786607,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",112.226219444,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",105.077453918,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",109.513526192,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",117.5170759,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",130.859372883,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",96.223608967,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",103.534169729,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",106.433746431,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",112.762960422,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",86.528905431,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",95.52639688,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",97.660895935,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",102.533051266,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.615006792,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",113.471674115,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.568674735,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",112.757676229,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",109.194019623,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",117.690185243,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",116.848287415,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",126.211885598,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",121.963114809,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",132.859100377,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",119.376330494,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",123.796902096,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",116.229852878,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",126.154250477,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",110.322375036,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",114.805898358,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",116.295321188,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",123.250983433,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",103.860953415,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.39061685,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",105.366877122,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",111.827083382,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",121.009274223,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",97.117328382,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",101.888796606,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",104.151800098,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",110.078351768,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",103.342089122,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",109.726784154,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",102.729621109,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",108.181435878,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",110.685084071,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",110.920391058,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",103.490347781,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",107.502219646,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",110.961757191,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",113.287262572,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",114.14973572,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",111.917464886,\r\n\"AUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",116.012283348,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.573941595,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",93.504962303,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.121185103,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",102.310906269,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",101.015802449,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",105.186192666,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",109.651205208,\r\n\"AUT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",108.822191611,\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.013426894,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",93.04417316,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",103.959433743,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",103.411318907,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",104.822402634,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",106.632813456,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",109.110369306,\"P\"\r\n\"BEL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",109.73239805,\"P\"\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",107.384677007,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",95.649385924,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.274972332,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",106.496551509,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",107.890487592,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",107.255448162,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",108.79013109,\r\n\"CAN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",110.608631965,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",111.980901885,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",102.072003629,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",109.169283029,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",110.414413698,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",109.867690814,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",111.394657907,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",113.285876311,\r\n\"CZE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",114.248738157,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",109.691109092,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",102.981425524,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",108.856972084,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",109.256699853,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",110.007965965,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",112.250286682,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",113.024093677,\r\n\"DNK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",116.42155182,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",108.448565414,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",101.653381271,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",106.630082551,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",107.498639922,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",107.377533884,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",108.921635878,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",109.915083852,\r\n\"FIN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",110.944485181,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",101.381889019,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",87.62013666,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",103.762963203,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",102.814493613,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",102.873177202,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",103.969873918,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",107.446669518,\r\n\"FRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",108.069297056,\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",106.002573191,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",95.9523277,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.592542068,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.242554953,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",103.697543095,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",105.697499469,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",106.527475211,\"P\"\r\n\"DEU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",106.497482283,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",101.90214231,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",88.289681135,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",92.960780814,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",96.738466671,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",99.915546931,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",101.210710603,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",104.489145636,\"P\"\r\n\"GRC\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",105.037957335,\"P\"\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",118.558651954,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",101.529485936,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",113.5802866,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",115.391995907,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",116.60206722,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",119.264347661,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",121.096294225,\r\n\"HUN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",124.033819672,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",112.921994222,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",105.391598422,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",108.701275661,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",111.826354734,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",109.157173508,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",112.888379203,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",115.871668639,\r\n\"ISL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",119.940756152,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",134.390145023,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",126.879744613,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",143.222125578,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",136.405192968,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",148.855530767,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",151.703468855,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",157.423866379,\r\n\"IRL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",155.435684816,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",97.882883128,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",86.066759094,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",98.332599352,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",97.656490602,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",98.123314938,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",100.495639908,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",103.411969034,\r\n\"ITA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",104.368984296,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",101.179524577,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",93.14185294,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",98.384444578,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",100.235912349,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",100.070435466,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",100.418152502,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",100.058504181,\r\n\"JPN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",101.170009285,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",111.876307433,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",108.489883478,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",111.036993272,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",112.384696835,\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",114.322284575,\"P\"\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",115.274986966,\"P\"\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",115.520798176,\"P\"\r\n\"KOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",117.066207388,\"P\"\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",109.673876134,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",103.576776565,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",112.163640869,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",111.750117029,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",114.009408327,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",114.672643737,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",114.450060595,\r\n\"LUX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",116.31924036,\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.524066379,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",86.777308809,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",98.131101758,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",102.368433611,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",102.795220631,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",103.52956206,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",102.356484402,\"P\"\r\n\"MEX\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",103.541504677,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",108.750149506,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",100.16085199,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",106.519636236,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",106.455231186,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",106.47568892,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",110.463949925,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",112.465515124,\"P\"\r\n\"NLD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",113.028070921,\"P\"\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",116.308656608,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",104.992608968,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",120.586133269,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",119.664584748,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",121.587584842,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",124.382416002,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",119.339645674,\r\n\"NZL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",122.177091795,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.872363411,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",100.083825885,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.414438067,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.906846263,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",105.259750222,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",106.632915269,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",110.164152242,\r\n\"NOR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",110.881178542,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",121.871728123,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",110.652706805,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",118.134730698,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",118.278230403,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",121.32010387,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",123.957077753,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",126.546255468,\r\n\"POL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",128.614813053,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",107.710768989,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",91.425442545,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.762587221,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.150798864,\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",102.458978445,\"P\"\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",106.993993984,\"P\"\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",109.992856769,\"P\"\r\n\"PRT\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",112.112774485,\"P\"\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",109.434726889,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",101.329706884,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",110.659675625,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",111.145424045,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",109.541872291,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",111.638058181,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",112.016130924,\r\n\"SVK\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",112.412427864,\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.022674338,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",86.301063639,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",100.659777329,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",100.600413138,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",100.370376898,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",101.727590714,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",104.889475935,\"P\"\r\n\"ESP\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",107.265527678,\"P\"\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",109.34698667,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",100.524369164,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",107.870674098,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",108.034389215,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",109.658308388,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",110.582904304,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",112.558580856,\r\n\"SWE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",114.95044885,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",106.960565642,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",99.413732288,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",106.641583372,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",107.009870135,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",106.8609437,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",108.984680667,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",110.849999734,\r\n\"CHE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",111.060593693,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",117.94207968,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",105.709418974,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",122.252221899,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",123.578227919,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",126.811848815,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",129.341690654,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",132.852648635,\r\n\"TUR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",134.945925973,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",105.627429521,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",83.454782216,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",97.315465103,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",98.496759028,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",97.459647902,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",103.822245415,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",105.622017834,\r\n\"GBR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",107.232767764,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",109.198128767,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",99.933392448,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",107.782643886,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",108.820820624,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",110.499699538,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",112.385946984,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",113.123979307,\r\n\"USA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",115.042215859,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",91.175237116,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",77.521147344,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",86.740862471,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",90.678374779,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",93.809101169,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",93.070415882,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",96.664837518,\r\n\"ARG\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",98.561232647,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",99.459410288,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",90.794171773,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",98.013234608,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",101.316624781,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",102.379510498,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",102.06903035,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",102.386261439,\r\n\"BRA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",103.472610684,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",107.664153799,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",93.719537264,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",98.828330693,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.415513846,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",109.277503636,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",110.751346636,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",115.858467439,\r\n\"CHL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",117.818933539,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",108.472505257,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",91.026058318,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",99.741414156,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",107.03472116,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",111.064945147,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",107.972486517,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",112.973683844,\r\n\"COL\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",119.019589408,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",114.363836482,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",105.398976748,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",106.559196502,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",110.15386459,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",113.786730424,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",116.216321983,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",119.853621489,\r\n\"CRI\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",120.910468399,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",119.267067667,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",111.239638202,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",116.435946719,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",119.588677075,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",123.008346672,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",126.276807634,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",127.025681136,\r\n\"EST\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",127.553683127,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",131.136438755,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",101.548395475,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",124.487048498,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",132.331306538,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",134.131236544,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",123.967259541,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",135.575314046,\r\n\"IND\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",138.205341618,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",123.159317826,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",114.605964398,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",118.445369944,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",121.294669809,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",122.508158749,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",122.794705833,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",122.928584354,\r\n\"IDN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",126.956159447,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",118.383126805,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",108.01221449,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",117.585665092,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",120.294467608,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",119.921079134,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",124.689023795,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",127.231924381,\r\n\"ISR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",132.891664034,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",112.702189465,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",104.877730157,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",110.919486576,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",112.984688423,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",112.222686796,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",114.687756363,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",115.861509094,\r\n\"LVA\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",115.647901203,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",117.551857109,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",111.368853596,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",118.126588888,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",118.455740383,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",120.544667697,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",122.346729212,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",124.206291143,\r\n\"LTU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",125.778418406,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",106.112583257,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",101.353431697,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.169109693,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",104.939693623,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",105.654111856,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",109.02546456,\r\n\"RUS\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",108.159250817,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",104.095450157,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",98.934751239,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",100.279592606,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",102.502508215,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",100.928829664,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",102.717121286,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",107.09973561,\r\n\"SAU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",109.651079213,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",113.408629064,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",102.366475954,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",115.649157443,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",114.189126053,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",116.155492644,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",118.462057828,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",121.880618818,\r\n\"SVN\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",126.006531895,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",103.8451796,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",86.093694182,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",97.944463065,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",100.585976652,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",101.4137231,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",102.821256834,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",100.968750328,\r\n\"ZAF\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",102.351419991,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",107.605121693,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",96.496286239,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",105.607934322,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",106.714881773,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",107.629745229,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",109.470299858,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",110.762083924,\r\n\"OECD\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",112.316802368,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",107.196151365,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",94.149397325,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",105.762981052,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.951376055,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",106.201030859,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",108.831467341,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",111.232083278,\r\n\"OECDE\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",112.282348094,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",106.055978752,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",95.242544265,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.284582325,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.176490283,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",105.81558538,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",107.72574863,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",108.814125775,\r\n\"G-7\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",110.210900066,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",111.341750828,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",104.367783464,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",112.528919247,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",114.523194329,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",115.406690291,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",117.051296971,\r\n\"G-20\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",118.045131436,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",101.492386616,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",106.907829424,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",104.71635244,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",92.711448956,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",104.173587078,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",103.905164442,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",103.867771098,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",105.91187159,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",108.325793106,\r\n\"EA19\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",108.928326629,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",108.641406345,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",116.935753709,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.958615546,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",7.634609716,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",118.023921128,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",124.956319369,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-3.69189698,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.873723035,\"P\"\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",110.12973401,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",104.803695782,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",108.571514766,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",110.546317573,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",113.586158056,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",115.055335302,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",117.246853757,\r\n\"BGR\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",119.002805293,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-3.787286573,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-4.836149179,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.59512034,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",1.818895878,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.749834233,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.293447434,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",1.9047517,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",1.497653438,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.388351395,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.199280928,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.044303454,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.423346396,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.138502129,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.781753824,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",7.990437464,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.649723579,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",124.135566391,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",112.245577292,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",116.354056691,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",120.428534488,\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",122.873221166,\"P\"\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",125.116184049,\"P\"\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",126.15623308,\"P\"\r\n\"ROU\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",126.919126187,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",0.674789476,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-9.578229226,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",3.660259494,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",3.501792643,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",2.029989561,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.825428569,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",0.831266585,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.6047209,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.692021321,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.945869947,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.095284595,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.331638635,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.01690858,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",11.466471168,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.424438878,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.389579577,\"P\"\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",102.812339053,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",108.38705457,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-5.64956,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",5.422224,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",106.132141588,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",94.37429232,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",105.215013978,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",105.131206891,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",105.35998556,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",107.385341493,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",109.720978015,\r\n\"EU27_2020\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",110.5363016,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-2.933287,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-11.0785,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",11.486944,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",-0.079653,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",0.217613,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",1.92232,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.175005,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.743088,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.23597102,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.39293078,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.696415151,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.848725695,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.727542115,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.78664555,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.282624567,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.141284752,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-4.273354323,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",7.780797564,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-0.703549416,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-7.838893841,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",1.100788442,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",3.373400144,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",3.297992174,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",2.135215196,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",3.129766494,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",0.881781374,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.691943113,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.673056755,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.822308471,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.358859335,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.504622856,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.263235535,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",12.476093499,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",9.765071656,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2020\",104.08941619,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"A\",\"2021\",117.696197975,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2020\",-8.580343013,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"A\",\"2021\",13.07220492,\"P\"\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q1\",112.674927911,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q2\",96.028760376,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q3\",101.571064479,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2020-Q4\",107.570247205,\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q1\",115.271686838,\"P\"\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q2\",115.861376435,\"P\"\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q3\",118.605084718,\"P\"\r\n\"HRV\",\"QGDP\",\"VOLIDX\",\"IDX\",\"Q\",\"2021-Q4\",121.037840941,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q1\",-1.112957492,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q2\",-14.773621642,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q3\",5.771504371,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2020-Q4\",5.906389538,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q1\",7.159451459,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q2\",0.511564993,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q3\",2.368095708,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPP\",\"Q\",\"2021-Q4\",2.051139907,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.698317341,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-15.788898313,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.862547065,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.592985013,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.304646628,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",20.652787749,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",16.770544176,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",12.519812947,\"P\"\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_17032023172447073.csv + Content-Type: + - text/csv + Date: + - Fri, 17 Mar 2023 16:24:47 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_revenue.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_revenue.yaml new file mode 100644 index 000000000000..46ef525c482a --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_revenue.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGREV.TOT.PC_GDP.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",35.0637059169331,\r\n\"AUS\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",35.4575537742562,\r\n\"AUT\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",48.7321964732121,\r\n\"AUT\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",50.0257331878004,\r\n\"BEL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",49.9288100745869,\r\n\"BEL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.9317355999742,\r\n\"CAN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",42.7124548747082,\r\n\"CAN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",42.2933689509718,\r\n\"CZE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",41.4522980817921,\r\n\"CZE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.4140645245147,\r\n\"DNK\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",53.7510051806527,\r\n\"DNK\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",54.4378296614321,\r\n\"FIN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",51.6068862954654,\r\n\"FIN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",52.8860527989822,\r\n\"FRA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",52.5051407311676,\r\n\"FRA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",52.5158444861188,\r\n\"DEU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.0752680278261,\r\n\"DEU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",47.5254251405567,\r\n\"GRC\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",49.75819541352,\r\n\"GRC\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.9959800686265,\r\n\"HUN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",43.5467563874122,\r\n\"HUN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.2747164604819,\r\n\"ISL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",41.915940875437,\r\n\"ISL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.2932637655607,\r\n\"IRL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",22.3127410682518,\r\n\"IRL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",23.1617890085654,\r\n\"ITA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",47.3226468116092,\r\n\"ITA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",48.10559791126,\r\n\"JPN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",37.0039904845716,\r\n\"JPN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",38.1210031029564,\r\n\"KOR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",35.437152340191,\r\n\"KOR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",37.2446900019212,\r\n\"LUX\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",43.3036316658775,\r\n\"LUX\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",43.682796554142,\r\n\"MEX\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",24.2300325301059,\r\n\"MEX\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",23.0464882256924,\r\n\"NLD\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",44.1167313221097,\r\n\"NLD\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",43.9939697976075,\r\n\"NOR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",55.88290402384,\r\n\"NOR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",59.2517121443827,\r\n\"POL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",41.3244886365581,\r\n\"POL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",42.3745440077319,\r\n\"PRT\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",43.4244741039545,\r\n\"PRT\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",44.9112578556301,\r\n\"SVK\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",39.4060163901342,\r\n\"SVK\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",40.8787570079716,\r\n\"ESP\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",41.8225939611213,\r\n\"ESP\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",43.7437543605542,\r\n\"SWE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",49.2987052990371,\r\n\"SWE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.3327218401916,\r\n\"CHE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",35.3933097689237,\r\n\"CHE\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",35.926856737709,\r\n\"TUR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",31.2112139147756,\r\n\"GBR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",39.1216034933736,\r\n\"GBR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",40.5072401845439,\r\n\"USA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",32.4460527336659,\r\n\"USA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",32.8732947571574,\r\n\"EST\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",39.4014450946765,\r\n\"EST\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",39.0463797949942,\r\n\"ISR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",34.6404576463778,\r\n\"ISR\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",37.1720170247333,\r\n\"SVN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",43.4364933110103,\r\n\"SVN\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",44.6204982413969,\r\n\"EA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.4040479934748,\r\n\"EA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",47.2298633595651,\r\n\"EU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.1003362525467,\r\n\"EU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",46.8299844716572,\r\n\"NZL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",38.7892716794094,\r\n\"LVA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",37.8113586350057,\r\n\"LVA\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",36.9885038245897,\r\n\"COL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",41.1541184257033,\r\n\"CRI\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",31.7794333377488,\r\n\"CRI\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",42.0076964914996,\r\n\"LTU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",35.6429156218785,\r\n\"LTU\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",36.5123313093119,\r\n\"CHL\",\"GGREV\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",23.0449802918704,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141556396.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:55 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_rgdp.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_rgdp.yaml new file mode 100644 index 000000000000..12d9bd769b5c --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_rgdp.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.QGDP.TOT.PC_CHGPY.Q/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.220669794,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.435831326,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.480089589,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.129545468,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.174503908,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.156264055,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.849972384,\"P\"\r\n\"DEU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.192414352,\"P\"\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.2805,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-21.92439,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.82416,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",1.01893,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.28373,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",22.07702,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.90716,\r\n\"IND\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.43889,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",4.369336537,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.630150609,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",5.615139371,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",5.32341674,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",7.520444916,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",22.355880781,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.670948119,\r\n\"TUR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",9.198787073,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.867156226,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.452376954,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.438442068,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.159279376,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.528712799,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.145126764,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.785048256,\r\n\"IDN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.667550228,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.445082612,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.104964766,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.718132116,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.274791984,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.425459941,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.353774335,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.455504321,\r\n\"LVA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",2.357144864,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.462892348,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.782890147,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.216009106,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.596123382,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.887117389,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.133409698,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.770834769,\r\n\"CZE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.472666594,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.851093996,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.081925802,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.006000427,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.383469892,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.935971772,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.418042212,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.461669741,\r\n\"BRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",2.127968541,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",3.076492738,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.251133881,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.710189039,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.229941366,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.452626922,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.023538629,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",7.120280988,\r\n\"POL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.739209755,\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.653834271,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-18.78425028,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-8.350460098,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.952526351,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.585993737,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.304877601,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.305854687,\"P\"\r\n\"MEX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.145930463,\"P\"\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.467293746,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-12.211942682,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.651911857,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.937785714,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.471026779,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.133964192,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.330050305,\r\n\"CAN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.861233437,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.190331248,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.046313055,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.047839268,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.376090646,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.299131364,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.439743907,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.203601418,\r\n\"ISR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",10.471966564,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.047701296,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.411364052,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.211159497,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.460028645,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.093138944,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.627390661,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.94631834,\r\n\"CHE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.785373772,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-5.147899654,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-18.591307669,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.612532609,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.248052716,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.470961133,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.659794291,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.550116729,\r\n\"FRA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.110955914,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.525823925,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.291001922,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.419208751,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.444607267,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.022883238,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.445091127,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.880456791,\r\n\"OECD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.24942773,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.581598301,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.780250957,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.209852565,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.62867818,\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.875826803,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.028685895,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.992497499,\"P\"\r\n\"PRT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.620944107,\"P\"\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.513294044,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.007477875,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.714175678,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.137847324,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.341424522,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.429486458,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.087757253,\r\n\"ZAF\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.755158519,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.004813519,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.261168037,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.51990586,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.635934321,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.953112943,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.712697904,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",2.038467821,\r\n\"LUX\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.088696685,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.605141744,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.032287087,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.467576233,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.299478987,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.432061294,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.569583717,\r\n\"RUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.830445643,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.976387586,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.732323499,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.112500753,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.424815486,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.28470992,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.006066413,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.345858406,\r\n\"SWE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.401720494,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-6.9,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",3.1,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",4.8,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",6.4,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",18.7,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",8.3,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.2,\r\n\"CHN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.3,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-6.275887791,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-17.767228295,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.105800402,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.998601633,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.24563213,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",16.764754437,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.16549925,\r\n\"ITA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.873576609,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.594454617,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-14.222786731,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.84860189,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.106392351,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.498502315,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.173168444,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",17.232039261,\r\n\"CHL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",11.766218502,\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.037586503,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-12.792852773,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.266432648,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.353963758,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.181904605,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.604504328,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.954755309,\"P\"\r\n\"BEL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.112560221,\"P\"\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",7.587362096,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-0.063023758,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",10.816743646,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",4.218397825,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",10.76372508,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",19.564765296,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",9.915884675,\r\n\"IRL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",13.951442341,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.79469798,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.886718931,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.034554452,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.518241561,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.096159639,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.812062282,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.701549071,\r\n\"JPN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",0.931898472,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.92721011,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.853941112,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.952087905,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.930410205,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",4.130253528,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.623391351,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",-0.111390423,\r\n\"NZL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.316480988,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.963017842,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-22.627407624,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.324677638,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-9.213327419,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-7.732633139,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",24.405387754,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.535696482,\r\n\"GBR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.869336232,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.726528694,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.375875838,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.48473417,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.821325578,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.288862858,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.000517433,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.828070461,\r\n\"DNK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.557814739,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.350497326,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-4.697399086,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-0.538748007,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.987662143,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.136891917,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.517815839,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",9.094901287,\r\n\"EST\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.660334612,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.838527923,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-19.718734014,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.316963002,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.787733179,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.888793203,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",20.058099075,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",11.440945783,\r\n\"ARG\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.693205945,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.870005137,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.57279588,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.308290805,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.474718801,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.317485051,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.492631488,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.311138266,\r\n\"AUT\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.364214314,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.508265648,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-2.596707233,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-0.832931497,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.889112426,\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.186322733,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",6.254134737,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.038118083,\"P\"\r\n\"KOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.165612121,\"P\"\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.989999942,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.345552652,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.807801985,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.223143581,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.578633714,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",6.54360415,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.506627514,\r\n\"NOR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.696893973,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.087754069,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-10.862233095,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-7.042936885,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.963664331,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-3.334001264,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.113262245,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.596420266,\r\n\"ISL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.256251389,\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-4.673702928,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-21.937066645,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.216818083,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-9.466967619,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-4.429802869,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.875245592,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.201974928,\"P\"\r\n\"ESP\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.625335158,\"P\"\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.443408462,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.645349645,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.086844712,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.108867458,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.987594005,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",7.15003723,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.080745342,\r\n\"FIN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",3.205478005,\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.287110928,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.54559782,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.120136972,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.558613548,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-2.091455135,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.286551812,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.581955683,\"P\"\r\n\"NLD\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.174275949,\"P\"\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.689774476,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.202747233,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.246619905,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.282739444,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.650309531,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",17.467695775,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.617352227,\r\n\"HUN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.489101559,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.820082981,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.350640156,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.024010121,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.516619933,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",1.19193505,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.460854406,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.955654481,\r\n\"USA\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.717100091,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.47213377,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-5.765139835,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-2.826653854,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.131368275,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.133847069,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.299886093,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.107120071,\r\n\"AUS\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.551591724,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.375453249,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.572299085,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.707854968,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.09529401,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.422093982,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.723489281,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.388246237,\r\n\"SVN\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",10.348976518,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.761219712,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-9.307248625,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.192928445,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-1.253468578,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",0.097908045,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.173079163,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",1.225790055,\r\n\"SVK\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",1.139951401,\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.551575744,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-15.592397122,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.758819759,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-6.854389142,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.94951287,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.6348127,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",12.401320988,\"P\"\r\n\"GRC\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",8.579307642,\"P\"\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.565265671,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.998653582,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.686814223,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.723251546,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.928317382,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",15.594438662,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.17109311,\r\n\"OECDE\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.975356125,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.938758301,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-11.462791017,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.593879987,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.617557675,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.226666497,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.106752304,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.343444974,\r\n\"G-7\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.78663033,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.47381,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-8.44766,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-1.71862,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-0.36415,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.72762,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",12.30697,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.99752,\r\n\"G-20\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.7,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",0.140255349,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-16.643540048,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-9.095781516,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.398176996,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.389951153,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",18.617117463,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",13.266575174,\r\n\"COL\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",11.197177998,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.830501143,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-14.23533105,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.840982005,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.110001652,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.810361822,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",14.238179624,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",3.985852983,\r\n\"EA19\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",4.834372011,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.589449599,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-4.136625013,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",1.468018663,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",0.461664649,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.545949219,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.857222429,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",5.146768659,\r\n\"LTU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.181784015,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.515352973,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-6.388541885,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.007193624,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.434200582,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-3.042035447,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",3.823095525,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",6.801127554,\r\n\"SAU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",6.974044951,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-1.388351395,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.199280928,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-4.044303454,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.423346396,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",3.138502129,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",9.781753824,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",7.990437464,\r\n\"BGR\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",7.649723579,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",2.692021321,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.945869947,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-5.095284595,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-2.331638635,\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-1.01690858,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",11.466471168,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",8.424438878,\"P\"\r\n\"ROU\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.389579577,\"P\"\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-2.23597102,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-13.39293078,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-3.696415151,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-3.848725695,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.727542115,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",13.78664555,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",4.282624567,\r\n\"EU27_2020\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",5.141284752,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",1.691943113,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-7.673056755,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-6.822308471,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-4.358859335,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",-0.504622856,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",10.263235535,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",12.476093499,\r\n\"CRI\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",9.765071656,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q1\",-0.698317341,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q2\",-15.788898313,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q3\",-10.862547065,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2020-Q4\",-5.592985013,\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q1\",2.304646628,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q2\",20.652787749,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q3\",16.770544176,\"P\"\r\n\"HRV\",\"QGDP\",\"TOT\",\"PC_CHGPY\",\"Q\",\"2021-Q4\",12.519812947,\"P\"\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141552162.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:51 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_spending.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_spending.yaml new file mode 100644 index 000000000000..a85a1942ca7a --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_spending.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.GGEXP.TOT.PC_GDP.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUT\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",56.8016615890176,\r\n\"BEL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",58.9013938524177,\r\n\"BEL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",55.4919695264851,\r\n\"CZE\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",47.218779880861,\r\n\"CZE\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",46.5136951016064,\r\n\"DNK\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",53.536109597429,\r\n\"DNK\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",50.8037824697248,\r\n\"FIN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",57.1875078768936,\r\n\"FIN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",55.632951653944,\r\n\"FRA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",61.4962157033918,\r\n\"FRA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",59.0464118486767,\r\n\"DEU\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",50.4081716552682,\r\n\"DEU\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",51.2528354272229,\r\n\"GRC\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",59.6913345535773,\r\n\"GRC\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",57.4477644809249,\r\n\"HUN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",51.0830071611429,\r\n\"HUN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",48.4183719418293,\r\n\"ISL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",50.8410228336566,\r\n\"ISL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.2338666318099,\r\n\"IRL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",27.3451145494445,\r\n\"IRL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",24.8225103512021,\r\n\"ITA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",56.8157197058884,\r\n\"ITA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",55.3388950166617,\r\n\"JPN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",47.1522906331203,\r\n\"JPN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",44.4634517536427,\r\n\"KOR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",38.132117760867,\r\n\"LUX\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.7314892871268,\r\n\"LUX\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",42.8884265734014,\r\n\"NLD\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",47.831343452224,\r\n\"NLD\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",46.6012966569978,\r\n\"NOR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",58.4808111895412,\r\n\"NOR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.1061309810371,\r\n\"POL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",48.2473931329973,\r\n\"POL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",44.2112801015874,\r\n\"PRT\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",49.2438768564906,\r\n\"PRT\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",47.8093040419106,\r\n\"SVK\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",44.7651842625833,\r\n\"SVK\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",46.3408329067916,\r\n\"ESP\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",51.9478277514358,\r\n\"ESP\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",50.616733590644,\r\n\"SWE\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",52.0699258395987,\r\n\"SWE\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.4104949798976,\r\n\"CHE\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",38.3991785139141,\r\n\"GBR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",52.3973333257489,\r\n\"GBR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",48.4061639135142,\r\n\"USA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",47.3115551435357,\r\n\"USA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",44.9326415378956,\r\n\"EST\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",44.869862924544,\r\n\"EST\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",41.4712553534017,\r\n\"ISR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",45.397211258932,\r\n\"ISR\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",40.8474055407831,\r\n\"SVN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",51.159823944033,\r\n\"SVN\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",49.2932817787653,\r\n\"AUS\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",46.2792350963916,\r\n\"LVA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",42.1524428315862,\r\n\"LVA\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",43.9643966200994,\r\n\"COL\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",37.2100660946673,\r\n\"LTU\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2020\",42.6771921468714,\r\n\"LTU\",\"GGEXP\",\"TOT\",\"PC_GDP\",\"A\",\"2021\",37.5000122202973,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141556849.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:56 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_trust.yaml b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_trust.yaml new file mode 100644 index 000000000000..b42c1821864b --- /dev/null +++ b/tests/openbb_terminal/economy/cassettes/test_oecd_model/test_get_trust.yaml @@ -0,0 +1,39 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - stats.oecd.org + User-Agent: + - Python-urllib/3.10 + method: GET + uri: https://stats.oecd.org/sdmx-json/data/DP_LIVE/.TRUSTGOV.TOT.PC.A/OECD?contentType=csv&detail=code&separator=comma&csv-lang=en&startPeriod=2020-01-01&endPeriod=2022-01-31 + response: + body: + string: "\uFEFF\"LOCATION\",\"INDICATOR\",\"SUBJECT\",\"MEASURE\",\"FREQUENCY\",\"TIME\",\"Value\",\"Flag + Codes\"\r\n\"AUS\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",44.6422249484244,\r\n\"AUS\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",51.9226387269998,\r\n\"AUT\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",62.6177826842198,\r\n\"AUT\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",61.0458963307101,\r\n\"BEL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",29.4799600657363,\r\n\"BEL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",47.3133105255303,\r\n\"CAN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",60.0424110070179,\r\n\"CAN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",61.0411167292314,\r\n\"CZE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",31.8858991214926,\r\n\"CZE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",28.4475429313419,\r\n\"DNK\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",71.5797588737729,\r\n\"DNK\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",65.1709716073998,\r\n\"FIN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",80.863288011065,\r\n\"FIN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",71.3731249908732,\r\n\"FRA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",41.0406651012307,\r\n\"FRA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",43.3520499917692,\r\n\"DEU\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",65.406310434657,\r\n\"DEU\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",60.4759932362344,\r\n\"GRC\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",39.7469760890433,\r\n\"GRC\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",40.173639463011,\r\n\"HUN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",42.8733251215195,\r\n\"HUN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",41.6566138185724,\r\n\"ISL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",59.2407281936249,\r\n\"ISL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",63.3886735712649,\r\n\"IRL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",58.8148266866781,\r\n\"IRL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",62.3389411864285,\r\n\"ITA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",37.4515772443029,\r\n\"ITA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",35.429390283743,\r\n\"JPN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",42.337998467072,\r\n\"JPN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",29.0785675214417,\r\n\"KOR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",44.8309238280724,\r\n\"KOR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",43.3829193400451,\r\n\"MEX\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",45.9497858951298,\r\n\"MEX\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",48.3326115001658,\r\n\"NLD\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",78.0745963024676,\r\n\"NLD\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",58.4738788340274,\r\n\"NZL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",62.8641075031231,\r\n\"NZL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",63.4897827518881,\r\n\"NOR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",82.9234210846933,\r\n\"NOR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",77.352319776611,\r\n\"POL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",27.3116610310921,\r\n\"POL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",25.9251651378815,\r\n\"PRT\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",61.4669417209344,\r\n\"PRT\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",57.618641201935,\r\n\"SVK\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",30.7444519017386,\r\n\"SVK\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",21.5807581467336,\r\n\"ESP\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",38.1767100934638,\r\n\"ESP\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",37.1703814804768,\r\n\"SWE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",67.107864752608,\r\n\"SWE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",63.3536082593929,\r\n\"CHE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",84.6330707358843,\r\n\"CHE\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",83.7848093008452,\r\n\"TUR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",55.3262159125458,\r\n\"TUR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",42.6014369483973,\r\n\"GBR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",34.6972844445844,\r\n\"GBR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",39.4753987902553,\r\n\"USA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",46.4917090465757,\r\n\"USA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",40.4625220436663,\r\n\"BRA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",36.2292400768302,\r\n\"BRA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",32.7099283931536,\r\n\"CHL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",17.146378832949,\r\n\"CHL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",23.2144804154189,\r\n\"COL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",37.3634383411604,\r\n\"COL\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",28.9148897418525,\r\n\"CRI\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",29.823056442099,\r\n\"CRI\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",31.5308324162133,\r\n\"EST\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",46.4805976813481,\r\n\"EST\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",51.926399218504,\r\n\"ISR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",38.8938520677275,\r\n\"ISR\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",43.9594681535094,\r\n\"LVA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",30.6789062455792,\r\n\"LVA\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",29.4602407828229,\r\n\"LTU\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",47.4045330413199,\r\n\"LTU\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",30.3830445599736,\r\n\"RUS\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",47.7703668013377,\r\n\"RUS\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",45.6992085335251,\r\n\"SVN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",45.2974234162068,\r\n\"SVN\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",33.9235814755947,\r\n\"ZAF\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2020\",51.7606686490518,\r\n\"ZAF\",\"TRUSTGOV\",\"TOT\",\"PC\",\"A\",\"2021\",50.896150522116,\r\n" + headers: + Access-Control-Allow-Headers: + - Content-Type + Access-Control-Allow-Methods: + - POST,GET,OPTIONS + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - private + Connection: + - close + Content-Disposition: + - attachment;filename=DP_LIVE_20032023141557349.csv + Content-Type: + - text/csv + Date: + - Mon, 20 Mar 2023 13:15:56 GMT + Transfer-Encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_data-kwargs_dict1].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_data-kwargs_dict1].csv index 8b65b8785130..2969c944122b 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_data-kwargs_dict1].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_data-kwargs_dict1].csv @@ -822,3 +822,17 @@ 2023-02-22,3.93 2023-02-23,3.88 2023-02-24,3.95 +2023-02-27,3.92 +2023-02-28,3.92 +2023-03-01,4.01 +2023-03-02,4.08 +2023-03-03,3.97 +2023-03-06,3.98 +2023-03-07,3.97 +2023-03-08,3.98 +2023-03-09,3.93 +2023-03-10,3.7 +2023-03-13,3.55 +2023-03-14,3.64 +2023-03-15,3.51 +2023-03-16,3.56 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].csv index a5333830f771..c6ac5692a874 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_check_output[get_series_notes-kwargs_dict0].csv @@ -1,73 +1,82 @@ ,id,realtime_start,realtime_end,title,observation_start,observation_end,frequency,frequency_short,units,units_short,seasonal_adjustment,seasonal_adjustment_short,last_updated,popularity,group_popularity,notes -0,SOFR,2023-02-27,2023-02-27,Secured Overnight Financing Rate,2018-04-03,2023-02-24,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:08-06,81,81,No description provided. -1,TERMCBAUTO48NS,2023-02-27,2023-02-27,"Finance Rate on Consumer Installment Loans at -Commercial Banks, New Autos 48 Month Loan",1972-02-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:04-06,62,62,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +0,SOFR,2023-03-20,2023-03-20,Secured Overnight Financing Rate,2018-04-03,2023-03-17,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:04-05,82,82,No description provided. +1,TERMCBAUTO48NS,2023-03-20,2023-03-20,"Finance Rate on Consumer Installment Loans at +Commercial Banks, New Autos 48 Month Loan",1972-02-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:04-06,61,61,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -2,SOFR30DAYAVG,2023-02-27,2023-02-27,30-Day Average SOFR,2018-05-02,2023-02-27,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:04-06,73,73,"As an extension of the additional documentation about the Treasury Repo Reference Rates. +2,SOFR30DAYAVG,2023-03-20,2023-03-20,30-Day Average SOFR,2018-05-02,2023-03-20,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:10-05,74,74,"As an extension of the additional documentation about the Treasury Repo Reference Rates. (https://www.newyorkfed.org/markets/treasury-repo-reference-rates-information)" -3,DTCTLVENANM,2023-02-27,2023-02-27,"Average Amount Financed for New Car Loans at -Finance Companies",2008-03-01,2022-09-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2022-12-07 14:02:07-06,40,42,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +3,DTCTLVENANM,2023-03-20,2023-03-20,"Average Amount Financed for New Car Loans at +Finance Companies",2008-03-01,2022-12-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2023-03-07 14:02:06-06,42,43,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -4,RIFLPBCIANM60NM,2023-02-27,2023-02-27,"Finance Rate on Consumer Installment Loans at -Commercial Banks, New Autos 60 Month Loan",2006-08-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:05-06,55,55,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -5,DTCTLVENANQ,2023-02-27,2023-02-27,"Average Amount Financed for New Car Loans at -Finance Companies",2008-01-01,2022-07-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,11,42,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +4,DTCTLVENANQ,2023-03-20,2023-03-20,"Average Amount Financed for New Car Loans at +Finance Companies",2008-01-01,2022-07-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,12,43,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/." -6,TERMCBPER24NS,2023-02-27,2023-02-27,"Finance Rate on Personal Loans at Commercial -Banks, 24 Month Loan",1972-02-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:06-06,51,51,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +5,RIFLPBCIANM60NM,2023-03-20,2023-03-20,"Finance Rate on Consumer Installment Loans at +Commercial Banks, New Autos 60 Month Loan",2006-08-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:05-06,54,54,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -7,VAPGDPFI,2023-02-27,2023-02-27,"Value Added by Industry: Finance, Insurance, Real +6,VAPGDPFI,2023-03-20,2023-03-20,"Value Added by Industry: Finance, Insurance, Real Estate, Rental, and Leasing: Finance and Insurance -as a Percentage of GDP",2005-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-22 08:48:03-06,38,38,"Value added represents the sum of the costs-incurred and the incomes-earned in production, and +as a Percentage of GDP",2005-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-22 08:48:03-06,41,41,"Value added represents the sum of the costs-incurred and the incomes-earned in production, and consists of compensation of employees, taxes on production and imports, less subsidies, and gross operating surplus." -8,SOFRINDEX,2023-02-27,2023-02-27,SOFR Index,2018-04-02,2023-02-27,Daily,D,"Index Apr 2, 2018 = 1","Index Apr 2, 2018 = 1",Not Seasonally Adjusted,NSA,2023-02-27 07:01:02-06,59,59,"As an extension of the additional documentation about the Treasury Repo Reference Rates. +7,TERMCBPER24NS,2023-03-20,2023-03-20,"Finance Rate on Personal Loans at Commercial +Banks, 24 Month Loan",1972-02-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-03-07 14:02:05-06,50,50,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +8,SOFRINDEX,2023-03-20,2023-03-20,SOFR Index,2018-04-02,2023-03-20,Daily,D,"Index Apr 2, 2018 = 1","Index Apr 2, 2018 = 1",Not Seasonally Adjusted,NSA,2023-03-20 07:01:11-05,60,60,"As an extension of the additional documentation about the Treasury Repo Reference Rates. (https://www.newyorkfed.org/markets/treasury-repo-reference-rates-information)" -9,DTCTLVEUANQ,2023-02-27,2023-02-27,"Average Amount Financed for Used Car Loans at -Finance Companies",2008-01-01,2022-07-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2022-12-15 14:48:02-06,31,31,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/." -10,SOFR90DAYAVG,2023-02-27,2023-02-27,90-Day Average SOFR,2018-07-02,2023-02-27,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:03-06,58,58,"As an extension of the additional documentation about the Treasury Repo Reference Rates. +9,SOFR90DAYAVG,2023-03-20,2023-03-20,90-Day Average SOFR,2018-07-02,2023-03-20,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:10-05,60,60,"As an extension of the additional documentation about the Treasury Repo Reference Rates. (https://www.newyorkfed.org/markets/treasury-repo-reference-rates-information)" -11,HSTFC,2023-02-27,2023-02-27,"Houses Sold by Type of Financing, Cash Purchase",1988-01-01,2022-10-01,Quarterly,Q,Thousands of Units,Thous. of Units,Not Seasonally Adjusted,NSA,2023-01-26 09:01:10-06,36,36,No description provided. -12,RIFLPBCIANM72NM,2023-02-27,2023-02-27,"Finance Rate on Consumer Installment Loans at -Commercial Banks, New Autos 72 Month Loan",2015-08-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:07-06,41,41,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online here (http://www.federalreserve.gov/releases/g19/)." -13,TERMAFCNCNSA,2023-02-27,2023-02-27,"New Car Average Finance Rate at Auto Finance -Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2012-06-26 12:01:23-05,27,27,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +10,DTCTLVEUANQ,2023-03-20,2023-03-20,"Average Amount Financed for Used Car Loans at +Finance Companies",2008-01-01,2022-07-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2022-12-15 14:48:02-06,32,32,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/." +11,RIELPCFANNM,2023-03-20,2023-03-20,"Average Finance Rate of New Car Loans at Finance +Companies, Amount of Finance Weighted",2008-03-01,2022-12-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-03-07 14:02:08-06,29,29,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -14,RIELPCFANNM,2023-02-27,2023-02-27,"Average Finance Rate of New Car Loans at Finance -Companies, Amount of Finance Weighted",2008-03-01,2022-09-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2022-12-07 14:02:11-06,25,25,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +12,TERMAFCNCNSA,2023-03-20,2023-03-20,"New Car Average Finance Rate at Auto Finance +Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2012-06-26 12:01:23-05,29,29,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -15,RIFLPCFANNM,2023-02-27,2023-02-27,"New Car Average Finance Rate at Auto Finance -Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 09:59:18-06,3,27,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -16,RIELPCFANNQ,2023-02-27,2023-02-27,"Average Finance Rate of New Car Loans at Finance -Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-15 14:48:08-06,2,25,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +13,RIELPCFANNQ,2023-03-20,2023-03-20,"Average Finance Rate of New Car Loans at Finance +Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-15 14:48:08-06,2,29,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/." -17,SOFRVOL,2023-02-27,2023-02-27,Secured Overnight Financing Volume,2018-04-03,2023-02-24,Daily,D,Billions of U.S. Dollars,Bil. of U.S. $,Not Seasonally Adjusted,NSA,2023-02-27 07:01:06-06,37,37,No description provided. -18,RIELPCFAUNQ,2023-02-27,2023-02-27,"Average Finance Rate of Used Car Loans at Finance -Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-15 14:48:02-06,22,22,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/." -19,SOFR180DAYAVG,2023-02-27,2023-02-27,180-Day Average SOFR,2018-10-01,2023-02-27,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:04-06,49,49,"As an extension of the additional documentation about the Treasury Repo Reference Rates. -(https://www.newyorkfed.org/markets/treasury-repo-reference-rates-information)" -20,TERMFCLVRNCNS,2023-02-27,2023-02-27,"Loan-to-Value Ratio of New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2012-06-26 12:03:12-05,20,23,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -21,DTCTLVNLNM,2023-02-27,2023-02-27,"Loan-to-Value Ratio of New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 10:03:20-06,5,23,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +14,SOFRVOL,2023-03-20,2023-03-20,Secured Overnight Financing Volume,2018-04-03,2023-03-17,Daily,D,Billions of U.S. Dollars,Bil. of U.S. $,Not Seasonally Adjusted,NSA,2023-03-20 07:01:07-05,42,42,No description provided. +15,RIFLPBCIANM72NM,2023-03-20,2023-03-20,"Finance Rate on Consumer Installment Loans at +Commercial Banks, New Autos 72 Month Loan",2015-08-01,2022-11-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2023-01-09 14:02:07-06,41,41,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online here (http://www.federalreserve.gov/releases/g19/)." +16,RIFLPCFANNM,2023-03-20,2023-03-20,"New Car Average Finance Rate at Auto Finance +Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 09:59:18-06,3,29,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -22,SOFR1,2023-02-27,2023-02-27,Secured Overnight Financing Rate: 1st Percentile,2018-04-03,2023-02-24,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:08-06,33,33,No description provided. -23,DTCTLVENMNM,2023-02-27,2023-02-27,"Average Maturity of New Car Loans at Finance -Companies, Amount of Finance Weighted",2008-03-01,2022-09-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2022-12-07 14:02:11-06,18,18,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +17,FBTFASQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Financial +Assets, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:04-06,30,30,"Source ID: FL794090005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794090005&t=) provided by +the source." +18,SOFR180DAYAVG,2023-03-20,2023-03-20,180-Day Average SOFR,2018-10-01,2023-03-20,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:09-05,52,52,"As an extension of the additional documentation about the Treasury Repo Reference Rates. +(https://www.newyorkfed.org/markets/treasury-repo-reference-rates-information)" +19,DTCTLVENMNM,2023-03-20,2023-03-20,"Average Maturity of New Car Loans at Finance +Companies, Amount of Finance Weighted",2008-03-01,2022-12-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2023-03-07 14:02:08-06,24,24,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -24,DTCTLVENMNQ,2023-02-27,2023-02-27,"Average Maturity of New Car Loans at Finance -Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Months,Months,Not Seasonally Adjusted,NSA,2022-12-15 14:48:05-06,2,18,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +20,SOFR1,2023-03-20,2023-03-20,Secured Overnight Financing Rate: 1st Percentile,2018-04-03,2023-03-17,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:05-05,38,38,No description provided. +21,FBTFASA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Financial +Assets, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:06-06,1,30,"Source ID: FL794090005.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794090005&t=) provided by +the source." +22,DTCTLVENMNQ,2023-03-20,2023-03-20,"Average Maturity of New Car Loans at Finance +Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Months,Months,Not Seasonally Adjusted,NSA,2022-12-15 14:48:05-06,2,24,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/." -25,DRFAPGACBN,2023-02-27,2023-02-27,"Delinquency Rate on Loans to Finance Agricultural -Production, All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Not Seasonally Adjusted,NSA,2023-02-21 14:03:14-06,25,30,No description provided. -26,DDDI03USA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -United States",1960-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:06-05,20,20,"Total assets held by financial institutions that do not accept transferable deposits but that +23,RIELPCFAUNQ,2023-03-20,2023-03-20,"Average Finance Rate of Used Car Loans at Finance +Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Percent,%,Not Seasonally Adjusted,NSA,2022-12-15 14:48:02-06,22,22,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/." +24,DDDI03USA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +United States",1960-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:06-05,26,26,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -82,48 +91,194 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -27,DRFAPGACBS,2023-02-27,2023-02-27,"Delinquency Rate on Loans to Finance Agricultural -Production, All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Seasonally Adjusted,SA,2023-02-21 14:03:16-06,15,30,No description provided. -28,DRLFRACBS,2023-02-27,2023-02-27,"Delinquency Rate on Lease Financing Receivables, -All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Seasonally Adjusted,SA,2023-02-21 14:03:13-06,28,29,No description provided. -29,QFRTCASHINFUSNO,2023-02-27,2023-02-27,"Quarterly Financial Report: U.S. Corporations: All -Information: Total Cash on Hand and in U.S. Banks",2009-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-22 08:44:02-06,41,41,"Further information related to the Quarterly Financial Report survey can be found at -https://www.census.gov/econ/qfr/about.html Methodology details can be found at -https://www.census.gov/econ/qfr/documents/QFR_Methodology.pdf" -30,DRLFRACBN,2023-02-27,2023-02-27,"Delinquency Rate on Lease Financing Receivables, -All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Not Seasonally Adjusted,NSA,2023-02-21 14:03:33-06,3,29,No description provided. -31,REVEF52311ALLEST,2023-02-27,2023-02-27,"Total Revenue for Investment Banking and +25,SOFR99,2023-03-20,2023-03-20,Secured Overnight Financing Rate: 99th Percentile,2018-04-03,2023-03-17,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:06-05,35,35,No description provided. +26,HSTFC,2023-03-20,2023-03-20,"Houses Sold by Type of Financing, Cash Purchase",1988-01-01,2022-10-01,Quarterly,Q,Thousands of Units,Thous. of Units,Not Seasonally Adjusted,NSA,2023-01-26 09:01:10-06,27,27,No description provided. +27,REVEF52311ALLEST,2023-03-20,2023-03-20,"Total Revenue for Investment Banking and Securities Dealing, All Establishments, Employer -Firms",1998-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:03-06,18,18,"For further information, please refer to the US Census Bureau's Annual Services release, online at +Firms",1998-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:03-06,23,23,"For further information, please refer to the US Census Bureau's Annual Services release, online at http://www.census.gov/services/." -32,USSTHPI,2023-02-27,2023-02-27,"All-Transactions House Price Index for the United -States",1975-01-01,2022-07-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2022-11-29 09:02:02-06,77,77,Estimated using sales prices and appraisal data. -33,REVEF52221ALLEST,2023-02-27,2023-02-27,"Total Revenue for Credit Card Issuing, All -Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:03-06,15,15,"For further information, please refer to the US Census Bureau's Annual Services release, online at +28,QFRTCASHINFUSNO,2023-03-20,2023-03-20,"Quarterly Financial Report: U.S. Corporations: All +Information: Total Cash on Hand and in U.S. Banks",2009-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-20 09:06:03-05,45,45,"Further information related to the Quarterly Financial Report survey can be found at +https://www.census.gov/econ/qfr/about.html Methodology details can be found at +https://www.census.gov/econ/qfr/documents/QFR_Methodology.pdf" +29,TERMFCLVRNCNS,2023-03-20,2023-03-20,"Loan-to-Value Ratio of New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2012-06-26 12:03:12-05,18,20,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +30,DTCTLVNLNM,2023-03-20,2023-03-20,"Loan-to-Value Ratio of New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 10:03:20-06,5,20,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +31,DRFAPGACBN,2023-03-20,2023-03-20,"Delinquency Rate on Loans to Finance Agricultural +Production, All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Not Seasonally Adjusted,NSA,2023-02-21 14:03:14-06,27,30,No description provided. +32,DRFAPGACBS,2023-03-20,2023-03-20,"Delinquency Rate on Loans to Finance Agricultural +Production, All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Seasonally Adjusted,SA,2023-02-21 14:03:16-06,10,30,No description provided. +33,DTCOLNVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Owned by Finance +Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:02-06,17,17,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +34,REVEF52221ALLEST,2023-03-20,2023-03-20,"Total Revenue for Credit Card Issuing, All +Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:03-06,18,18,"For further information, please refer to the US Census Bureau's Annual Services release, online at http://www.census.gov/services/." -34,FBTFASQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Financial -Assets, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:44:16-06,13,14,"Source ID: FL794090005.Q For more information about the Flow of Funds tables, see the Financial +35,DRLFRACBS,2023-03-20,2023-03-20,"Delinquency Rate on Lease Financing Receivables, +All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Seasonally Adjusted,SA,2023-02-21 14:03:13-06,26,27,No description provided. +36,DTTHFM,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:01-06,14,15,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +37,DTTHFNM,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,15,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +38,DRLFRACBN,2023-03-20,2023-03-20,"Delinquency Rate on Lease Financing Receivables, +All Commercial Banks",1987-01-01,2022-10-01,"Quarterly, End of Period",Q,Percent,%,Not Seasonally Adjusted,NSA,2023-02-21 14:03:33-06,2,27,No description provided. +39,DTCTLVULNM,2023-03-20,2023-03-20,"Loan-to-Value Ratio of Used Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 10:03:27-06,13,13,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +40,DDDI03PHA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Philippines",1960-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:16-05,15,15,"Total assets held by financial institutions that do not accept transferable deposits but that +perform financial intermediation by accepting other types of deposits or by issuing securities or +other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions +such as saving and mortgage loan institutions, post-office savings institution, building and loan +associations, finance companies that accept deposits or deposit substitutes, development banks, and +offshore banking institutions. Assets include claims on domestic real nonfinancial sector such as +central-, state- and local government, nonfinancial public enterprises and private sector. Claims +on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated +using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is other +financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data +are from the electronic version of the IMF's International Financial Statistics. Non-bank financial +institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 99B..ZF or, if not +available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and +annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and +World Bank GDP estimates) Source Code: GFDD.DI.03" +41,A454RC1Q027SBEA,2023-03-20,2023-03-20,Gross value added of financial corporate business,1947-01-01,2022-07-01,Quarterly,Q,Billions of Dollars,Bil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-02-23 07:53:23-06,15,15,"BEA Account Code: A454RC For more information about this series, please see +http://www.bea.gov/national/." +42,A454RC1A027NBEA,2023-03-20,2023-03-20,Gross value added of financial corporate business,1929-01-01,2021-01-01,Annual,A,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2022-09-29 07:47:46-05,1,15,"BEA Account Code: A454RC For more information about this series, please see +http://www.bea.gov/national/." +43,USSTHPI,2023-03-20,2023-03-20,"All-Transactions House Price Index for the United +States",1975-01-01,2022-10-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2023-02-28 09:02:02-06,76,76,Estimated using sales prices and appraisal data. +44,DTCTLVEUMNQ,2023-03-20,2023-03-20,"Average Maturity of Used Car Loans at Finance +Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Months,Months,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,9,9,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/." +45,STFCFXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Equity Capital, +Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:05-06,11,11,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +46,DDDI03ETA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Ethiopia",1966-01-01,2006-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:15-05,13,13,"Total assets held by financial institutions that do not accept transferable deposits but that +perform financial intermediation by accepting other types of deposits or by issuing securities or +other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions +such as saving and mortgage loan institutions, post-office savings institution, building and loan +associations, finance companies that accept deposits or deposit substitutes, development banks, and +offshore banking institutions. Assets include claims on domestic real nonfinancial sector such as +central-, state- and local government, nonfinancial public enterprises and private sector. Claims +on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated +using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is other +financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data +are from the electronic version of the IMF's International Financial Statistics. Non-bank financial +institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 99B..ZF or, if not +available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and +annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and +World Bank GDP estimates) Source Code: GFDD.DI.03" +47,STFCFXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Equity Capital, +Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,11,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +48,DTCTHFNM,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,9,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +49,TOTALFC,2023-03-20,2023-03-20,Total Consumer Credit Owned by Finance Companies,1943-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:10-06,10,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +50,FBCELLQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Corporate Equities; +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:04-06,12,12,"Source ID: FL793164105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793164105&t=) provided by the source." -35,DTTHFM,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:01-06,11,11,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +51,DTCTHFM,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:03-06,1,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -36,FBTFASA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Financial -Assets, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:40:06-06,2,14,"Source ID: FL794090005.A For more information about the Flow of Funds tables, see the Financial +52,FBCELLA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Corporate Equities; +Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:28-06,1,12,"Source ID: FL793164105.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793164105&t=) provided by the source." -37,DDDI03ETA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Ethiopia",1966-01-01,2006-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:15-05,13,13,"Total assets held by financial institutions that do not accept transferable deposits but that +53,BOGZ1FL613169333Q,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:03:30-06,9,9,"Source ID: FL613169333.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169333&t=) provided by +the source." +54,FBDSILQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Debt Securities; +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:04-06,9,11,"Source ID: FL794122005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794122005&t=) provided by +the source." +55,BOGZ1FA614090610Q,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,4,9,"Source ID: FA614090610.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614090610&t=) provided by +the source." +56,BOGZ1FU614090610A,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,4,9,"Source ID: FU614090610.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU614090610&t=) provided by +the source." +57,DTCTLVNANM,2023-03-20,2023-03-20,"Average Amount Financed for New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2014-03-05 10:03:19-06,5,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +58,BOGZ1FU614090610Q,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:10-05,3,9,"Source ID: FU614090610.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU614090610&t=) provided by +the source." +59,BOGZ1FA614090610A,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:46-05,3,9,"Source ID: FA614090610.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614090610&t=) provided by +the source." +60,BOGZ1FL613169333A,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,9,"Source ID: FL613169333.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169333&t=) provided by +the source." +61,FBDSILA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Debt Securities; +Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:27-06,3,11,"Source ID: FL794122005.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794122005&t=) provided by +the source." +62,CASTHPI,2023-03-20,2023-03-20,All-Transactions House Price Index for California,1975-01-01,2022-10-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2023-02-28 09:02:04-06,72,72,Estimated using sales prices and appraisal data. +63,DDDI03ZAA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +South Africa",1961-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:24:54-05,10,10,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -138,37 +293,94 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -38,DTTHFNM,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,11,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +64,SOFR25,2023-03-20,2023-03-20,Secured Overnight Financing Rate: 25th Percentile,2018-04-03,2023-03-17,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:05-05,19,19,No description provided. +65,DTCORVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Owned by Finance +Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:02-06,7,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -39,DTCTLVEUMNQ,2023-02-27,2023-02-27,"Average Maturity of Used Car Loans at Finance -Companies, Amount of Finance Weighted",2008-01-01,2022-07-01,Quarterly,Q,Months,Months,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,8,8,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/." -40,DTCORVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Owned by Finance -Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:02-06,10,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +66,STFAFCNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Cash and Cash +Equivalents, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,7,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -41,DTCOLNVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Owned by Finance -Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:02-06,10,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -42,DTCTLVULNM,2023-02-27,2023-02-27,"Loan-to-Value Ratio of Used Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 10:03:27-06,10,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -43,DTCTHFNM,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,9,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -44,DTBTNM,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,7,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +67,TERMFCAAFNCNS,2023-03-20,2023-03-20,"Average Amount Financed for New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2012-06-26 12:03:29-05,1,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +68,DTCOLRHFXDFBANM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,4,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -45,DTBTM,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:03-06,4,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +69,DTCTLVNMNM,2023-03-20,2023-03-20,"Weighted-Average Maturity of New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2014-03-05 10:03:23-06,4,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -46,DTCTHFM,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:03-06,2,10,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +70,DTCOLRHFXDFBANA,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -47,A454RC1Q027SBEA,2023-02-27,2023-02-27,Gross value added of financial corporate business,1947-01-01,2022-07-01,Quarterly,Q,Billions of Dollars,Bil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-02-23 07:53:23-06,12,12,"BEA Account Code: A454RC For more information about this series, please see -http://www.bea.gov/national/." -48,SOFR99,2023-02-27,2023-02-27,Secured Overnight Financing Rate: 99th Percentile,2018-04-03,2023-02-24,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:07-06,21,21,No description provided. -49,A09024USA144NNBR,2023-02-27,2023-02-27,"Corporate Earnings, Finance for United States",1916-01-01,1940-01-01,Annual,A,Millions of Dollars,Mil. Of $,Not Seasonally Adjusted,NSA,2012-08-17 15:01:30-05,21,21,"The Data For 1916 Were Computed By NBER By Adding Figures For ""Grand Total Banks And Insurance +71,BOGZ1FL713068905Q,2023-03-20,2023-03-20,"Monetary Authority; Depository Institution Loans +N.E.C. to Other Financial Business COVID-19 +Funding, Credit, and Liquidity Facilities; Asset, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:04-05,9,9,"Source ID: FL713068905.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068905&t=) provided by +the source." +72,BOGZ1LM503062003Q,2023-03-20,2023-03-20,"Other Financial Business; Municipal Securities +Held by COVID-19 Municipal Liquidity Facility +(MLF); Asset, Market Value Levels",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:00:06-06,9,9,"Source ID: LM503062003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM503062003&t=) provided by +the source." +73,REVEF52231ALLEST,2023-03-20,2023-03-20,"Total Revenue for Mortgage and Nonmortgage Loan +Brokers, All Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:09-06,9,9,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +74,TERMFCWAMNCLNS,2023-03-20,2023-03-20,"Weighted-Average Maturity of New Car Loans at Auto +Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2012-06-26 12:01:34-05,4,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +75,TCMAHDFS,2023-03-20,2023-03-20,"Domestic Financial Sectors; Debt Securities and +Loans; Asset, Level",1945-10-01,2022-10-01,"Quarterly, End of Period",Q,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:09-05,8,9,"Source ID: FL794004005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794004005&t=) provided by +the source." +76,FLREVOLNFCA,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies, Flow",1985-01-01,2023-01-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:13-06,3,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +77,FBNWMTQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Net Worth (IMA), Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:13-06,6,9,"Source ID: FL792090095.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL792090095&t=) provided by +the source." +78,FLREVOLNFC,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies, Flow",1985-01-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:23-06,1,7,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +79,BOGZ1FL614104005A,2023-03-20,2023-03-20,"Finance Companies; Debt Securities and Loans; +Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,7,"Source ID: FL614104005.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614104005&t=) provided by +the source." +80,FBNWMTA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Net Worth (IMA), Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:25-06,4,9,"Source ID: FL792090095.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL792090095&t=) provided by +the source." +81,SOFR75,2023-03-20,2023-03-20,Secured Overnight Financing Rate: 75th Percentile,2018-04-03,2023-03-17,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-03-20 07:01:06-05,18,18,No description provided. +82,A09024USA144NNBR,2023-03-20,2023-03-20,"Corporate Earnings, Finance for United States",1916-01-01,1940-01-01,Annual,A,Millions of Dollars,Mil. Of $,Not Seasonally Adjusted,NSA,2012-08-17 15:01:30-05,18,18,"The Data For 1916 Were Computed By NBER By Adding Figures For ""Grand Total Banks And Insurance Companies"" And For ""Real Estate,"" See Crum, ""Corporate Earning Power,"" P. 327. For 1936-1940, The Data Were Computed By NBER From Data In Statistics Of Income (See Notes). The 1938 Data Were Adjusted By NBER To Conform To 1937 Industrial Classification (See Notes). Data For 1939-1940 Are @@ -176,12 +388,54 @@ Based On 1938 Standard Industrial Classification. Source: Bureau Of Internal Rev Income, 1916 And Successive Years. This NBER data series a09024 appears on the NBER website in Chapter 9 at http://www.nber.org/databases/macrohistory/contents/chapter09.html. NBER Indicator: a09024" -50,A454RC1A027NBEA,2023-02-27,2023-02-27,Gross value added of financial corporate business,1929-01-01,2021-01-01,Annual,A,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2022-09-29 07:47:46-05,1,12,"BEA Account Code: A454RC For more information about this series, please see -http://www.bea.gov/national/." -51,TOTALFC,2023-02-27,2023-02-27,Total Consumer Credit Owned by Finance Companies,1943-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:15-06,9,9,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -52,DDDI03PHA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Philippines",1960-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:16-05,11,11,"Total assets held by financial institutions that do not accept transferable deposits but that +83,CES5552000001,2023-03-20,2023-03-20,"All Employees, Finance and Insurance",1990-01-01,2023-02-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 07:45:16-06,17,18,"The series comes from the 'Current Employment Statistics (Establishment Survey).' The source code +is: CES5552000001" +84,BOGZ1FL713068905A,2023-03-20,2023-03-20,"Monetary Authority; Depository Institution Loans +N.E.C. to Other Financial Business COVID-19 +Funding, Credit, and Liquidity Facilities; Asset, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:05:05-05,1,9,"Source ID: FL713068905.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068905&t=) provided by +the source." +85,BOGZ1LM503062003A,2023-03-20,2023-03-20,"Other Financial Business; Municipal Securities +Held by COVID-19 Municipal Liquidity Facility +(MLF); Asset, Market Value Levels",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:58:06-06,1,9,"Source ID: LM503062003.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM503062003&t=) provided by +the source." +86,DTBTNM,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,5,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +87,DTCOLNVHFXDFBANA,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Owned by Finance +Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,4,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +88,DTCOLNVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Owned by Finance +Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,3,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +89,DTBTM,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:03-06,1,6,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +90,REVEF52312ALLEST,2023-03-20,2023-03-20,"Total Revenue for Securities Brokerage, All +Establishments, Employer Firms",1998-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:06-06,8,8,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +91,CEU5552000001,2023-03-20,2023-03-20,"All Employees, Finance and Insurance",1990-01-01,2023-02-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-10 07:46:10-06,1,18,"The series comes from the 'Current Employment Statistics (Establishment Survey).' The source code +is: CEU5552000001" +92,DTRTM,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:02-06,5,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +93,DTRTNM,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +94,DDDI031WA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +World (DISCONTINUED)",1960-01-01,2015-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2017-08-30 08:06:30-05,7,7,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -196,121 +450,114 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -53,CASTHPI,2023-02-27,2023-02-27,All-Transactions House Price Index for California,1975-01-01,2022-07-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2022-11-29 09:02:04-06,72,72,Estimated using sales prices and appraisal data. -54,REVEF52231ALLEST,2023-02-27,2023-02-27,"Total Revenue for Mortgage and Nonmortgage Loan -Brokers, All Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:09-06,11,11,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -55,BOGZ1LM503062003Q,2023-02-27,2023-02-27,"Other Financial Business; Municipal Securities -Held by COVID-19 Municipal Liquidity Facility -(MLF); Asset, Market Value Levels",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:41:07-06,10,11,"Source ID: LM503062003.Q For more information about the Flow of Funds tables, see the Financial +95,BOGZ1FA703130015Q,2023-03-20,2023-03-20,"Private Depository Institutions; Time and Savings +Deposits Due to Other Financial Corporations, +State and Local Governments, Nonfinancial +Businesses, and Households and Nonprofit +Organizations; Liability (SRF), Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:05-05,7,7,"Source ID: FA703130015.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM503062003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA703130015&t=) provided by the source." -56,BOGZ1LM503062003A,2023-02-27,2023-02-27,"Other Financial Business; Municipal Securities -Held by COVID-19 Municipal Liquidity Facility -(MLF); Asset, Market Value Levels",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 11:55:34-06,1,11,"Source ID: LM503062003.A For more information about the Flow of Funds tables, see the Financial +96,FBDIAEQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; U.S. Direct Investment +Abroad; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:07-06,7,7,"Source ID: FL793092005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM503062003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793092005&t=) provided by the source." -57,STFAFCNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Cash and Cash -Equivalents, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:03-06,8,8,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -58,SOFR75,2023-02-27,2023-02-27,Secured Overnight Financing Rate: 75th Percentile,2018-04-03,2023-02-24,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:07-06,19,19,No description provided. -59,SOFR25,2023-02-27,2023-02-27,Secured Overnight Financing Rate: 25th Percentile,2018-04-03,2023-02-24,Daily,D,Percent,%,Not Seasonally Adjusted,NSA,2023-02-27 07:01:08-06,19,19,No description provided. -60,REVEF52312ALLEST,2023-02-27,2023-02-27,"Total Revenue for Securities Brokerage, All -Establishments, Employer Firms",1998-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:06-06,9,9,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -61,HSTFCM,2023-02-27,2023-02-27,"Houses Sold by Type of Financing, Conventional",1988-01-01,2022-10-01,Quarterly,Q,Thousands of Units,Thous. of Units,Not Seasonally Adjusted,NSA,2023-01-26 09:01:16-06,12,12,No description provided. -62,DTCTLVNANM,2023-02-27,2023-02-27,"Average Amount Financed for New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2014-03-05 10:03:19-06,2,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -63,DTCOLRHFXDFBANM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,3,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -64,DTCOLRHFXDFBANA,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +97,FBLSRAA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Loans Including +Security Repurchase Agreements; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:11-06,5,7,"Source ID: FL794135005.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794135005&t=) provided by +the source." +98,RIFLPCFAUNM,2023-03-20,2023-03-20,"Used Car Average Finance Rate at Auto Finance +Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 09:59:15-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -65,FLSTHPI,2023-02-27,2023-02-27,All-Transactions House Price Index for Florida,1975-01-01,2022-07-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2022-11-29 09:02:04-06,68,68,Estimated using sales prices and appraisal data. -66,FLREVOLNFCA,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:17-06,3,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -67,FBCELLQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Corporate Equities; -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:44:16-06,7,7,"Source ID: FL793164105.Q For more information about the Flow of Funds tables, see the Financial +99,FBLSRAQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Loans Including +Security Repurchase Agreements; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:07-06,3,7,"Source ID: FL794135005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793164105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794135005&t=) provided by the source." -68,FBCELIQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Corporate Equities; -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:45:14-06,6,7,"Source ID: FA793164105.Q For more information about the Flow of Funds tables, see the Financial +100,BOGZ1FA703130015A,2023-03-20,2023-03-20,"Private Depository Institutions; Time and Savings +Deposits Due to Other Financial Corporations, +State and Local Governments, Nonfinancial +Businesses, and Households and Nonprofit +Organizations; Liability (SRF), Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:15-06,1,7,"Source ID: FA703130015.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA793164105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA703130015&t=) provided by the source." -69,FLREVOLNFC,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:31-06,1,5,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -70,RIFLPCFAUNM,2023-02-27,2023-02-27,"Used Car Average Finance Rate at Auto Finance -Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Percent,%,Not Seasonally Adjusted,NSA,2014-03-05 09:59:15-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -71,FBCELLA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Corporate Equities; -Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:42:20-06,1,7,"Source ID: FL793164105.A For more information about the Flow of Funds tables, see the Financial +101,BOGZ1FU703130015Q,2023-03-20,2023-03-20,"Private Depository Institutions; Time and Savings +Deposits Due to Other Financial Corporations, +State and Local Governments, Nonfinancial +Businesses, and Households and Nonprofit +Organizations; Liability (SRF), Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:50-05,1,7,"Source ID: FU703130015.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793164105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU703130015&t=) provided by the source." -72,FBCELIA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Corporate Equities; -Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:43:34-06,1,7,"Source ID: FA793164105.A For more information about the Flow of Funds tables, see the Financial +102,BOGZ1FU703130015A,2023-03-20,2023-03-20,"Private Depository Institutions; Time and Savings +Deposits Due to Other Financial Corporations, +State and Local Governments, Nonfinancial +Businesses, and Households and Nonprofit +Organizations; Liability (SRF), Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:21:04-06,1,7,"Source ID: FU703130015.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA793164105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU703130015&t=) provided by the source." -73,HSTFFHAI,2023-02-27,2023-02-27,"Houses Sold by Type of Financing, FHA Insured",1988-01-01,2022-10-01,Quarterly,Q,Thousands of Units,Thous. of Units,Not Seasonally Adjusted,NSA,2023-01-26 09:01:18-06,10,10,No description provided. -74,TERMFCAAFNCNS,2023-02-27,2023-02-27,"Average Amount Financed for New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2012-06-26 12:03:29-05,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -75,DTCOLNVHFXDFBANA,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Owned by Finance -Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:03-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -76,STFCFXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Equity Capital, -Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:05-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +103,FBDIAEA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; U.S. Direct Investment +Abroad; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:27-06,1,7,"Source ID: FL793092005.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793092005&t=) provided by +the source." +104,HSTFCM,2023-03-20,2023-03-20,"Houses Sold by Type of Financing, Conventional",1988-01-01,2022-10-01,Quarterly,Q,Thousands of Units,Thous. of Units,Not Seasonally Adjusted,NSA,2023-01-26 09:01:16-06,10,10,No description provided. +105,DTTHFABAM,2023-03-20,2023-03-20,"Total Owned and Managed Receivables Outstanding +Held by Finance Companies",1970-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:25-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -77,DTRTM,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2023-02-17 13:48:02-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +106,DTCTLNVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Owned and Securitized +by Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +107,DTRTXDFBAA,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:03-06,3,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -78,DTCOLNVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Owned by Finance -Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +108,DTRTXDFBAM,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -79,STFCFXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Equity Capital, -Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +109,DTRTXDFBANM,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:25-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -80,DTRTNM,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +110,DTRTXDFBANA,2023-03-20,2023-03-20,"Total Real Estate Loans Owned and Securitized by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:25-06,1,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -81,REVOLNFC,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies",1984-12-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:20-06,4,4,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -82,DDDI03EGA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Egypt",1996-01-01,2007-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2019-10-21 14:50:47-05,6,6,"Total assets held by financial institutions that do not accept transferable deposits but that +111,DDDI03ZMA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Zambia",2011-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:34:22-05,6,6,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -325,8 +572,8 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -83,DDDI03IDA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Indonesia",2009-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:21-05,6,6,"Total assets held by financial institutions that do not accept transferable deposits but that +112,DDDI03SAA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Saudi Arabia",1968-01-01,2017-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:39-05,6,6,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -341,122 +588,66 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -84,DDDI12CNA156NWDB,2023-02-27,2023-02-27,"Private Credit by Deposit Money Banks and Other -Financial Institutions to GDP for China",1986-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:12-05,6,6,"Private credit by deposit money banks and other financial institutions to GDP. Private credit by -deposit money banks and other financial institutions to GDP, calculated using the following -deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is credit to the private -sector, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic -version of the IMF's International Financial Statistics. Private credit by deposit money banks and -other financial institutions (IFS lines 22d and 42d); GDP in local currency (IFS line 99B..ZF or, if -not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); -and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics) -Source Code: GFDD.DI.12" -85,BOGZ1FL713068905Q,2023-02-27,2023-02-27,"Monetary Authority; Depository Institution Loans -N.E.C. to Other Financial Business COVID-19 -Funding, Credit, and Liquidity Facilities; Asset, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:04-06,6,6,"Source ID: FL713068905.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068905&t=) provided by -the source." -86,DDDI12IRA156NWDB,2023-02-27,2023-02-27,"Private Credit by Deposit Money Banks and Other -Financial Institutions to GDP for Islamic Republic -of Iran",1961-01-01,2016-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:31:35-05,6,6,"Private credit by deposit money banks and other financial institutions to GDP. Private credit by -deposit money banks and other financial institutions to GDP, calculated using the following -deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is credit to the private -sector, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic -version of the IMF's International Financial Statistics. Private credit by deposit money banks and -other financial institutions (IFS lines 22d and 42d); GDP in local currency (IFS line 99B..ZF or, if -not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); -and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics) -Source Code: GFDD.DI.12" -87,FBDSILQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Debt Securities; -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:43:04-06,6,6,"Source ID: FL794122005.Q For more information about the Flow of Funds tables, see the Financial +113,FBTALDQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Assets (Does Not +Include Land), Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:10-06,6,6,"Source ID: FL792000095.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794122005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL792000095&t=) provided by the source." -88,USPCEFININS,2023-02-27,2023-02-27,"Personal Consumption Expenditures: Services: -Financial Services and Insurance for United States",1997-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-10-06 08:04:02-05,6,6,"A measure of spending on goods and services purchased by, and on behalf of, households based on -households' state of residence in the fifty states and the District of Columbia. Spending on -financial services and insurance. Financial services consist of financial services furnished without -payment, and financial service charges, fees, and commissions. Insurance consists of life insurance, -net household insurance, net health insurance, net motor vehicle and other transportation -insurance.For more information about this release go to -http://www.bea.gov/newsreleases/regional/pce/pce_newsrelease.htm." -89,DTCTLVUANM,2023-02-27,2023-02-27,"Average Amount Financed for Used Car Loans at Auto +114,DDAI06JPA156NWDB,2023-03-20,2023-03-20,"People 15 Years and Over Saving at a Financial +Institution in the Past Year for Japan",2011-01-01,2017-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:40-05,6,6,"The percentage of respondents who report saving or setting aside any money by using an account at a +formal financial institution such as a bank, credit union, microfinance institution, or cooperative +in the past 12 months (% age 15+). Source Code: GFDD.AI.06" +115,DTCTLVUANM,2023-03-20,2023-03-20,"Average Amount Financed for Used Car Loans at Auto Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Dollars,$,Not Seasonally Adjusted,NSA,2014-03-05 10:03:25-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -90,STFLFDNNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Non-Recourse Debt -Associated with Financing Activities, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -91,STFLFDNXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Non-Recourse Debt +116,STFLFDNXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Non-Recourse Debt Associated with Financing Activities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -92,STFLFDNXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Non-Recourse Debt +117,STFLFDNXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Non-Recourse Debt Associated with Financing Activities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -93,BOGZ1FL713068905A,2023-02-27,2023-02-27,"Monetary Authority; Depository Institution Loans -N.E.C. to Other Financial Business COVID-19 -Funding, Credit, and Liquidity Facilities; Asset, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:04:03-05,1,6,"Source ID: FL713068905.A For more information about the Flow of Funds tables, see the Financial +118,STFLFDNNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Non-Recourse Debt +Associated with Financing Activities, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +119,FBTALDA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Assets (Does Not +Include Land), Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:25-06,1,6,"Source ID: FL792000095.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068905&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL792000095&t=) provided by the source." -94,FBDSILA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Debt Securities; -Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:42:20-06,1,6,"Source ID: FL794122005.A For more information about the Flow of Funds tables, see the Financial +120,BOGZ1FL613066000A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Since 1992); +Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:39-05,2,2,"Source ID: FL613066000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794122005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066000&t=) provided by the source." -95,ASPTFCM,2023-02-27,2023-02-27,"Average Sales Price of Houses Sold by Type of -Financing, Conventional",1988-01-01,2022-10-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2023-01-26 09:01:19-06,9,9,No description provided. -96,MSPTFFHAI,2023-02-27,2023-02-27,"Median Sales Price of Houses Sold by Type of -Financing, FHA Insured",1988-01-01,2022-10-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2023-01-26 09:01:21-06,9,9,No description provided. -97,STFAFCXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Cash and Cash -Equivalents, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -98,DTRTXDFBAA,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:03-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -99,DTCTLVNMNM,2023-02-27,2023-02-27,"Weighted-Average Maturity of New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2014-03-05 10:03:23-06,2,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -100,STFAFCXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Cash and Cash -Equivalents, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:32-06,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -101,DTRTXDFBAM,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -102,DTRTXDFBANM,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:25-06,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -103,DTRTXDFBANA,2023-02-27,2023-02-27,"Total Real Estate Loans Owned and Securitized by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:25-06,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -104,BOGZ1FL613169333Q,2023-02-27,2023-02-27,"Finance Companies; FHLB Advances; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,3,3,"Source ID: FL613169333.Q For more information about the Flow of Funds tables, see the Financial +121,BOGZ1FL613066000Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Since 1992); +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:18-05,1,2,"Source ID: FL613066000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169333&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066000&t=) provided by the source." -105,BOGZ1FL613066223Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:09-06,3,3,"Source ID: FL613066223.Q For more information about the Flow of Funds tables, see the Financial +122,FLSTHPI,2023-03-20,2023-03-20,All-Transactions House Price Index for Florida,1975-01-01,2022-10-01,Quarterly,Q,Index 1980:Q1=100,Index 1980 Q1=100,Not Seasonally Adjusted,NSA,2023-02-28 09:02:05-06,67,67,Estimated using sales prices and appraisal data. +123,REVOLNFC,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies",1984-12-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:11-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +124,BOGZ1FL613066223Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:08-05,3,3,"Source ID: FL613066223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -464,20 +655,16 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066223&t=) provided by the source." -106,BOGZ1FA613063045Q,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:29-06,3,3,"Source ID: FA613063045.Q For more information about the Flow of Funds tables, see the Financial +125,BOGZ1FL613065000Q,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:03:51-06,3,3,"Source ID: FL613065000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065000&t=) provided by the source." -107,DTCTLHFNM,2023-02-27,2023-02-27,"Total Consumer Credit Owned and Securitized by -Finance Companies",1943-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:24-06,3,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -108,DDDI03THA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Thailand",2007-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:08-05,5,5,"Total assets held by financial institutions that do not accept transferable deposits but that +126,DDDI03RWA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Rwanda (DISCONTINUED)",1969-01-01,2003-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2013-06-04 13:08:33-05,5,5,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -492,195 +679,246 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -109,BOGZ1FL613065503Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,2,3,"Source ID: FL613065503.Q For more information about the Flow of Funds tables, see the Financial +127,DDDI03IDA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Indonesia",2009-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:21-05,5,5,"Total assets held by financial institutions that do not accept transferable deposits but that +perform financial intermediation by accepting other types of deposits or by issuing securities or +other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions +such as saving and mortgage loan institutions, post-office savings institution, building and loan +associations, finance companies that accept deposits or deposit substitutes, development banks, and +offshore banking institutions. Assets include claims on domestic real nonfinancial sector such as +central-, state- and local government, nonfinancial public enterprises and private sector. Claims +on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated +using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is other +financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data +are from the electronic version of the IMF's International Financial Statistics. Non-bank financial +institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 99B..ZF or, if not +available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and +annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and +World Bank GDP estimates) Source Code: GFDD.DI.03" +128,BOGZ1FL613066223A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:39-05,1,3,"Source ID: FL613066223.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066223&t=) provided by the source." -110,BOGZ1FL613169333A,2023-02-27,2023-02-27,"Finance Companies; FHLB Advances; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:00:04-06,1,3,"Source ID: FL613169333.A For more information about the Flow of Funds tables, see the Financial +129,DDDI12CNA156NWDB,2023-03-20,2023-03-20,"Private Credit by Deposit Money Banks and Other +Financial Institutions to GDP for China",1986-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:22:12-05,5,5,"Private credit by deposit money banks and other financial institutions to GDP. Private credit by +deposit money banks and other financial institutions to GDP, calculated using the following +deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is credit to the private +sector, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic +version of the IMF's International Financial Statistics. Private credit by deposit money banks and +other financial institutions (IFS lines 22d and 42d); GDP in local currency (IFS line 99B..ZF or, if +not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); +and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics) +Source Code: GFDD.DI.12" +130,BOGZ1FL503063013Q,2023-03-20,2023-03-20,"Other Financial Business; Corporate Bonds and +Corporate Bond Focused Exchange-Traded Fund Shares +Held by COVID-19 Corporate Credit Facilities +(CCF); Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:05-05,5,5,"Source ID: FL503063013.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169333&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL503063013&t=) provided by the source." -111,BOGZ1FL613066223A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:00:45-05,1,3,"Source ID: FL613066223.A For more information about the Flow of Funds tables, see the Financial +131,FBTCDAQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Currency and +Deposits; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:07:57-06,5,5,"Source ID: FA794000005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA794000005&t=) provided by the source." -112,BOGZ1FU613063045A,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:20-06,1,3,"Source ID: FU613063045.A For more information about the Flow of Funds tables, see the Financial +132,REVTEAEF5231YALLEST,2023-03-20,2023-03-20,"Sources of Revenue: Trading Equities on Own +Account - Net Gains (Losses) for Investment +Banking and Securities Dealing and Brokerage, All +Establishments, Employer Firms",2013-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:23-06,5,5,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +133,DMMISTRIAOFCCA,2023-03-20,2023-03-20,"Amount Outstanding of Domestic Money Market +instruments in Financial Corporations Sector, +Short-Term at Original Maturity, Residence of +Issuer in Canada",1989-01-01,2022-07-01,Quarterly,Q,Millions of US Dollars,Mil. of US $,Not Seasonally Adjusted,NSA,2023-02-27 11:03:04-06,5,5,"This series appears in Table 17a. Source Code: Q:CA:3P:B:1:A:A:A:TO1:C:A:A:A:A:I Nationality refers +to the ultimate obligor, as opposed to the immediate borrower on a residence basis, and is linked to +the consolidation of assets and liabilities for related entities. Information on a nationality basis +is useful to analyse potential support that might be available from the parent company and to +understand links between borrowers in different countries and sectors. For example, the debts of a +Cayman Islands subsidiary of a Brazilian bank may be guaranteed by the parent bank. Consistent with +the approach taken in the international banking statistics, the BIS bases the nationality of an +issuer on the residency of its controlling parent, regardless of any intermediate owners. (December +2012, BIS Quarterly Review, https://www.bis.org/publ/qtrpdf/r_qt1212h.pdf) Copyright, 2016, Bank +for International Settlements (BIS). Terms and conditions of use are available at +http://www.bis.org/terms_conditions.htm#Copyright_and_Permissions." +134,BOGZ1FL613065000A,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:14:40-06,0,3,"Source ID: FL613065000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065000&t=) provided by the source." -113,BOGZ1FU613063045Q,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:20-06,1,3,"Source ID: FU613063045.Q For more information about the Flow of Funds tables, see the Financial +135,FBLBATA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Net Lending (+) or +Borrowing (-) (Financial Account), Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:01:26-06,4,5,"Source ID: FA795000005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA795000005&t=) provided by the source." -114,BOGZ1FA613063045A,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:26:28-06,1,3,"Source ID: FA613063045.A For more information about the Flow of Funds tables, see the Financial +136,FBLBAFQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Net Lending (+) or +Borrowing (-) (Financial Account), Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:07:58-06,2,5,"Source ID: FA795000005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA795000005&t=) provided by the source." -115,TERMFCWAMNCLNS,2023-02-27,2023-02-27,"Weighted-Average Maturity of New Car Loans at Auto -Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2012-06-26 12:01:34-05,1,3,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -116,BOGZ1FL613065503A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,3,"Source ID: FL613065503.A For more information about the Flow of Funds tables, see the Financial +137,BOGZ1FL503063013A,2023-03-20,2023-03-20,"Other Financial Business; Corporate Bonds and +Corporate Bond Focused Exchange-Traded Fund Shares +Held by COVID-19 Corporate Credit Facilities +(CCF); Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:59-05,1,5,"Source ID: FL503063013.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL503063013&t=) provided by the source." -117,FBTMASQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Mortgages; -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:44:48-06,4,5,"Source ID: FL793065005.Q For more information about the Flow of Funds tables, see the Financial +138,FBTCDAA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Total Currency and +Deposits; Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:04:49-06,1,5,"Source ID: FA794000005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793065005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA794000005&t=) provided by the source." -118,FBLSRAQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Loans Including -Security Repurchase Agreements; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:08-06,4,5,"Source ID: FL794135005.Q For more information about the Flow of Funds tables, see the Financial +139,ALFAPGT100,2023-03-20,2023-03-20,"Loans to Finance Agricultural Production, Banks +Ranked 1st to 100th Largest in Size by Assets",1985-01-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-21 14:03:20-06,14,14,The 100 largest banks are measured by consolidated foreign and domestic assets. +140,MSPTFC,2023-03-20,2023-03-20,"Median Sales Price of Houses Sold by Type of +Financing, Cash Purchase",1988-01-01,2022-10-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2023-01-26 09:01:20-06,8,8,No description provided. +141,EXPEF52222TAXABL,2023-03-20,2023-03-20,"Total Expense for Sales Financing, Establishments +Subject to Federal Income Tax, Employer Firms +(DISCONTINUED)",2009-01-01,2012-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2018-12-26 15:54:38-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +142,REVEF52222ALLEST,2023-03-20,2023-03-20,"Total Revenue for Sales Financing, All +Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +143,BOGZ1FU613066020A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Before 1993); +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,1,"Source ID: FU613066020.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794135005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066020&t=) provided by the source." -119,FBTMASA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Mortgages; -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:51:40-06,2,5,"Source ID: FL793065005.A For more information about the Flow of Funds tables, see the Financial +144,BOGZ1FU613066020Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Before 1993); +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:10-05,1,1,"Source ID: FU613066020.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793065005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066020&t=) provided by the source." -120,CES5552000001,2023-02-27,2023-02-27,"All Employees, Finance and Insurance",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-03 07:45:22-06,14,14,"The series comes from the 'Current Employment Statistics (Establishment Survey).' The source code -is: CES5552000001" -121,FBLSRAA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Loans Including -Security Repurchase Agreements; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:43:00-06,1,5,"Source ID: FL794135005.A For more information about the Flow of Funds tables, see the Financial +145,BOGZ1FA613066020A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Before 1993); +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:46-05,1,1,"Source ID: FA613066020.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794135005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066020&t=) provided by the source." -122,MSPTFC,2023-02-27,2023-02-27,"Median Sales Price of Houses Sold by Type of -Financing, Cash Purchase",1988-01-01,2022-10-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2023-01-26 09:01:20-06,8,8,No description provided. -123,MSPTFCM,2023-02-27,2023-02-27,"Median Sales Price of Houses Sold by Type of -Financing, Conventional",1988-01-01,2022-10-01,Quarterly,Q,Dollars,$,Not Seasonally Adjusted,NSA,2023-01-26 09:01:16-06,8,8,No description provided. -124,REVEF52222ALLEST,2023-02-27,2023-02-27,"Total Revenue for Sales Financing, All -Establishments, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -125,BOGZ1FL613066000A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +146,BOGZ1FA613066000A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Since 1992); -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:37-05,1,1,"Source ID: FL613066000.A For more information about the Flow of Funds tables, see the Financial +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:46-05,1,1,"Source ID: FA613066000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066000&t=) provided by the source." -126,BOGZ1FL613066000Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Since 1992); -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:59-06,1,1,"Source ID: FL613066000.Q For more information about the Flow of Funds tables, see the Financial +147,REVEF52222TAXABL,2023-03-20,2023-03-20,"Total Revenue for Sales Financing, Establishments +Subject to Federal Income Tax, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +148,EXPEF52222ALLEST,2023-03-20,2023-03-20,"Total Expense for Sales Financing, All +Establishments, Employer Firms (DISCONTINUED)",2009-01-01,2012-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2018-12-26 15:52:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +149,BOGZ1FL613066020A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Before 1993); +Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:39-05,1,1,"Source ID: FL613066020.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066020&t=) provided by the source." -127,BOGZ1FU613066020A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +150,BOGZ1FR613066020A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Before 1993); -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:11:10-05,1,1,"Source ID: FU613066020.A For more information about the Flow of Funds tables, see the Financial +Asset, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:05:29-05,1,1,"Source ID: FR613066020.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066020&t=) provided by the source." -128,BOGZ1FU613066020Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +151,BOGZ1FA613066020Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Before 1993); -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:20-06,1,1,"Source ID: FU613066020.Q For more information about the Flow of Funds tables, see the Financial +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:22:28-05,0,1,"Source ID: FA613066020.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066020&t=) provided by the source." -129,BOGZ1FA613066020A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Before 1993); -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-17 02:06:35-05,1,1,"Source ID: FA613066020.A For more information about the Flow of Funds tables, see the Financial +152,BOGZ1FA613066000Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including +Captive Retail Finance Companies (Since 1992); +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:11:00-05,0,1,"Source ID: FA613066000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066000&t=) provided by the source." -130,BOGZ1FA613066000A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +153,BOGZ1FU613066000A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Since 1992); -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-13 18:02:18-05,1,1,"Source ID: FA613066000.A For more information about the Flow of Funds tables, see the Financial +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:19:23-05,0,1,"Source ID: FU613066000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066000&t=) provided by the source." -131,BOGZ1FA613066000Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +154,BOGZ1FU613066000Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Since 1992); -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:40-06,1,1,"Source ID: FA613066000.Q For more information about the Flow of Funds tables, see the Financial +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:25:01-05,0,1,"Source ID: FU613066000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066000&t=) provided by the source." -132,REVEF52222TAXABL,2023-02-27,2023-02-27,"Total Revenue for Sales Financing, Establishments -Subject to Federal Income Tax, Employer Firms",2009-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -133,EXPEF52222ALLEST,2023-02-27,2023-02-27,"Total Expense for Sales Financing, All -Establishments, Employer Firms (DISCONTINUED)",2009-01-01,2012-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2018-12-26 15:52:51-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -134,BOGZ1FL613066020A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +155,BOGZ1FL613066020Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Before 1993); -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:04:16-05,1,1,"Source ID: FL613066020.A For more information about the Flow of Funds tables, see the Financial +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:24:07-05,0,1,"Source ID: FL613066020.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -688,13 +926,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066020&t=) provided by the source." -135,EXPEF52222TAXABL,2023-02-27,2023-02-27,"Total Expense for Sales Financing, Establishments -Subject to Federal Income Tax, Employer Firms -(DISCONTINUED)",2009-01-01,2012-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2018-12-26 15:54:38-06,1,1,"For further information, please refer to the US Census Bureau's Annual Services release, online at -http://www.census.gov/services/." -136,BOGZ1FR613066020A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +156,BOGZ1FR613066020Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Before 1993); -Asset, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:03:05-05,1,1,"Source ID: FR613066020.A For more information about the Flow of Funds tables, see the Financial +Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:23:34-05,0,1,"Source ID: FR613066020.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -702,160 +936,163 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066020&t=) provided by the source." -137,BOGZ1FA613066020Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Before 1993); -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:34:57-06,0,1,"Source ID: FA613066020.Q For more information about the Flow of Funds tables, see the Financial +157,STFAFCXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Cash and Cash +Equivalents, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +158,DTRTSNM,2023-03-20,2023-03-20,"One to Four Family Real Estate Owned and +Securitized by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +159,STFAFNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +160,DTTHFXDFBAM,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +161,DTTHFXDFBANA,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:26-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +162,DTTHFXDFBANM,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:26-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +163,DTTHFXDFBAA,2023-03-20,2023-03-20,"Total Loans and Leases Outstanding at Domestic +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +164,STFAFCXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Cash and Cash +Equivalents, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:32-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +165,DTBTXDFBAA,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:15-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +166,DTBTXDFBAM,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +167,DTBTXDFBANA,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +168,DTBTXDFBANM,2023-03-20,2023-03-20,"Total Business Loans and Leases Owned and +Securitized by Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +169,DTBOEXDFBANM,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Owned by +Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +170,DTBOEXDFBANA,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Owned by +Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +171,DTCTHFXDFBAM,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:20-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +172,DTCTHFXDFBANM,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +173,DTCTHFXDFBAA,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:20-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +174,DTCTHFXDFBANA,2023-03-20,2023-03-20,"Total Consumer Loans and Leases Owned and +Securitized by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +175,BOGZ1FL615080003Q,2023-03-20,2023-03-20,"Finance Companies; Equity Capital, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:10-05,2,2,"Source ID: FL615080003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615080003&t=) provided by the source." -138,BOGZ1FU613066000A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Since 1992); -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:03:37-05,0,1,"Source ID: FU613066000.A For more information about the Flow of Funds tables, see the Financial +176,BOGZ1FL614090610Q,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:10-05,2,2,"Source ID: FL614090610.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090610&t=) provided by the source." -139,BOGZ1FU613066000Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Since 1992); -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:37:06-06,0,1,"Source ID: FU613066000.Q For more information about the Flow of Funds tables, see the Financial +177,FCLA,2023-03-20,2023-03-20,"Finance Companies; Loans; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:03:29-06,2,2,"Source ID: FL614023005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614023005&t=) provided by the source." -140,BOGZ1FL613066020Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Before 1993); -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:37:34-06,0,1,"Source ID: FL613066020.Q For more information about the Flow of Funds tables, see the Financial +178,BOGZ1FL614090005Q,2023-03-20,2023-03-20,"Finance Companies; Total Financial Assets, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,2,2,"Source ID: FL614090005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090005&t=) provided by +the source." +179,BOGZ1FA613169333Q,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:23:32-06,2,2,"Source ID: FA613169333.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169333&t=) provided by +the source." +180,BOGZ1FA613065200Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Transactions",1970-07-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:11:00-05,2,2,"Source ID: FA613065200.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065200&t=) provided by the source." -141,BOGZ1FR613066020Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including -Captive Retail Finance Companies (Before 1993); -Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:35:33-06,0,1,"Source ID: FR613066020.Q For more information about the Flow of Funds tables, see the Financial +181,BOGZ1FA613063045Q,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:29-06,2,2,"Source ID: FA613063045.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066020&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063045&t=) provided by the source." -142,STFLFDMXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Notes, Bonds, and -Debentures, Flow",1985-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -143,DTTHFABAM,2023-02-27,2023-02-27,"Total Owned and Managed Receivables Outstanding -Held by Finance Companies",1970-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:25-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -144,STFLFLNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Bank Loans",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -145,STFAFNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -146,DTBNVNM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases -Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -147,DTBTXDFBAA,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:15-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -148,DTBTXDFBAM,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -149,DTBTXDFBANA,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -150,DTBTXDFBANM,2023-02-27,2023-02-27,"Total Business Loans and Leases Owned and -Securitized by Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -151,DTTHFXDFBANM,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:26-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -152,DTTHFXDFBAM,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -153,DTTHFXDFBANA,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:26-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -154,DTTHFXDFBAA,2023-02-27,2023-02-27,"Total Loans and Leases Outstanding at Domestic -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:25-06,1,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -155,CEU5552000001,2023-02-27,2023-02-27,"All Employees, Finance and Insurance",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-02-03 07:46:38-06,1,14,"The series comes from the 'Current Employment Statistics (Establishment Survey).' The source code -is: CEU5552000001" -156,BOGZ1FL614090610Q,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:09-06,2,2,"Source ID: FL614090610.Q For more information about the Flow of Funds tables, see the Financial +182,BOGZ1FL613065200Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Level",1970-04-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:11:07-05,2,2,"Source ID: FL613065200.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090610&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065200&t=) provided by the source." -157,SMU48191005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:07:54-06,2,2,No description provided. -158,SMU48191005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:52:48-06,2,2,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU48191005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -159,SMU72000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Puerto Rico",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:01:48-06,2,2,No description provided. -160,FCLA,2023-02-27,2023-02-27,"Finance Companies; Loans; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:44:32-06,2,2,"Source ID: FL614023005.Q For more information about the Flow of Funds tables, see the Financial +183,BOGZ1LM613063003Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Asset, Market Value Levels",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:04:52-06,2,2,"Source ID: LM613063003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614023005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613063003&t=) provided by the source." -161,BOGZ1FL613065200Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Level",1970-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:07-06,2,2,"Source ID: FL613065200.Q For more information about the Flow of Funds tables, see the Financial +184,BOGZ1FL613178005Q,2023-03-20,2023-03-20,"Finance Companies; Total Taxes Payable; Liability, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,2,2,"Source ID: FL613178005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065200&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613178005&t=) provided by the source." -162,NREVNFC,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Owned by Finance -Companies",1943-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:19-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -163,SMS04000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arizona",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:47-06,2,2,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -164,BOGZ1FA613163083Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,2,2,"Source ID: FA613163083.Q For more information about the Flow of Funds tables, see the Financial +185,BOGZ1FR713068863Q,2023-03-20,2023-03-20,"Monetary Authority; Loans to Finance Companies +Under the Paycheck Protection Program Liquidity +Facility (PPPLF); Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:21:40-06,2,2,"Source ID: FR713068863.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR713068863&t=) provided by the source." -165,SMS17000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Illinois",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:26-06,2,2,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -166,DTCNLNHFNM,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Securitized by -Finance Companies",1989-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:22-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -167,DDDI03ZMA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Zambia",2011-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:34:22-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that +186,NREVNFC,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Owned by Finance +Companies",1943-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:27-06,2,2,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +187,SMS36000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:41-05,2,2,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +188,DDDI03KRA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Republic of Korea",1960-01-01,2005-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:24:55-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -870,8 +1107,8 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -168,DDDI03ECA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Ecuador",1998-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:34:25-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that +189,DDDI03JPA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Japan",2001-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-08-04 09:47:38-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -886,8 +1123,8 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -169,DDDI03RWA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Rwanda (DISCONTINUED)",1969-01-01,2003-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2013-06-04 13:08:33-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that +190,DDDI03THA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Thailand",2007-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:08-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -902,8 +1139,32 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -170,BOGZ1FL614090610A,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:36-05,1,2,"Source ID: FL614090610.A For more information about the Flow of Funds tables, see the Financial +191,DDDI03ZWA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Zimbabwe",1975-01-01,2002-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-08-04 09:48:16-05,4,4,"Total assets held by financial institutions that do not accept transferable deposits but that +perform financial intermediation by accepting other types of deposits or by issuing securities or +other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions +such as saving and mortgage loan institutions, post-office savings institution, building and loan +associations, finance companies that accept deposits or deposit substitutes, development banks, and +offshore banking institutions. Assets include claims on domestic real nonfinancial sector such as +central-, state- and local government, nonfinancial public enterprises and private sector. Claims +on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated +using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is other +financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data +are from the electronic version of the IMF's International Financial Statistics. Non-bank financial +institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 99B..ZF or, if not +available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and +annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and +World Bank GDP estimates) Source Code: GFDD.DI.03" +192,BOGZ1FL615080003A,2023-03-20,2023-03-20,"Finance Companies; Equity Capital, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,2,"Source ID: FL615080003.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615080003&t=) provided by +the source." +193,BOGZ1FL614090610A,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,2,"Source ID: FL614090610.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -911,11 +1172,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090610&t=) provided by the source." -171,SMU48191005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:23:51-05,1,2,No description provided. -172,SMS72000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Puerto Rico",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:41:25-06,1,2,No description provided. -173,BOGZ1FL614023005A,2023-02-27,2023-02-27,"Finance Companies; Loans; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:56-05,1,2,"Source ID: FL614023005.A For more information about the Flow of Funds tables, see the Financial +194,BOGZ1FL614023005A,2023-03-20,2023-03-20,"Finance Companies; Loans; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,2,"Source ID: FL614023005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -923,157 +1180,227 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614023005&t=) provided by the source." -174,BOGZ1FL614104005A,2023-02-27,2023-02-27,"Finance Companies; Debt Securities and Loans; -Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:03-05,1,2,"Source ID: FL614104005.A For more information about the Flow of Funds tables, see the Financial +195,BOGZ1FL614090005A,2023-03-20,2023-03-20,"Finance Companies; Total Financial Assets, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,2,"Source ID: FL614090005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614104005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090005&t=) provided by the source." -175,BOGZ1FL613065200A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Level",1970-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:04:16-05,1,2,"Source ID: FL613065200.A For more information about the Flow of Funds tables, see the Financial +196,BOGZ1FA613169333A,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,2,"Source ID: FA613169333.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065200&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169333&t=) provided by the source." -176,BOGZ1FU614090610A,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:10-05,1,2,"Source ID: FU614090610.A For more information about the Flow of Funds tables, see the Financial +197,BOGZ1FU613065200A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Transactions",1971-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,2,"Source ID: FU613065200.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU614090610&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065200&t=) provided by the source." -177,BOGZ1FU614090610Q,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,2,"Source ID: FU614090610.Q For more information about the Flow of Funds tables, see the Financial +198,BOGZ1FA613065200A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Transactions",1971-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:47-05,1,2,"Source ID: FA613065200.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU614090610&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065200&t=) provided by the source." -178,BOGZ1FA614090610Q,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,2,"Source ID: FA614090610.Q For more information about the Flow of Funds tables, see the Financial +199,BOGZ1FA613163083Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,2,"Source ID: FA613163083.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614090610&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163083&t=) provided by the source." -179,BOGZ1FA614090610A,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-13 18:00:19-05,1,2,"Source ID: FA614090610.A For more information about the Flow of Funds tables, see the Financial +200,BOGZ1FU613163083A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:19:23-05,1,2,"Source ID: FU613163083.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614090610&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613163083&t=) provided by the source." -180,SMU04000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arizona",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:47:26-05,1,2,No description provided. -181,SMU04000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arizona",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:41:13-06,1,2,No description provided. -182,SMU17000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Illinois",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:35:05-06,1,2,No description provided. -183,SMU17000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Illinois",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:40:21-05,1,2,No description provided. -184,BOGZ1FL614190005Q,2023-02-27,2023-02-27,"Finance Companies; Total Liabilities, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:26-06,1,2,"Source ID: FL614190005.Q For more information about the Flow of Funds tables, see the Financial +201,BOGZ1FU613163083Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:25:00-05,1,2,"Source ID: FU613163083.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614190005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613163083&t=) provided by the source." -185,BOGZ1FL614190005A,2023-02-27,2023-02-27,"Finance Companies; Total Liabilities, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:56-05,1,2,"Source ID: FL614190005.A For more information about the Flow of Funds tables, see the Financial +202,BOGZ1FU613063045A,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:20-06,1,2,"Source ID: FU613063045.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614190005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063045&t=) provided by the source." -186,SMU72000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Puerto Rico",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:20:07-05,0,2,No description provided. -187,BOGZ1FA613163083A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-13 18:00:19-05,0,2,"Source ID: FA613163083.A For more information about the Flow of Funds tables, see the Financial +203,BOGZ1FU613063045Q,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:20-06,1,2,"Source ID: FU613063045.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063045&t=) provided by the source." -188,BOGZ1FU613163083A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:03:37-05,0,2,"Source ID: FU613163083.A For more information about the Flow of Funds tables, see the Financial +204,BOGZ1FA613063045A,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:26:28-06,1,2,"Source ID: FA613063045.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063045&t=) provided by the source." -189,BOGZ1FU613163083Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:36:59-06,0,2,"Source ID: FU613163083.Q For more information about the Flow of Funds tables, see the Financial +205,BOGZ1FL613065200A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Level",1970-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:39-05,1,2,"Source ID: FL613065200.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065200&t=) provided by +the source." +206,SMU17000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Illinois",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:25:55-05,1,2,No description provided. +207,SMS17000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Illinois",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:22-05,1,2,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +208,SMU17000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Illinois",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:42:25-05,1,2,No description provided. +209,SMU36000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:15:59-05,1,2,No description provided. +210,SMU36000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:39:11-05,1,2,No description provided. +211,BOGZ1FU613169333A,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:11:13-06,0,2,"Source ID: FU613169333.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169333&t=) provided by +the source." +212,BOGZ1FU613169333Q,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:19:51-06,0,2,"Source ID: FU613169333.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169333&t=) provided by +the source." +213,BOGZ1FU613065200Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Transactions",1970-07-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:25:01-05,0,2,"Source ID: FU613065200.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065200&t=) provided by +the source." +214,BOGZ1FA613163083A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:08:33-05,0,2,"Source ID: FA613163083.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163083&t=) provided by +the source." +215,BOGZ1LM613063003A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Asset, Market Value Levels",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:10:26-06,0,2,"Source ID: LM613063003.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613063003&t=) provided by the source." -190,FBLIEQQ027S,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Liabilities and -Equity, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:08-06,4,4,"Source ID: FL794194005.Q For more information about the Flow of Funds tables, see the Financial +216,BOGZ1FL613178005A,2023-03-20,2023-03-20,"Finance Companies; Total Taxes Payable; Liability, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:14:39-06,0,2,"Source ID: FL613178005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794194005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613178005&t=) provided by the source." -191,BOGZ1FL503069003Q,2023-02-27,2023-02-27,"Other Financial Business; Loans to Hedge Funds and -Private Domestic Equity Funds from the Term Asset- -Backed Securities Loan Facility LLC (TALF II); -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:39-06,4,4,"Source ID: FL503069003.Q For more information about the Flow of Funds tables, see the Financial +217,BOGZ1FR713068863A,2023-03-20,2023-03-20,"Monetary Authority; Loans to Finance Companies +Under the Paycheck Protection Program Liquidity +Facility (PPPLF); Asset, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:13:19-06,0,2,"Source ID: FR713068863.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL503069003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR713068863&t=) provided by the source." -192,FBLIEQA027N,2023-02-27,2023-02-27,"Domestic Financial Sectors; Total Liabilities and -Equity, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:43:00-06,1,4,"Source ID: FL794194005.A For more information about the Flow of Funds tables, see the Financial +218,B1305C1A027NBEA,2023-03-20,2023-03-20,"Monetary interest paid: Domestic: Corporate +business: Financial: on deposits",1959-01-01,2021-01-01,Annual,A,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2022-10-12 14:00:12-05,4,4,"BEA Account Code: B1305C For more information about this series, please see +http://www.bea.gov/national/." +219,REVFPIEF5231YALLEST,2023-03-20,2023-03-20,"Sources of Revenue: Financial Planning and +Investment Management Services for Individuals for +Investment Banking and Securities Dealing and +Brokerage, All Establishments, Employer Firms",2013-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:19:14-06,4,4,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +220,USPCEFININS,2023-03-20,2023-03-20,"Personal Consumption Expenditures: Services: +Financial Services and Insurance for United States",1997-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-10-06 08:04:02-05,4,4,"A measure of spending on goods and services purchased by, and on behalf of, households based on +households' state of residence in the fifty states and the District of Columbia. Spending on +financial services and insurance. Financial services consist of financial services furnished without +payment, and financial service charges, fees, and commissions. Insurance consists of life insurance, +net household insurance, net health insurance, net motor vehicle and other transportation +insurance.For more information about this release go to +http://www.bea.gov/newsreleases/regional/pce/pce_newsrelease.htm." +221,FBTSAAQ027S,2023-03-20,2023-03-20,"Domestic Financial Sectors; Treasury Securities; +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:10-06,4,4,"Source ID: FL793061105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL794194005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793061105&t=) provided by the source." -193,BOGZ1FL503069003A,2023-02-27,2023-02-27,"Other Financial Business; Loans to Hedge Funds and -Private Domestic Equity Funds from the Term Asset- -Backed Securities Loan Facility LLC (TALF II); -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:00:53-06,1,4,"Source ID: FL503069003.A For more information about the Flow of Funds tables, see the Financial +222,REVTDIEF5231YALLEST,2023-03-20,2023-03-20,"Sources of Revenue: Trading Debt Instruments on +Own Account - Net Gains (Losses) for Investment +Banking and Securities Dealing and Brokerage, All +Establishments, Employer Firms",2013-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-19 11:20:24-06,4,4,"For further information, please refer to the US Census Bureau's Annual Services release, online at +http://www.census.gov/services/." +223,CIS2010000110000I,2023-03-20,2023-03-20,"Employment Cost Index: Total compensation for +Private industry workers in Management, business, +and financial",2002-01-01,2022-10-01,Quarterly,Q,Index Dec 2005=100,Index Dec 2005=100,Seasonally Adjusted,SA,2023-01-31 07:51:24-06,3,4,See Footnote T on https://www.bls.gov/ect/cimapnote.htm +224,FBTSAAA027N,2023-03-20,2023-03-20,"Domestic Financial Sectors; Treasury Securities; +Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:24-06,1,4,"Source ID: FL793061105.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL503069003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793061105&t=) provided by the source." -194,JTU5200JOL,2023-02-27,2023-02-27,Job Openings: Finance and Insurance,2000-12-01,2022-12-01,Monthly,M,Level in Thousands,Level in Thous.,Not Seasonally Adjusted,NSA,2023-02-01 09:04:07-06,12,13,No description provided. -195,BOGZ1FR613066000A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +225,CIU2010000110000I,2023-03-20,2023-03-20,"Employment Cost Index: Total compensation for +Private industry workers in Management, business, +and financial",2001-01-01,2022-10-01,Quarterly,Q,Index Dec 2005=100,Index: Dec 2005=100,Not Seasonally Adjusted,NSA,2023-01-31 07:51:21-06,1,4,"Includes wages, salaries, and employer costs for employee benefits." +226,JTU5200JOL,2023-03-20,2023-03-20,Job Openings: Finance and Insurance,2000-12-01,2023-01-01,Monthly,M,Level in Thousands,Level in Thous.,Not Seasonally Adjusted,NSA,2023-03-08 09:04:05-06,12,13,No description provided. +227,BOGZ1FR613066000A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Since 1992); -Asset, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:15:34-05,0,0,"Source ID: FR613066000.A For more information about the Flow of Funds tables, see the Financial +Asset, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:17:22-05,0,0,"Source ID: FR613066000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -1081,9 +1408,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066000&t=) provided by the source." -196,BOGZ1FR613066000Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Including +228,BOGZ1FR613066000Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Including Captive Retail Finance Companies (Since 1992); -Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:35:33-06,0,0,"Source ID: FR613066000.Q For more information about the Flow of Funds tables, see the Financial +Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:23:34-05,0,0,"Source ID: FR613066000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -1091,574 +1418,557 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066000&t=) provided by the source." -197,STFCFNQ,2023-02-27,2023-02-27,"Domestic Finance Companies; Capital, Surplus, and -Undivided Profits",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +229,DTCOLRHFNM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned by Finance +Companies, Level",1984-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -198,DTCTLNVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Owned and Securitized -by Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -199,DTCNLNVHFXDFBANA,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Securitized by -Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +230,STFLFLNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Bank Loans",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -200,DTCNLNVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Securitized by -Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +231,DTROSXDFBANA,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Owned by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -201,STFLFDOXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Notes, Bonds, and -Debentures, Flow (DISCONTINUED)",1985-07-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +232,DTROSXDFBANM,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Owned by +Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -202,STFLFDOXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Notes, Bonds, and -Debentures, Flow (DISCONTINUED)",1985-07-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +233,STFCFNQ,2023-03-20,2023-03-20,"Domestic Finance Companies; Capital, Surplus, and +Undivided Profits",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -203,DTCTLRHFXDFBANM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned and Securitized by -Finance Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -204,DTBNVXDFBANA,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases -Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +234,DTCNLNVHFXDFBANA,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Securitized by +Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -205,DTBOEXDFBANM,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Owned by -Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +235,DTCNLNVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Securitized by +Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -206,DTBOEXDFBANA,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Owned by -Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +236,STFLFDMXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Notes, Bonds, and +Debentures, Flow",1985-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +237,DTCTLVUMNM,2023-03-20,2023-03-20,"Weighted-Average Maturity of Used Car Loans at +Auto Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2014-03-05 10:03:28-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -207,STFAFLXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Losses, -Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +238,DTCTLNVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Owned and Securitized +by Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +239,STFLFPNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Commercial Paper",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -208,STFAFLXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Losses, -Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +240,STFLFDONQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Notes, Bonds, and +Debentures, Outstanding (DISCONTINUED)",1985-04-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -209,STFLFPNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Commercial Paper",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +241,DTRNSNM,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Securitized +by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -210,DTBOVLRXDFBANM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +242,STFLFDMNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Notes, Bonds, and +Debentures, Level",1985-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +243,DTBNVNM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases +Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -211,DTBOVLRXDFBANA,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +244,DTCTLRHFXDFBANM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned and Securitized by +Finance Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +245,STFTFXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Liabilities and +Equity Capital, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -212,DTBNELXDFBANA,2023-02-27,2023-02-27,"Business Equipment Loans Securitized by Finance -Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +246,STFTFXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Liabilities and +Equity Capital, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -213,DTBNELXDFBANM,2023-02-27,2023-02-27,"Business Equipment Loans Securitized by Finance -Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +247,DTBNVLWNM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Securitized +by Finance Companies, Level",1990-08-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -214,STFTFXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Liabilities and -Equity Capital, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +248,DTCNLNVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Loans Securitized by +Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -215,STFTFXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Liabilities and -Equity Capital, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +249,DTBNELNM,2023-03-20,2023-03-20,"Business Equipment Loans Securitized by Finance +Companies, Level",1992-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -216,DTCTLNVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Owned and Securitized -by Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -217,STFAFXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +250,DTBNENM,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Securitized by +Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -218,STFAFXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Total Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +251,DTRTABAM,2023-03-20,2023-03-20,"Total Real Estate Owned and Managed Receivables +Outstanding Held by Finance Companies",1970-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -219,DTCTHFXDFBAA,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Seasonally Adjusted,SA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +252,DTBNELXDFBANA,2023-03-20,2023-03-20,"Business Equipment Loans Securitized by Finance +Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -220,DTCTHFXDFBAM,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Seasonally Adjusted,SA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +253,DTBNELXDFBANM,2023-03-20,2023-03-20,"Business Equipment Loans Securitized by Finance +Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -221,DTCTHFXDFBANM,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +254,DTBOVLRXDFBANM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -222,DTCTHFXDFBANA,2023-02-27,2023-02-27,"Total Consumer Loans and Leases Owned and -Securitized by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +255,DTBOVLRXDFBANA,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -223,DTBNENM,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Securitized by -Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:04-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +256,DTBNVLWXDFBANA,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Securitized +by Finance Companies, Flow",1990-09-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -224,DTCTLVUMNM,2023-02-27,2023-02-27,"Weighted-Average Maturity of Used Car Loans at -Auto Finance Companies (DISCONTINUED)",1971-06-01,2011-01-01,Monthly,M,Months,Months,Not Seasonally Adjusted,NSA,2014-03-05 10:03:28-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +257,DTBNVLWXDFBANM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Securitized +by Finance Companies, Flow",1990-09-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -225,DTCNLNVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Loans Securitized by -Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +258,STFAFXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -226,DTBOVNM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases Owned by -Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +259,STFAFXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Total Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:37-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -227,DTBOVXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +260,STFAFLXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Losses, +Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -228,DTBOVXDFBANA,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +261,STFAFLXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Losses, +Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -229,DTRTSNM,2023-02-27,2023-02-27,"One to Four Family Real Estate Owned and -Securitized by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -230,DTCNRVHFXDFBANA,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Securitized by +262,DTCNRVHFXDFBANA,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -231,DTCNRVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Securitized by +263,DTCNRVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -232,DTCOLRHFNM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned by Finance -Companies, Level",1984-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -233,DTCTHFABAM,2023-02-27,2023-02-27,"Total Consumer Owned and Managed Receivables -Outstanding Held by Finance Companies",1985-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -234,DTCNLRHFXDFBANA,2023-02-27,2023-02-27,"Revolving Consumer Credit Securitized by Finance +264,DTCNLRHFXDFBANA,2023-03-20,2023-03-20,"Revolving Consumer Credit Securitized by Finance Companies, Flow",1997-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -235,DTCNLRHFXDFBANM,2023-02-27,2023-02-27,"Revolving Consumer Credit Securitized by Finance +265,DTCNLRHFXDFBANM,2023-03-20,2023-03-20,"Revolving Consumer Credit Securitized by Finance Companies, Flow",1997-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -236,STFLFDMNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Notes, Bonds, and -Debentures, Level",1985-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -237,DTCNRVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Securitized by +266,DTBOVRXDFBANA,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Owned by Finance +Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +267,DTBOVRXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Owned by Finance +Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +268,DTBNVXDFBANA,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases +Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +269,DTCNRVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -238,DTBNVLRNM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Securitized by -Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +270,DTBTABAM,2023-03-20,2023-03-20,"Total Business Owned and Managed Receivables +Outstanding Held by Finance Companies",1985-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -239,DTBOVLRNM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Owned by -Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +271,DTBNVLRXDFBANA,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Securitized by +Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -240,DTROSNM,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Owned by -Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +272,DTROONM,2023-03-20,2023-03-20,"Other Real Estate Loans Owned by Finance +Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -241,STFLFLXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Bank Loans, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +273,DTCTHFABAM,2023-03-20,2023-03-20,"Total Consumer Owned and Managed Receivables +Outstanding Held by Finance Companies",1985-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -242,STFLFLXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Bank Loans, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +274,STFLFLXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Bank Loans, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -243,STFAFLNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Losses",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +275,STFLFLXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Bank Loans, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -244,STFAFOXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Assets and +276,DTCTLRHFNM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned and Securitized by +Finance Companies, Level",1984-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +277,STFAFOXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Assets and Accounts and Notes Receivable, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -245,STFAFOXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Assets and +278,STFAFOXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Assets and Accounts and Notes Receivable, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -246,DTROSXDFBANA,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Owned by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +279,DTBOELNM,2023-03-20,2023-03-20,"Business Equipment Loans Owned by Finance +Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -247,DTROSXDFBANM,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Owned by -Finance Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +280,DTBOVNM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Owned by +Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -248,DTRTABAM,2023-02-27,2023-02-27,"Total Real Estate Owned and Managed Receivables -Outstanding Held by Finance Companies",1970-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +281,STFLFDOXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Notes, Bonds, and +Debentures, Flow (DISCONTINUED)",1985-07-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -249,DTCTLRHFNM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned and Securitized by -Finance Companies, Level",1984-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -250,DTBNVLWNM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Securitized -by Finance Companies, Level",1990-08-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +282,STFLFDOXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Notes, Bonds, and +Debentures, Flow (DISCONTINUED)",1985-07-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -251,DTBTVLRXDFBANM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Owned and -Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -252,DTCOLNOHFXDFBANA,2023-02-27,2023-02-27,"Other Consumer Loans Owned by Finance Companies, -Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +283,DTBOVXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -253,DTBOVRXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Owned by Finance -Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +284,DTBOVXDFBANA,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -254,DTBOVRXDFBANA,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Owned by Finance -Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +285,STFAFLNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Losses",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -255,DTBNVLWXDFBANA,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Securitized -by Finance Companies, Flow",1990-09-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +286,DTBNVLRNM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Securitized by +Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -256,DTBNVLWXDFBANM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Securitized -by Finance Companies, Flow",1990-09-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +287,DTBTVLRXDFBANM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Owned and +Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +288,DTBOVLRNM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Owned by +Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -257,STFAFUXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Unearned -Income, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +289,DTBNONM,2023-03-20,2023-03-20,"Other Business Receivables Securitized by Finance +Companies, Level",1990-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -258,STFAFUXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Unearned -Income, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +290,DTROOXDFBANA,2023-03-20,2023-03-20,"Other Real Estate Loans Owned by Finance +Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -259,DTBTELNM,2023-02-27,2023-02-27,"Business Equipment Loans Owned and Securitized by +291,DTROOXDFBANM,2023-03-20,2023-03-20,"Other Real Estate Loans Owned by Finance +Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +292,DTBTELNM,2023-03-20,2023-03-20,"Business Equipment Loans Owned and Securitized by Finance Companies, Level",1992-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -260,DTBNELNM,2023-02-27,2023-02-27,"Business Equipment Loans Securitized by Finance -Companies, Level",1992-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:05-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -261,DTRNSNM,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Securitized -by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -262,STFTFNQ,2023-02-27,2023-02-27,"Domestic Finance Companies; Total Liabilities and -Capital",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +293,DTROSNM,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Owned by +Finance Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -263,DTCTRVHFNM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Owned and +294,DTCTRVHFNM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Owned and Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -264,DTBOENM,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Owned by +295,DTBOENM,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Owned by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -265,DTBOELXDFBANA,2023-02-27,2023-02-27,"Business Equipment Loans Owned by Finance +296,STFAFUXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Unearned +Income, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +297,STFAFUXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Unearned +Income, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +298,STFTFNQ,2023-03-20,2023-03-20,"Domestic Finance Companies; Total Liabilities and +Capital",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +299,DTCNLRHFNM,2023-03-20,2023-03-20,"Revolving Consumer Credit Securitized by Finance +Companies, Level",1997-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +300,DTBOELXDFBANA,2023-03-20,2023-03-20,"Business Equipment Loans Owned by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -266,DTBOELXDFBANM,2023-02-27,2023-02-27,"Business Equipment Loans Owned by Finance +301,DTBOELXDFBANM,2023-03-20,2023-03-20,"Business Equipment Loans Owned by Finance Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -267,DTBOVRNM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Owned by Finance -Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -268,DTBTENM,2023-02-27,2023-02-27,"Business Equipment Owned and Securitized by +302,DTBTENM,2023-03-20,2023-03-20,"Business Equipment Owned and Securitized by Finance Companies, Level",2006-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -269,DTCNLRHFNM,2023-02-27,2023-02-27,"Revolving Consumer Credit Securitized by Finance -Companies, Level",1997-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -270,DTBNERNM,2023-02-27,2023-02-27,"Business Equipment Leases Securitized by Finance +303,DTBNERNM,2023-03-20,2023-03-20,"Business Equipment Leases Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -271,DTBOVLWNM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Owned by -Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -272,DTBNOXDFBANA,2023-02-27,2023-02-27,"Other Business Receivables Securitized by Finance -Companies, Flow",1991-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -273,DTCOLNOHFNM,2023-02-27,2023-02-27,"Other Consumer Loans Owned by Finance Companies, -Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +304,DTCOLNOHFXDFBANA,2023-03-20,2023-03-20,"Other Consumer Loans Owned by Finance Companies, +Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -274,DTBOVLWXDFBANA,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +305,DTBOVLWNM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Owned by +Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -275,DTBOVLWXDFBANM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Owned by -Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +306,DTBOVRNM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Owned by Finance +Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -276,DTRNONM,2023-02-27,2023-02-27,"Other Real Estate Loans Securitized by Finance +307,DTRNONM,2023-03-20,2023-03-20,"Other Real Estate Loans Securitized by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -277,DTBTVLWNM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Owned and +308,DTBTVLWNM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Owned and Securitized by Finance Companies, Level",1990-08-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -278,STFAFGRXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Real Estate +309,DTBNOXDFBANA,2023-03-20,2023-03-20,"Other Business Receivables Securitized by Finance +Companies, Flow",1991-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +310,STFAFGRXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Real Estate Accounts Receivable Excluding Pools of Securitized Real Estate Assets, Flow",1970-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -279,STFAFGRXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Real Estate +311,STFAFGRXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Real Estate Accounts Receivable Excluding Pools of Securitized Real Estate Assets, Flow",1970-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -280,DTRTONM,2023-02-27,2023-02-27,"Other Real Estate Loans Owned and Securitized by -Finance Companies, Level",2006-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -281,STFLFDPNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Debt Due to Parent",1987-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -282,DTRNSXDFBANA,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Securitized -by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +312,DTBOVLWXDFBANA,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -283,DTRNSXDFBANM,2023-02-27,2023-02-27,"One to Four Family Real Estate Loans Securitized -by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +313,DTBOVLWXDFBANM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Owned by +Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -284,DTRNOXDFBANA,2023-02-27,2023-02-27,"Other Real Estate Loans Securitized by Finance +314,DTRNOXDFBANA,2023-03-20,2023-03-20,"Other Real Estate Loans Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -285,DTRNOXDFBANM,2023-02-27,2023-02-27,"Other Real Estate Loans Securitized by Finance +315,DTRNOXDFBANM,2023-03-20,2023-03-20,"Other Real Estate Loans Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -286,DTBTVLRNM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Owned and -Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -287,DTCORVHFXDFBANA,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Owned by Finance -Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -288,DTCORVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Owned by Finance -Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +316,STFLFDPNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Debt Due to Parent",1987-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -289,DTCTLNOHFNM,2023-02-27,2023-02-27,"Other Consumer Loans Owned and Securitized by -Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -290,DTBOELNM,2023-02-27,2023-02-27,"Business Equipment Loans Owned by Finance -Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +317,DTCOLNOHFNM,2023-03-20,2023-03-20,"Other Consumer Loans Owned by Finance Companies, +Level",1943-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -291,STFAFSXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Securities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:40-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +318,DTRNSXDFBANA,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Securitized +by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -292,STFAFSXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Securities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +319,DTRNSXDFBANM,2023-03-20,2023-03-20,"One to Four Family Real Estate Loans Securitized +by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:22-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -293,DTBOERXDFBANA,2023-02-27,2023-02-27,"Business Equipment Leases Owned by Finance -Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +320,DTCTLNOHFNM,2023-03-20,2023-03-20,"Other Consumer Loans Owned and Securitized by +Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +321,DTRTONM,2023-03-20,2023-03-20,"Other Real Estate Loans Owned and Securitized by +Finance Companies, Level",2006-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +322,DTCORVHFXDFBANA,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Owned by Finance +Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -294,DTBOERXDFBANM,2023-02-27,2023-02-27,"Business Equipment Leases Owned by Finance -Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +323,DTCORVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Owned by Finance +Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -295,DTBTVNM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases Owned and -Securitized by Finance Companies, Level",2006-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +324,DTBTVLRNM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Owned and +Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -296,STFAFNNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Net Accounts -Receivable Excluding Pools of Securitized Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -297,DTBOERNM,2023-02-27,2023-02-27,"Business Equipment Leases Owned by Finance +325,DTRTSXDFBANM,2023-03-20,2023-03-20,"One to Four Family Real Estate Owned and +Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +326,DTBOERNM,2023-03-20,2023-03-20,"Business Equipment Leases Owned by Finance Companies, Level",1985-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -298,DTRTSXDFBANM,2023-02-27,2023-02-27,"One to Four Family Real Estate Owned and -Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +327,DTBTVNM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Owned and +Securitized by Finance Companies, Level",2006-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -299,DTBNERXDFBANA,2023-02-27,2023-02-27,"Business Equipment Leases Securitized by Finance +328,DTBNERXDFBANA,2023-03-20,2023-03-20,"Business Equipment Leases Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -300,DTBNERXDFBANM,2023-02-27,2023-02-27,"Business Equipment Leases Securitized by Finance +329,DTBNERXDFBANM,2023-03-20,2023-03-20,"Business Equipment Leases Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -301,DTBNVLRXDFBANA,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Securitized by -Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +330,STFAFNNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Net Accounts +Receivable Excluding Pools of Securitized Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -302,DTBTVXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases Owned and +331,STFAFSXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Securities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:40-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +332,STFAFSXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Securities, Flow",2011-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +333,DTBTVXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Owned and Securitized by Finance Companies, Flow",2006-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -303,DTCNLNOHFXDFBANA,2023-02-27,2023-02-27,"Other Consumer Loans Securitized by Finance +334,DTBOERXDFBANA,2023-03-20,2023-03-20,"Business Equipment Leases Owned by Finance +Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +335,DTBOERXDFBANM,2023-03-20,2023-03-20,"Business Equipment Leases Owned by Finance +Companies, Flow",1985-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +336,DTCNLNOHFXDFBANA,2023-03-20,2023-03-20,"Other Consumer Loans Securitized by Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -304,DTBNVRNM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Securitized by -Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +337,STFLFONQ,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Liabilities",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -305,STFLFONQ,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Liabilities",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +338,DTBNVRNM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Securitized by +Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -306,STFAFGXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Accounts +339,STFAFGXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Accounts Receivable Excluding Pools of Securitized Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:40-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -307,STFAFGXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Accounts +340,STFAFGXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Accounts Receivable Excluding Pools of Securitized Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -308,DTBTABAM,2023-02-27,2023-02-27,"Total Business Owned and Managed Receivables -Outstanding Held by Finance Companies",1985-07-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted Annual Rate,SAAR,2023-02-17 13:48:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -309,DTROONM,2023-02-27,2023-02-27,"Other Real Estate Loans Owned by Finance -Companies, Level",1970-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -310,DTBNEXDFBANA,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Securitized by -Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -311,DTBNEXDFBANM,2023-02-27,2023-02-27,"Business Equipment Loans and Leases Securitized by -Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -312,DTBNVRXDFBANA,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Securitized by +341,DTBTVRNM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Owned and +Securitized by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +342,DTBNVRXDFBANA,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -313,DTBNVRXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Securitized by +343,DTBNVRXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:08-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -314,DTBTVRNM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Owned and -Securitized by Finance Companies, Level",1996-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -315,STFLFDPXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Debt Due to Parent +344,STFLFDPXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Debt Due to Parent Company, Flow",1988-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -316,DTBTELXDFBANM,2023-02-27,2023-02-27,"Business Equipment Loans Owned and Securitized by -Finance Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -317,STFAFSNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Securities, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -318,DTBTERXDFBANM,2023-02-27,2023-02-27,"Business Equipment Leases Owned and Securitized by +345,DTBTERXDFBANM,2023-03-20,2023-03-20,"Business Equipment Leases Owned and Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -319,STFAFGRNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Real Estate +346,DTBTELXDFBANM,2023-03-20,2023-03-20,"Business Equipment Loans Owned and Securitized by +Finance Companies, Flow",1992-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +347,STFAFGRNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Real Estate Accounts Receivable Excluding Pools of Securitized Real Estate Assets",1970-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:34-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -320,DTBNONM,2023-02-27,2023-02-27,"Other Business Receivables Securitized by Finance -Companies, Level",1990-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +348,DTBNEXDFBANA,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Securitized by +Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +349,DTBNEXDFBANM,2023-03-20,2023-03-20,"Business Equipment Loans and Leases Securitized by +Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:06-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -321,DTBTERNM,2023-02-27,2023-02-27,"Business Equipment Leases Owned and Securitized by +350,DTBTERNM,2023-03-20,2023-03-20,"Business Equipment Leases Owned and Securitized by Finance Companies, Level",1990-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -322,DTBOONM,2023-02-27,2023-02-27,"Other Business Receivables Owned by Finance +351,DTBOONM,2023-03-20,2023-03-20,"Other Business Receivables Owned by Finance Companies, Level",1980-06-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -323,DTCNLNOHFNM,2023-02-27,2023-02-27,"Other Consumer Loans Securitized by Finance +352,DTCNLNOHFNM,2023-03-20,2023-03-20,"Other Consumer Loans Securitized by Finance Companies, Level",1989-01-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:16-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -324,DTBOOXDFBANA,2023-02-27,2023-02-27,"Other Business Receivables Owned by Finance -Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -325,DTROOXDFBANA,2023-02-27,2023-02-27,"Other Real Estate Loans Owned by Finance -Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +353,STFAFSNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Securities, Level",2010-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -326,DTROOXDFBANM,2023-02-27,2023-02-27,"Other Real Estate Loans Owned by Finance -Companies, Flow",1970-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +354,DTBOOXDFBANA,2023-03-20,2023-03-20,"Other Business Receivables Owned by Finance +Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:10-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -327,STFLFPXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Commercial Paper, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +355,STFLFPXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Commercial Paper, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -328,STFLFPXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Commercial Paper, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +356,STFLFPXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Commercial Paper, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -329,DTCTLNOHFXDFBANM,2023-02-27,2023-02-27,"Other Consumer Loans Owned and Securitized by +357,DTCTLNOHFXDFBANM,2023-03-20,2023-03-20,"Other Consumer Loans Owned and Securitized by Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:20-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -330,DTBTEXDFBANM,2023-02-27,2023-02-27,"Business Equipment Owned and Securitized by +358,DTBTEXDFBANM,2023-03-20,2023-03-20,"Business Equipment Owned and Securitized by Finance Companies, Flow",2006-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:13-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -331,DTBTVLWXDFBANM,2023-02-27,2023-02-27,"Business Wholesale Motor Vehicle Loans Owned and +359,DTBTVLWXDFBANM,2023-03-20,2023-03-20,"Business Wholesale Motor Vehicle Loans Owned and Securitized by Finance Companies, Flow",1990-09-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -332,DTRTOXDFBANM,2023-02-27,2023-02-27,"Other Real Estate Loans Owned and Securitized by +360,DTRTOXDFBANM,2023-03-20,2023-03-20,"Other Real Estate Loans Owned and Securitized by Finance Companies, Flow",2006-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -333,DTBTVRXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Leases Owned and +361,DTBTVRXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Leases Owned and Securitized by Finance Companies, Flow",1996-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:15-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -334,STFAFGCNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Consumer +362,STFAFGCNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Consumer Accounts Receivable Excluding Pools of Securitized Consumer Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -335,DTBTOXDFBANM,2023-02-27,2023-02-27,"Other Business Loans Owned and Securitized by +363,DTBTOXDFBANM,2023-03-20,2023-03-20,"Other Business Loans Owned and Securitized by Finance Companies, Flow",1991-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -336,DTBTONM,2023-02-27,2023-02-27,"Other Business Loans Owned and Securitized by +364,DTBTONM,2023-03-20,2023-03-20,"Other Business Loans Owned and Securitized by Finance Companies, Level",1990-12-01,2022-12-01,Monthly,M,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-02-17 13:48:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release (http://www.federalreserve.gov/releases/g20/)." -337,STFAFNXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Net Accounts +365,STFAFNXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Net Accounts Receivable Excluding Pools of Securitized Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -338,STFAFNXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Net Accounts +366,STFAFNXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Net Accounts Receivable Excluding Pools of Securitized Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -339,STFAFONQ,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Assets",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +367,STFAFONQ,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Assets",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -340,STFAFUNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Reserves for Unearned +368,STFAFUNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Reserves for Unearned Income",1984-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -341,STFAFGCXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Consumer +369,STFAFGCXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Consumer Accounts Receivable Excluding Pools of Securitized Consumer Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -342,STFLFDONQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Notes, Bonds, and -Debentures, Outstanding (DISCONTINUED)",1985-04-01,2014-01-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2014-05-21 11:51:04-05,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -343,DTCTRVHFXDFBANM,2023-02-27,2023-02-27,"Consumer Motor Vehicle Leases Owned and -Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release (http://www.federalreserve.gov/releases/g20/)." -344,STFLFOXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Liabilities, +370,STFLFOXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Liabilities, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -345,STFLFOXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, All Other Liabilities, +371,STFLFOXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, All Other Liabilities, Flow",1984-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:39-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -346,STFAFGBXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Business +372,STFAFGBXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Business Accounts Receivable Excluding Pools of Securitized Business Assets, Flow",1980-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -347,STFAFGBXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Business +373,STFAFGBXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Business Accounts Receivable Excluding Pools of Securitized Business Assets, Flow",1980-07-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -348,STFAFGNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Accounts +374,DTCTRVHFXDFBANM,2023-03-20,2023-03-20,"Consumer Motor Vehicle Leases Owned and +Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release (http://www.federalreserve.gov/releases/g20/)." +375,STFAFGNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Accounts Receivable Excluding Pools of Securitized Assets",1943-01-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -349,STFAFGBNQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Business +376,STFAFGBNQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Business Accounts Receivable Excluding Pools of Securitized Business Assets",1980-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-15 14:48:32-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -350,DTBNVXDFBANM,2023-02-27,2023-02-27,"Business Motor Vehicle Loans and Leases +377,DTBNVXDFBANM,2023-03-20,2023-03-20,"Business Motor Vehicle Loans and Leases Securitized by Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:09-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -351,DTCOLNOHFXDFBANM,2023-02-27,2023-02-27,"Other Consumer Loans Owned by Finance Companies, +378,DTBNVLRXDFBANM,2023-03-20,2023-03-20,"Business Retail Motor Vehicle Loans Securitized by +Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 +release, online at http://www.federalreserve.gov/releases/g20/ ." +379,DTCOLNOHFXDFBANM,2023-03-20,2023-03-20,"Other Consumer Loans Owned by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:18-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -352,DTBNOXDFBANM,2023-02-27,2023-02-27,"Other Business Receivables Securitized by Finance +380,DTBNOXDFBANM,2023-03-20,2023-03-20,"Other Business Receivables Securitized by Finance Companies, Flow",1991-01-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -353,DTBNVLRXDFBANM,2023-02-27,2023-02-27,"Business Retail Motor Vehicle Loans Securitized by -Finance Companies, Flow",1990-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:07-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 -release, online at http://www.federalreserve.gov/releases/g20/ ." -354,DTCNLNOHFXDFBANM,2023-02-27,2023-02-27,"Other Consumer Loans Securitized by Finance +381,DTCNLNOHFXDFBANM,2023-03-20,2023-03-20,"Other Consumer Loans Securitized by Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:17-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -355,STFLFDPXDFBANA,2023-02-27,2023-02-27,"Domestic Finance Companies, Debt Due to Parent +382,STFLFDPXDFBANA,2023-03-20,2023-03-20,"Domestic Finance Companies, Debt Due to Parent Company, Flow",1988-01-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Annual Rate","Mil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:38-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -356,DTBOOXDFBANM,2023-02-27,2023-02-27,"Other Business Receivables Owned by Finance +383,DTBOOXDFBANM,2023-03-20,2023-03-20,"Other Business Receivables Owned by Finance Companies, Flow",1980-07-01,2022-12-01,Monthly,M,"Millions of Dollars, Monthly Rate","Mil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-17 13:48:11-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -357,STFAFGCXDFBANQ,2023-02-27,2023-02-27,"Domestic Finance Companies, Gross Consumer +384,STFAFGCXDFBANQ,2023-03-20,2023-03-20,"Domestic Finance Companies, Gross Consumer Accounts Receivable Excluding Pools of Securitized Consumer Assets, Flow",1943-04-01,2022-07-01,Quarterly,Q,"Millions of Dollars, Quarterly Rate","Mil. of $, Quarterly Rate",Not Seasonally Adjusted,NSA,2022-12-15 14:48:33-06,0,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ ." -358,JTU5200JOR,2023-02-27,2023-02-27,Job Openings: Finance and Insurance,2000-12-01,2022-12-01,Monthly,M,Rate,Rate,Not Seasonally Adjusted,NSA,2023-02-01 09:04:34-06,2,13,No description provided. -359,BOGZ1FL613065000Q,2023-02-27,2023-02-27,"Finance Companies; Total Mortgages; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:28-06,1,1,"Source ID: FL613065000.Q For more information about the Flow of Funds tables, see the Financial +385,JTU5200JOR,2023-03-20,2023-03-20,Job Openings: Finance and Insurance,2000-12-01,2023-01-01,Monthly,M,Rate,Rate,Not Seasonally Adjusted,NSA,2023-03-08 09:04:27-06,3,13,No description provided. +386,BOGZ1FA613070103Q,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program +Receivables Due from Federal Government; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613072003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613072003&t=) provided by the source." -360,BOGZ1FL613065105Q,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential -Mortgages; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:28-06,1,1,"Source ID: FL613065105.Q For more information about the Flow of Funds tables, see the Financial +387,BOGZ1FA613070103A,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program +Receivables Due from Federal Government; Asset, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613072003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613072003&t=) provided by the source." -361,BOGZ1FL613065105A,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential -Mortgages; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613065105.A For more information about the Flow of Funds tables, see the Financial +388,BOGZ1FU613070103A,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program +Receivables Due from Federal Government; Asset, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:44-06,1,1,"Source ID: FU613072003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065105&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613072003&t=) provided by the source." -362,BOGZ1FA613065593A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by -Non-Depository Financial Institutions; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:26:26-06,1,1,"Source ID: FA613065593.A For more information about the Flow of Funds tables, see the Financial +389,BOGZ1FU613070103Q,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program +Receivables Due from Federal Government; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613072003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065593&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613072003&t=) provided by the source." -363,BOGZ1FU613065593Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by -Non-Depository Financial Institutions; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065593.Q For more information about the Flow of Funds tables, see the Financial +390,SMU09000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Connecticut",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:44:05-05,1,1,No description provided. +391,SMS09000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Connecticut",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:40:38-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +392,SMU09000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Connecticut",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:14-05,1,1,No description provided. +393,FINCLL,2023-03-20,2023-03-20,"Finance Companies; Loans; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:55-06,1,1,"Source ID: FL614123005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065593&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614123005&t=) provided by the source." -364,BOGZ1FU613065593A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by -Non-Depository Financial Institutions; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065593.A For more information about the Flow of Funds tables, see the Financial +394,BOGZ1FL614123005A,2023-03-20,2023-03-20,"Finance Companies; Loans; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:38-06,1,1,"Source ID: FL614123005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065593&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614123005&t=) provided by the source." -365,BOGZ1FA613065593Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by -Non-Depository Financial Institutions; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:28-06,1,1,"Source ID: FA613065593.Q For more information about the Flow of Funds tables, see the Financial +395,BOGZ1FL613065123Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, Level",1970-04-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613065123.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065593&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065123&t=) provided by the source." -366,SMU72000005552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2014-02-02 10:28:20-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis -previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted -(NSA) version available here (https://fred.stlouisfed.org/series/SMU72000005552000030). However, -most of the earnings-related series do not have a significant seasonal component, so the values for -both the SA and the NSA series are very similar. See the NSA series -(https://fred.stlouisfed.org/series/SMU72000005552000030) for updated values. The Federal Reserve -Bank of St. Louis used to seasonally adjust this series by using the 'statsmodels' library from -Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA- -SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can -be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU72000005552000030). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -367,SMU19197805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Des Moines-West Des Moines, IA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:24:38-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +396,BOGZ1FL613065123A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, Level",1970-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613065123.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065123&t=) provided by +the source." +397,SMU12331005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Miami-Fort Lauderdale-West Palm +Beach, FL (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:43:17-05,1,1,No description provided. +398,SMU12331005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Miami-Fort Lauderdale-West Palm +Beach, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:22:00-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -1668,315 +1978,363 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU19197805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU12331005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -368,SMU19197805552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Des Moines-West Des Moines, IA (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:38:43-05,1,1,No description provided. -369,BOGZ1FA673069503A,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial -Business Loans Securitized by Finance Companies; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-17 02:22:42-05,1,1,"Source ID: FA673069503.A For more information about the Flow of Funds tables, see the Financial +399,SMU12331005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Miami-Fort Lauderdale-West Palm +Beach, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:31:17-05,1,1,No description provided. +400,DTCTLHFNM,2023-03-20,2023-03-20,"Total Consumer Credit Owned and Securitized by +Finance Companies",1943-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:12-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +401,BOGZ1FL613065183Q,2023-03-20,2023-03-20,"Finance Companies; Construction Loans on One-to- +Four Family Homes; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:18-05,1,1,"Source ID: FL613065183.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA673069503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065183&t=) provided by the source." -370,BOGZ1FA673069503Q,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial -Business Loans Securitized by Finance Companies; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:27:12-06,1,1,"Source ID: FA673069503.Q For more information about the Flow of Funds tables, see the Financial +402,BOGZ1FL613065183A,2023-03-20,2023-03-20,"Finance Companies; Construction Loans on One-to- +Four Family Homes; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:39-05,1,1,"Source ID: FL613065183.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA673069503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065183&t=) provided by the source." -371,BOGZ1FU673069503A,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial -Business Loans Securitized by Finance Companies; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:10:50-05,1,1,"Source ID: FU673069503.A For more information about the Flow of Funds tables, see the Financial +403,BOGZ1FL613065503Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages; Asset, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613065503.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU673069503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065503&t=) provided by the source." -372,FINCDSL,2023-02-27,2023-02-27,"Finance Companies; Debt Securities; Liability, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:44:47-06,1,1,"Source ID: FL614122005.Q For more information about the Flow of Funds tables, see the Financial +404,BOGZ1FL613065503A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages; Asset, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613065503.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614122005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065503&t=) provided by the source." -373,BOGZ1FL614122005A,2023-02-27,2023-02-27,"Finance Companies; Debt Securities; Liability, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:56-05,1,1,"Source ID: FL614122005.A For more information about the Flow of Funds tables, see the Financial +405,BOGZ1FL614004005A,2023-03-20,2023-03-20,"Finance Companies; Debt Securities and Loans; +Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,1,"Source ID: FL614004005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614122005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614004005&t=) provided by the source." -374,BOGZ1FL614090005Q,2023-02-27,2023-02-27,"Finance Companies; Total Financial Assets, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:26-06,1,1,"Source ID: FL614090005.Q For more information about the Flow of Funds tables, see the Financial +406,BOGZ1FR613066223Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR613066223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066223&t=) provided by the source." -375,BOGZ1FL614090005A,2023-02-27,2023-02-27,"Finance Companies; Total Financial Assets, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:42:01-06,1,1,"Source ID: FL614090005.A For more information about the Flow of Funds tables, see the Financial +407,BOGZ1FR613066223A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:05:29-05,1,1,"Source ID: FR613066223.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066223&t=) provided by the source." -376,BOGZ1FL615080003Q,2023-02-27,2023-02-27,"Finance Companies; Equity Capital, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL615080003.Q For more information about the Flow of Funds tables, see the Financial +408,SMU42979615552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Philadelphia City, PA",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:10:32-05,1,1,"Philadelphia City, PA constitutes a significant percentage of the state's total statewide +employment. This series is calculated in addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD +(MSA)'s statistics because of it's importance to the state. For more details on non-standard area +definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non- +standard-ces-areas.htm) of the Current Employment Statistics." +409,FINCDSL,2023-03-20,2023-03-20,"Finance Companies; Debt Securities; Liability, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:55-06,1,1,"Source ID: FL614122005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615080003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614122005&t=) provided by the source." -377,BOGZ1FL615080003A,2023-02-27,2023-02-27,"Finance Companies; Equity Capital, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:36-05,1,1,"Source ID: FL615080003.A For more information about the Flow of Funds tables, see the Financial +410,BOGZ1FL614122005A,2023-03-20,2023-03-20,"Finance Companies; Debt Securities; Liability, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:38-06,1,1,"Source ID: FL614122005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615080003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614122005&t=) provided by the source." -378,G19DTCTLRHFXDFBANM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned and Securitized by -Finance Companies, Flow",1985-01-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:36-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -379,BOGZ1FL613065183Q,2023-02-27,2023-02-27,"Finance Companies; Construction Loans on One-to- -Four Family Homes; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:14-06,1,1,"Source ID: FL613065183.Q For more information about the Flow of Funds tables, see the Financial +411,SMU56000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Wyoming",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:46:01-05,1,1,No description provided. +412,SMS56000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Wyoming",1990-01-01,2016-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-01-24 13:47:04-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +413,BOGZ1FA613169100A,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613169100.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065183&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169100&t=) provided by the source." -380,BOGZ1FL613065183A,2023-02-27,2023-02-27,"Finance Companies; Construction Loans on One-to- -Four Family Homes; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:04:16-05,1,1,"Source ID: FL613065183.A For more information about the Flow of Funds tables, see the Financial +414,BOGZ1FA613169100Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:20-06,1,1,"Source ID: FA613169100.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065183&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169100&t=) provided by the source." -381,FLTOTALFC,2023-02-27,2023-02-27,"Total Consumer Credit Owned by Finance Companies, -Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -382,FLTOTALFCA,2023-02-27,2023-02-27,"Total Consumer Credit Owned by Finance Companies, -Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:33-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release, online at http://www.federalreserve.gov/releases/g19/." -383,BOGZ1FA613065503Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613065503.Q For more information about the Flow of Funds tables, see the Financial +415,BOGZ1FU613169100A,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:43-06,1,1,"Source ID: FU613169100.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065503&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169100&t=) provided by the source." -384,BOGZ1FL613169100Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613169100.Q For more information about the Flow of Funds tables, see the Financial +416,BOGZ1FU613169100Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613169100.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169100&t=) provided by the source." -385,BOGZ1FL613169100A,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613169100.A For more information about the Flow of Funds tables, see the Financial +417,BOGZ1FA613066223Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613066223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066223&t=) provided by the source." -386,BOGZ1FA613065200Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Transactions",1970-07-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:40-06,1,1,"Source ID: FA613065200.Q For more information about the Flow of Funds tables, see the Financial +418,BOGZ1FA613066223A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:46-05,1,1,"Source ID: FA613066223.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065200&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066223&t=) provided by the source." -387,BOGZ1FU613065200A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Transactions",1971-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:11:11-05,1,1,"Source ID: FU613065200.A For more information about the Flow of Funds tables, see the Financial +419,BOGZ1FU613066223Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:10-05,1,1,"Source ID: FU613066223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065200&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066223&t=) provided by the source." -388,BOGZ1FA613065200A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Transactions",1971-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-17 02:06:35-05,1,1,"Source ID: FA613065200.A For more information about the Flow of Funds tables, see the Financial +420,BOGZ1FU613066223A,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit, Student Loans +Held by Sallie Mae; Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,1,"Source ID: FU613066223.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065200&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066223&t=) provided by +the source." +421,SMS12000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Florida",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:34-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +422,SMU12000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Florida",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:13:05-05,1,1,No description provided. +423,NCBFSCQ027S,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Other Investment +in Finance Company Subsidiaries; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:53-06,1,1,"Source ID: FL103094705.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103094705&t=) provided by +the source." +424,NCBFSCA027N,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Other Investment +in Finance Company Subsidiaries; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:00:37-06,1,1,"Source ID: FL103094705.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103094705&t=) provided by the source." -389,G19DTCTLRHFNM,2023-02-27,2023-02-27,"Revolving Consumer Credit Owned and Securitized by -Finance Companies",1984-12-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +425,G19DTCTLRHFXDFBANM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned and Securitized by +Finance Companies, Flow",1985-01-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:27-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release (https://www.federalreserve.gov/releases/g19/current/)." -390,BOGZ1FL613065403Q,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613065403.Q For more information about the Flow of Funds tables, see the Financial +426,SMS25000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Massachusetts",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:37-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +427,SMU25000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Massachusetts",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:22:48-05,1,1,No description provided. +428,SMU25000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Massachusetts",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:41:16-05,1,1,No description provided. +429,SMU48191005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:47:37-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU48191005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +430,SMU48191005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:09:39-05,1,1,No description provided. +431,SMU48191005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Dallas-Fort Worth-Arlington, TX (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:36:24-05,1,1,No description provided. +432,SMU36935615552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York City, NY",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:00:00-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU36935615552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator."" New York City, NY constitutes a +significant percentage of the state's total statewide employment. This series is calculated in +addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics because of it's importance to +the state. For more details on non-standard area definitions, visit the additional resources +(https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment +Statistics." +433,SMU36935615552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York City, NY",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:38:40-05,1,1,"New York City, NY constitutes a significant percentage of the state's total statewide employment. +This series is calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics +because of it's importance to the state. For more details on non-standard area definitions, visit +the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) +of the Current Employment Statistics." +434,SMU36935615552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York City, NY",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:15:52-05,1,1,"New York City, NY constitutes a significant percentage of the state's total statewide employment. +This series is calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics +because of it's importance to the state. For more details on non-standard area definitions, visit +the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) +of the Current Employment Statistics." +435,SMS05000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arkansas",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:39:53-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +436,BOGZ1FR613163093Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds, +Notes, Bonds, and Debentures; Liability, +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR613163093.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163093&t=) provided by +the source." +437,BOGZ1FR613163093A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds, +Notes, Bonds, and Debentures; Liability, +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:17:22-05,1,1,"Source ID: FR613163093.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065403&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163093&t=) provided by the source." -391,TX55520000A674FRBDAL,2023-02-27,2023-02-27,"Financial Activities: Finance and Insurance -Payroll Employment in Texas",1991-01-01,2022-01-01,Annual,A,December to December Percent Change,Dec to Dec % Chg.,Not Seasonally Adjusted,NSA,2023-02-07 14:14:54-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas -of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the -early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. -More information pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created -by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -392,BOGZ1FA613168005Q,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C., Including Loans Through the Paycheck -Protection Program Liquidity Facility (PPPLF); -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613168005.Q For more information about the Flow of Funds tables, see the Financial +438,BOGZ1FL614190005Q,2023-03-20,2023-03-20,"Finance Companies; Total Liabilities, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:03:38-06,1,1,"Source ID: FL614190005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613168005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614190005&t=) provided by the source." -393,BOGZ1FU613168005A,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C., Including Loans Through the Paycheck -Protection Program Liquidity Facility (PPPLF); -Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:13:44-05,1,1,"Source ID: FU613168005.A For more information about the Flow of Funds tables, see the Financial +439,BOGZ1FL614190005A,2023-03-20,2023-03-20,"Finance Companies; Total Liabilities, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:09-06,1,1,"Source ID: FL614190005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613168005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614190005&t=) provided by the source." -394,BOGZ1FU613168005Q,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C., Including Loans Through the Paycheck -Protection Program Liquidity Facility (PPPLF); -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613168005.Q For more information about the Flow of Funds tables, see the Financial +440,SMS04000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arizona",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:07:07-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +441,SMU04000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arizona",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:20-05,1,1,No description provided. +442,SMU04000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arizona",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:45:28-05,1,1,No description provided. +443,BOGZ1FL613065105Q,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential +Mortgages; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:03:38-06,1,1,"Source ID: FL613065105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613168005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065105&t=) provided by the source." -395,SMU11479005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington-Arlington-Alexandria, DC- -VA-MD-WV (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:34:04-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU11479005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -396,SMU11479005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington-Arlington-Alexandria, DC- -VA-MD-WV (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:37:41-06,1,1,No description provided. -397,SMU11479005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington-Arlington-Alexandria, DC- -VA-MD-WV (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:42:50-05,1,1,No description provided. -398,BOGZ1FL613020003Q,2023-02-27,2023-02-27,"Finance Companies; Checkable Deposits and -Currency; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:28-06,1,1,"Source ID: FL613020003.Q For more information about the Flow of Funds tables, see the Financial +444,BOGZ1FL613065105A,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential +Mortgages; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613065105.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613020003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065105&t=) provided by the source." -399,BOGZ1FL613020003A,2023-02-27,2023-02-27,"Finance Companies; Checkable Deposits and -Currency; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:22:44-05,1,1,"Source ID: FL613020003.A For more information about the Flow of Funds tables, see the Financial +445,SMS27000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Minnesota",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:34-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +446,FLTOTALFC,2023-03-20,2023-03-20,"Total Consumer Credit Owned by Finance Companies, +Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +447,FLTOTALFCA,2023-03-20,2023-03-20,"Total Consumer Credit Owned by Finance Companies, +Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:24-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release, online at http://www.federalreserve.gov/releases/g19/." +448,BOGZ1FL113169563Q,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans from Paycheck Protection Program; +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:16:34-05,1,1,"Source ID: FL113169563.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613020003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169563&t=) provided by the source." -400,SMS05000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arkansas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:45-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -401,SMU05000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arkansas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:59-06,1,1,No description provided. -402,SMU36935615552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York City, NY",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:06:27-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU36935615552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator."" New York City, NY constitutes a -significant percentage of the state's total statewide employment. This series is calculated in -addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics because of it's importance to -the state. For more details on non-standard area definitions, visit the additional resources -(https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment -Statistics." -403,SMU36935615552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York City, NY",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:29:55-05,1,1,"New York City, NY constitutes a significant percentage of the state's total statewide employment. -This series is calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics -because of it's importance to the state. For more details on non-standard area definitions, visit -the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) -of the Current Employment Statistics." -404,SMU36935615552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York City, NY",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:16:28-06,1,1,"New York City, NY constitutes a significant percentage of the state's total statewide employment. -This series is calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics -because of it's importance to the state. For more details on non-standard area definitions, visit -the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) -of the Current Employment Statistics." -405,BOGZ1FU615090005A,2023-02-27,2023-02-27,"Finance Companies; Gross Investment, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:21:05-06,1,1,"Source ID: FU615090005.A For more information about the Flow of Funds tables, see the Financial +449,BOGZ1FL113169563A,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans from Paycheck Protection Program; +Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:44-05,1,1,"Source ID: FL113169563.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169563&t=) provided by the source." -406,BOGZ1FA615090005Q,2023-02-27,2023-02-27,"Finance Companies; Gross Investment, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA615090005.Q For more information about the Flow of Funds tables, see the Financial +450,SMS06000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in California",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:39:50-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +451,SMU06000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in California",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:44:46-05,1,1,No description provided. +452,SMU06000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in California",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:00-05,1,1,No description provided. +453,BOGZ1FU615090005A,2023-03-20,2023-03-20,"Finance Companies; Gross Investment, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,1,"Source ID: FU615090005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615090005&t=) provided by the source." -407,BOGZ1FA615090005A,2023-02-27,2023-02-27,"Finance Companies; Gross Investment, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:25-06,1,1,"Source ID: FA615090005.A For more information about the Flow of Funds tables, see the Financial +454,BOGZ1FA615090005Q,2023-03-20,2023-03-20,"Finance Companies; Gross Investment, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA615090005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -1984,185 +2342,156 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615090005&t=) provided by the source." -408,BOGZ1FU615090005Q,2023-02-27,2023-02-27,"Finance Companies; Gross Investment, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,1,"Source ID: FU615090005.Q For more information about the Flow of Funds tables, see the Financial +455,BOGZ1FA615090005A,2023-03-20,2023-03-20,"Finance Companies; Gross Investment, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:44-05,1,1,"Source ID: FA615090005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615090005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615090005&t=) provided by the source." -409,BOGZ1FR613066223Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:29-06,1,1,"Source ID: FR613066223.Q For more information about the Flow of Funds tables, see the Financial +456,BOGZ1FU615090005Q,2023-03-20,2023-03-20,"Finance Companies; Gross Investment, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU615090005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615090005&t=) provided by the source." -410,BOGZ1FR613066223A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:03:05-05,1,1,"Source ID: FR613066223.A For more information about the Flow of Funds tables, see the Financial +457,BOGZ1FL613065403Q,2023-03-20,2023-03-20,"Finance Companies; Multifamily Residential +Mortgages; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613065403.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065403&t=) provided by the source." -411,FINCLL,2023-02-27,2023-02-27,"Finance Companies; Loans; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:05-06,1,1,"Source ID: FL614123005.Q For more information about the Flow of Funds tables, see the Financial +458,DTCNLHFNM,2023-03-20,2023-03-20,"Total Consumer Credit Securitized by Finance +Companies",1989-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:16-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +459,SMS72000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Puerto Rico",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:05:26-05,1,1,No description provided. +460,SMU72000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Puerto Rico",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:02:48-05,1,1,No description provided. +461,DTCNLHFXDFBANM,2023-03-20,2023-03-20,"Total Consumer Credit Securitized by Finance +Companies, Flow",1989-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:16-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +462,SMS42000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Pennsylvania",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:10-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +463,BOGZ1FL613169100Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613169100.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614123005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169100&t=) provided by the source." -412,BOGZ1FL614123005A,2023-02-27,2023-02-27,"Finance Companies; Loans; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:56-05,1,1,"Source ID: FL614123005.A For more information about the Flow of Funds tables, see the Financial +464,BOGZ1FL613169100A,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,1,"Source ID: FL613169100.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614123005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169100&t=) provided by the source." -413,SMU72000005552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2014-02-02 10:28:20-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis -previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted -(NSA) version available here (https://fred.stlouisfed.org/series/SMU72000005552000008). However, -most of the earnings-related series do not have a significant seasonal component, so the values for -both the SA and the NSA series are very similar. See the NSA series -(https://fred.stlouisfed.org/series/SMU72000005552000008) for updated values. The Federal Reserve -Bank of St. Louis used to seasonally adjust this series by using the 'statsmodels' library from -Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA- -SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can -be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU72000005552000008). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -414,SMU40000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oklahoma",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:02:44-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU40000005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -415,BOGZ1FA613065403Q,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613065403.Q For more information about the Flow of Funds tables, see the Financial +465,DTCNLNHFNM,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Securitized by +Finance Companies",1989-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +466,G19DTCNLRHFNM,2023-03-20,2023-03-20,"Revolving Consumer Credit Securitized by Finance +Companies",1997-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:26-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +467,BOGZ1FA613065593A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by +Non-Depository Financial Institutions; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:26:26-06,1,1,"Source ID: FA613065593.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065403&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065593&t=) provided by the source." -416,NCBFSCQ027S,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Other Investment -in Finance Company Subsidiaries; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:20-06,1,1,"Source ID: FL103094705.Q For more information about the Flow of Funds tables, see the Financial +468,BOGZ1FU613065593Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by +Non-Depository Financial Institutions; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065593.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103094705&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065593&t=) provided by the source." -417,NCBFSCA027N,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Other Investment -in Finance Company Subsidiaries; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:45-05,1,1,"Source ID: FL103094705.A For more information about the Flow of Funds tables, see the Financial +469,BOGZ1FU613065593A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by +Non-Depository Financial Institutions; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065593.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103094705&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065593&t=) provided by the source." -418,BOGZ1FA613066223Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613066223.Q For more information about the Flow of Funds tables, see the Financial +470,BOGZ1FA613065593Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by +Non-Depository Financial Institutions; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:28-06,1,1,"Source ID: FA613065593.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065593&t=) provided by the source." -419,BOGZ1FA613066223A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-17 02:22:35-05,1,1,"Source ID: FA613066223.A For more information about the Flow of Funds tables, see the Financial +471,G19DTCNLRHFXDFBANM,2023-03-20,2023-03-20,"Revolving Consumer Credit Securitized by Finance +Companies, Flow",1997-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:26-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +472,BOGZ1FL613020003Q,2023-03-20,2023-03-20,"Finance Companies; Checkable Deposits and +Currency; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613020003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613020003&t=) provided by the source." -420,BOGZ1FU613066223Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,1,"Source ID: FU613066223.Q For more information about the Flow of Funds tables, see the Financial +473,BOGZ1FL613020003A,2023-03-20,2023-03-20,"Finance Companies; Checkable Deposits and +Currency; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:41-06,1,1,"Source ID: FL613020003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613020003&t=) provided by the source." -421,BOGZ1FU613066223A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit, Student Loans -Held by Sallie Mae; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:02:12-05,1,1,"Source ID: FU613066223.A For more information about the Flow of Funds tables, see the Financial +474,BOGZ1FA673069503A,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial +Business Loans Securitized by Finance Companies; +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:04-05,1,1,"Source ID: FA673069503.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613066223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA673069503&t=) provided by the source." -422,BOGZ1FL613163005Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613163005.Q For more information about the Flow of Funds tables, see the Financial +475,BOGZ1FA673069503Q,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial +Business Loans Securitized by Finance Companies; +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:48-05,1,1,"Source ID: FA673069503.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA673069503&t=) provided by the source." -423,BOGZ1FL613163005A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613163005.A For more information about the Flow of Funds tables, see the Financial +476,BOGZ1FU673069503A,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial +Business Loans Securitized by Finance Companies; +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:43-05,1,1,"Source ID: FU673069503.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU673069503&t=) provided by the source." -424,SMS25000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Massachusetts",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:06-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -425,SMU25000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Massachusetts",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:30:36-06,1,1,No description provided. -426,SMU25000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Massachusetts",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:36:26-05,1,1,No description provided. -427,SMS36000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:17-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -428,SMU36000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:18:27-06,1,1,No description provided. -429,SMU36000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:31:32-05,1,1,No description provided. -430,G19DTCNLRHFXDFBANM,2023-02-27,2023-02-27,"Revolving Consumer Credit Securitized by Finance -Companies, Flow",1997-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -431,SMU12331005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Miami-Fort Lauderdale-West Palm -Beach, FL (MSA)",2003-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:42:03-05,1,1,No description provided. -432,SMU12331005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Miami-Fort Lauderdale-West Palm -Beach, FL (MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:32:45-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +477,SMU28000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Mississippi",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:06:15-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2172,51 +2501,38 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU12331005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU28000005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -433,SMU12331005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Miami-Fort Lauderdale-West Palm -Beach, FL (MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:37:15-06,1,1,No description provided. -434,BOGZ1FL613163083A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:36-05,1,1,"Source ID: FL613163083.A For more information about the Flow of Funds tables, see the Financial +478,SMU28000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Mississippi",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:19:53-05,1,1,No description provided. +479,SMU41000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oregon",1990-01-01,2017-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-03-13 14:23:54-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from +R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA +Seasonal Adjustment Program. More information on the 'x12' package can be found at +http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at +https://www.census.gov/srd/www/x13as/." +480,BOGZ1FL613163005Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613163005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163005&t=) provided by the source." -435,BOGZ1FL613163083Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL613163083.Q For more information about the Flow of Funds tables, see the Financial +481,BOGZ1FL613163005A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,1,"Source ID: FL613163005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163005&t=) provided by the source." -436,SMU13120605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Atlanta-Sandy Springs-Roswell, GA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:28:32-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU13120605552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -437,SMU13120605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Atlanta-Sandy Springs-Roswell, GA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:36:43-06,1,1,No description provided. -438,SMU36356145552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York-Jersey City-White Plains, -NY-NJ (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:08:11-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +482,SMU36153805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Buffalo-Cheektowaga-Niagara Falls, NY +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:00:13-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2226,36 +2542,54 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU36356145552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU36153805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -439,SMU36356145552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York-Jersey City-White Plains, -NY-NJ (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:16:56-06,1,1,No description provided. -440,BOGZ1FL713068863Q,2023-02-27,2023-02-27,"Monetary Authority; Loans to Finance Companies -Under the Paycheck Protection Program Liquidity -Facility (PPPLF); Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:14-06,1,1,"Source ID: FL713068863.Q For more information about the Flow of Funds tables, see the Financial +483,SMU36153805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Buffalo-Cheektowaga-Niagara Falls, NY +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:15:24-05,1,1,No description provided. +484,SMS26000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Michigan",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:03-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +485,SMU26000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Michigan",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:40:42-05,1,1,No description provided. +486,SMS01000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Alabama",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:40:16-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +487,SMU01000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Alabama",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:36:23-05,1,1,No description provided. +488,BOGZ1FA613065000A,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:18:11-06,1,1,"Source ID: FA613065000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068863&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065000&t=) provided by the source." -441,DTCTLHFXDFBANM,2023-02-27,2023-02-27,"Total Consumer Credit Owned and Securitized by -Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:25-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -442,BOGZ1FL613069500Q,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans; -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:59-06,1,1,"Source ID: FL613069500.Q For more information about the Flow of Funds tables, see the Financial +489,BOGZ1FU613065000Q,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613065000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613069500&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065000&t=) provided by the source." -443,FCCFBA,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:07-06,1,1,"Source ID: FL613063003.Q For more information about the Flow of Funds tables, see the Financial +490,SMU44000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Rhode Island",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:49:19-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU44000005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +491,FCCFBA,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:57-06,1,1,"Source ID: FL613063003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2263,125 +2597,193 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063003&t=) provided by the source." -444,BOGZ1FA616006403Q,2023-02-27,2023-02-27,"Finance Companies; Undistributed Corporate Profits -Excluding CCAdj, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA616006403.Q For more information about the Flow of Funds tables, see the Financial +492,BOGZ1FA613092003Q,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad +(Market Value); Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613092003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006403&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613092003&t=) provided by the source." -445,BOGZ1FA616006403A,2023-02-27,2023-02-27,"Finance Companies; Undistributed Corporate Profits -Excluding CCAdj, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:24-06,1,1,"Source ID: FA616006403.A For more information about the Flow of Funds tables, see the Financial +493,BOGZ1FA613092003A,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad +(Market Value); Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613092003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006403&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613092003&t=) provided by the source." -446,BOGZ1FR613163083Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:29-06,1,1,"Source ID: FR613163083.Q For more information about the Flow of Funds tables, see the Financial +494,SMS13000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Georgia",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:29-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +495,AULN0A158MFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for +Austin-Round Rock-San Marcos, TX (MSA)",1990-02-01,2023-01-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted,SA,2023-03-10 14:42:38-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the +early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. +More information pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm." +496,AULN0A175MFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for +Austin-Round Rock-San Marcos, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:42:37-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the +early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. +More information pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm." +497,AULN0A674AFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for +Austin-Round Rock-San Marcos, TX (MSA)",1991-01-01,2022-01-01,Annual,A,December to December Percent Change,Dec to Dec % Chg.,Not Seasonally Adjusted,NSA,2023-03-10 14:42:37-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the +early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. +More information pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created +by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." +498,SMU19197805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Des Moines-West Des Moines, IA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:13:52-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU19197805552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +499,SMU19197805552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Des Moines-West Des Moines, IA (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:41:42-05,1,1,No description provided. +500,DTCNLNHFXDFBANM,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Securitized by +Finance Companies, Flow",1989-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:17-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +501,BOGZ1FL613069505Q,2023-03-20,2023-03-20,"Finance Companies; Nonfinancial Business Loans, +Including Paycheck Protection Program Loans; +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613069505.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163083&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613069505&t=) provided by the source." -447,BOGZ1FL113169563Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:28:16-06,1,1,"Source ID: FL113169563.Q For more information about the Flow of Funds tables, see the Financial +502,BOGZ1FA613178013Q,2023-03-20,2023-03-20,"Finance Companies; Taxes Payable, Tax on Foreign +Earnings Retained Abroad; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613178013.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169563&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178013&t=) provided by the source." -448,BOGZ1FL113169563A,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:05:24-05,1,1,"Source ID: FL113169563.A For more information about the Flow of Funds tables, see the Financial +503,SMU10000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Delaware",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:24:08-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU10000005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +504,BOGZ1FL103169505Q,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +and ABS Issuers Loans; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:16:39-05,1,1,"Source ID: FL103169505.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169563&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169505&t=) provided by the source." -449,BOGZ1FL613065123A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, Level",1970-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:00:38-06,1,1,"Source ID: FL613065123.A For more information about the Flow of Funds tables, see the Financial +505,BOGZ1FL103169505A,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +and ABS Issuers Loans; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:47-05,1,1,"Source ID: FL103169505.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065123&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169505&t=) provided by the source." -450,BOGZ1FL613065123Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, Level",1970-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:28-06,1,1,"Source ID: FL613065123.Q For more information about the Flow of Funds tables, see the Financial +506,BOGZ1FL613069500Q,2023-03-20,2023-03-20,"Finance Companies; Nonfinancial Business Loans; +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:18-05,1,1,"Source ID: FL613069500.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065123&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613069500&t=) provided by the source." -451,BOGZ1FA613169100A,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:31-05,1,1,"Source ID: FA613169100.A For more information about the Flow of Funds tables, see the Financial +507,BOGZ1FA613065403Q,2023-03-20,2023-03-20,"Finance Companies; Multifamily Residential +Mortgages; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613065403.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065403&t=) provided by the source." -452,BOGZ1FA613169100Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613169100.Q For more information about the Flow of Funds tables, see the Financial +508,DTCTLHFXDFBANM,2023-03-20,2023-03-20,"Total Consumer Credit Owned and Securitized by +Finance Companies, Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:18-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +509,BOGZ1FA613168005Q,2023-03-20,2023-03-20,"Finance Companies; Depository Institution Loans +N.E.C., Including Loans Through the Paycheck +Protection Program Liquidity Facility (PPPLF); +Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:20-06,1,1,"Source ID: FA613168005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613168005&t=) provided by the source." -453,BOGZ1FU613169100A,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:13:44-05,1,1,"Source ID: FU613169100.A For more information about the Flow of Funds tables, see the Financial +510,BOGZ1FU613168005A,2023-03-20,2023-03-20,"Finance Companies; Depository Institution Loans +N.E.C., Including Loans Through the Paycheck +Protection Program Liquidity Facility (PPPLF); +Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-10 16:49:21-06,1,1,"Source ID: FU613168005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613168005&t=) provided by the source." -454,BOGZ1FU613169100Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613169100.Q For more information about the Flow of Funds tables, see the Financial +511,BOGZ1FU613168005Q,2023-03-20,2023-03-20,"Finance Companies; Depository Institution Loans +N.E.C., Including Loans Through the Paycheck +Protection Program Liquidity Facility (PPPLF); +Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613168005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613168005&t=) provided by the source." -455,BOGZ1FL103169505Q,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -and ABS Issuers Loans; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:33:46-06,1,1,"Source ID: FL103169505.Q For more information about the Flow of Funds tables, see the Financial +512,BOGZ1FA616006403Q,2023-03-20,2023-03-20,"Finance Companies; Undistributed Corporate Profits +Excluding CCAdj, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616006403.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169505&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006403&t=) provided by the source." -456,BOGZ1FL103169505A,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -and ABS Issuers Loans; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:53-05,1,1,"Source ID: FL103169505.A For more information about the Flow of Funds tables, see the Financial +513,BOGZ1FA616006403A,2023-03-20,2023-03-20,"Finance Companies; Undistributed Corporate Profits +Excluding CCAdj, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:44-05,1,1,"Source ID: FA616006403.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169505&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006403&t=) provided by the source." -457,SMU48124205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Austin-Round Rock, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:53:11-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +514,SMU36356145552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York-Jersey City-White Plains, +NY-NJ (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:14:50-05,1,1,No description provided. +515,SMU36356145552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York-Jersey City-White Plains, +NY-NJ (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:59:17-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2391,22 +2793,15 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU48124205552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU36356145552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -458,SMU48124205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Austin-Round Rock, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:08:21-06,1,1,No description provided. -459,BOGZ1FL614004005A,2023-02-27,2023-02-27,"Finance Companies; Debt Securities and Loans; -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:01:36-05,1,1,"Source ID: FL614004005.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL614004005&t=) provided by -the source." -460,SMU37395805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Raleigh, NC (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:05:27-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +516,G19DTCTLRHFNM,2023-03-20,2023-03-20,"Revolving Consumer Credit Owned and Securitized by +Finance Companies",1984-12-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:14-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +517,SMU11479005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington-Arlington-Alexandria, DC- +VA-MD-WV (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:23:31-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2416,14 +2811,18 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU37395805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU11479005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -461,SMU37395805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Raleigh, NC (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:15:27-06,1,1,No description provided. -462,SMU32298205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +518,SMU11479005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington-Arlington-Alexandria, DC- +VA-MD-WV (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:32:08-05,1,1,No description provided. +519,SMU11479005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington-Arlington-Alexandria, DC- +VA-MD-WV (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:43:12-05,1,1,No description provided. +520,SMU32298205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Las Vegas-Henderson-Paradise, NV -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:11:39-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:03:52-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2436,123 +2835,132 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU32298205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -463,SMU32298205552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +521,SMU32298205552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Las Vegas-Henderson-Paradise, NV -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:32:57-05,1,1,No description provided. -464,SMU32298205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:39:41-05,1,1,No description provided. +522,SMU32298205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Las Vegas-Henderson-Paradise, NV -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:19:40-06,1,1,No description provided. -465,SMU09000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Connecticut",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:43:41-05,1,1,No description provided. -466,SMS09000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Connecticut",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:44:00-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -467,SMU09000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Connecticut",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:26-06,1,1,No description provided. -468,BOGZ1FL613070103Q,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program -Receivables Due from Federal Government; Asset, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613072003.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613072003&t=) provided by -the source." -469,BOGZ1FL613070103A,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program -Receivables Due from Federal Government; Asset, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-06-09 11:52:28-05,1,1,"Source ID: FL613072003.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613072003&t=) provided by -the source." -470,BOGZ1FL613163093Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds, -Notes, Bonds, and Debentures; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL613163093.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163093&t=) provided by -the source." -471,BOGZ1FL613163093A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds, -Notes, Bonds, and Debentures; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:03:26-05,1,1,"Source ID: FL613163093.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163093&t=) provided by -the source." -472,FLNREVNFC,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Owned by Finance -Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:29-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:18:28-05,1,1,No description provided. +523,FLNREVNFC,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Owned by Finance +Companies, Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -473,FLNREVNFCA,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Owned by Finance -Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:29-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +524,FLNREVNFCA,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Owned by Finance +Companies, Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Annual Rate","Bil. of $, Annual Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release, online at http://www.federalreserve.gov/releases/g19/." -474,BOGZ1FA615013033Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Software, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013033.Q For more information about the Flow of Funds tables, see the Financial +525,BOGZ1FA613020003Q,2023-03-20,2023-03-20,"Finance Companies; Checkable Deposits and +Currency; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:23:33-06,1,1,"Source ID: FA613020003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013033&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613020003&t=) provided by the source." -475,BOGZ1FA615013033A,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Software, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:19:46-06,1,1,"Source ID: FA615013033.A For more information about the Flow of Funds tables, see the Financial +526,BOGZ1FL613163083A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,1,"Source ID: FL613163083.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013033&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163083&t=) provided by the source." -476,BOGZ1FA613070103Q,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program -Receivables Due from Federal Government; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613072003.Q For more information about the Flow of Funds tables, see the Financial +527,BOGZ1FL613163083Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:18-05,1,1,"Source ID: FL613163083.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613072003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163083&t=) provided by the source." -477,BOGZ1FA613070103A,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program -Receivables Due from Federal Government; Asset, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-06-09 11:55:13-05,1,1,"Source ID: FA613072003.A For more information about the Flow of Funds tables, see the Financial +528,SMU48124205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Austin-Round Rock, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:45:55-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU48124205552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +529,SMU48124205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Austin-Round Rock, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:08:34-05,1,1,No description provided. +530,BOGZ1FR613163083Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bond, +Non-Recourse Debt; Liability, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR613163083.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613072003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163083&t=) provided by the source." -478,BOGZ1FU613070103A,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program +531,BOGZ1FL613070103Q,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program Receivables Due from Federal Government; Asset, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-06-09 11:49:33-05,1,1,"Source ID: FU613072003.A For more information about the Flow of Funds tables, see the Financial +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613072003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613072003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613072003&t=) provided by the source." -479,BOGZ1FU613070103Q,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program +532,BOGZ1FL613070103A,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program Receivables Due from Federal Government; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613072003.Q For more information about the Flow of Funds tables, see the Financial +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613072003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613072003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613072003&t=) provided by the source." -480,SMU25716545552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +533,SMU72000005552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: +Financial Activities: Finance and Insurance in +Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2014-02-02 10:28:20-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis +previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted +(NSA) version available here (https://fred.stlouisfed.org/series/SMU72000005552000008). However, +most of the earnings-related series do not have a significant seasonal component, so the values for +both the SA and the NSA series are very similar. See the NSA series +(https://fred.stlouisfed.org/series/SMU72000005552000008) for updated values. The Federal Reserve +Bank of St. Louis used to seasonally adjust this series by using the 'statsmodels' library from +Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA- +SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can +be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU72000005552000008). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +534,SMU13120605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Atlanta-Sandy Springs-Roswell, GA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:21:43-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU13120605552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +535,SMU13120605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Atlanta-Sandy Springs-Roswell, GA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:31:07-05,1,1,No description provided. +536,SMU25716545552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Boston-Cambridge-Newton, MA (NECTA -Division)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:18:32-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +Division)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:11:39-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2565,66 +2973,32 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU25716545552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -481,SMU25716545552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +537,SMU25716545552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Boston-Cambridge-Newton, MA (NECTA -Division)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:36:42-05,1,1,No description provided. -482,SMU25716545552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +Division)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:40:55-05,1,1,No description provided. +538,SMU25716545552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Boston-Cambridge-Newton, MA (NECTA -Division)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:31:21-06,1,1,No description provided. -483,SMS06000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in California",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:43-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -484,SMU06000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in California",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 03:59:04-05,1,1,No description provided. -485,SMU06000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in California",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:25-06,1,1,No description provided. -486,SMU39000005552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Ohio",2001-01-01,2018-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2019-01-18 17:13:38-06,1,1,No description provided. -487,BOGZ1FL613193005A,2023-02-27,2023-02-27,"Finance Companies; Unidentified Miscellaneous -Liabilities, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:52:54-06,1,1,"Source ID: FL613193005.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613193005&t=) provided by -the source." -488,BOGZ1FL613193005Q,2023-02-27,2023-02-27,"Finance Companies; Unidentified Miscellaneous -Liabilities, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613193005.Q For more information about the Flow of Funds tables, see the Financial +Division)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:21:36-05,1,1,No description provided. +539,BOGZ1FL613163093Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds, +Notes, Bonds, and Debentures; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:18-05,1,1,"Source ID: FL613163093.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613193005&t=) provided by -the source." -489,DTCNLHFNM,2023-02-27,2023-02-27,"Total Consumer Credit Securitized by Finance -Companies",1989-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -490,SMS42000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Pennsylvania",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:31-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -491,BOGZ1FA613069505Q,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613069505.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613069505&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163093&t=) provided by the source." -492,BOGZ1FA113169563Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:30:28-06,1,1,"Source ID: FA113169563.Q For more information about the Flow of Funds tables, see the Financial +540,BOGZ1FL613163093A,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds, +Notes, Bonds, and Debentures; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:07:38-05,1,1,"Source ID: FL613163093.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA113169563&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613163093&t=) provided by the source." -493,SMU53426445552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:48:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +541,SMU53426445552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:42:07-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2637,43 +3011,73 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU53426445552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -494,SMU53426445552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:21:56-05,1,1,No description provided. -495,SMU53426445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:04:28-06,1,1,No description provided. -496,BOGZ1FA313069223Q,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:23-06,1,1,"Source ID: FA313069223.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA313069223&t=) provided by -the source." -497,BOGZ1FA613063003Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613063003.Q For more information about the Flow of Funds tables, see the Financial +542,SMU53426445552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:35:56-05,1,1,No description provided. +543,SMU53426445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Seattle-Bellevue-Everett, WA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:04:29-05,1,1,No description provided. +544,SMU72000005552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: +Financial Activities: Finance and Insurance in +Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2014-02-02 10:28:20-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis +previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted +(NSA) version available here (https://fred.stlouisfed.org/series/SMU72000005552000030). However, +most of the earnings-related series do not have a significant seasonal component, so the values for +both the SA and the NSA series are very similar. See the NSA series +(https://fred.stlouisfed.org/series/SMU72000005552000030) for updated values. The Federal Reserve +Bank of St. Louis used to seasonally adjust this series by using the 'statsmodels' library from +Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA- +SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can +be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU72000005552000030). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +545,TX55520000A674FRBDAL,2023-03-20,2023-03-20,"Financial Activities: Finance and Insurance +Payroll Employment in Texas",1991-01-01,2022-01-01,Annual,A,December to December Percent Change,Dec to Dec % Chg.,Not Seasonally Adjusted,NSA,2023-03-10 14:44:47-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the +early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. +More information pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created +by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." +546,SMU40000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oklahoma",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:54:10-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU40000005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +547,BOGZ1FA615013033Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, +Nonresidential Software, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA615013033.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013033&t=) provided by the source." -498,DTCNLHFXDFBANM,2023-02-27,2023-02-27,"Total Consumer Credit Securitized by Finance -Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:21-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -499,BOGZ1FR113169563Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:49-06,1,1,"Source ID: FR113169563.Q For more information about the Flow of Funds tables, see the Financial +548,BOGZ1FA615013033A,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, +Nonresidential Software, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:45-05,1,1,"Source ID: FA615013033.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR113169563&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013033&t=) provided by the source." -500,SMU44000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Rhode Island",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:57:35-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +549,SMU48264205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Houston-The Woodlands-Sugar Land, TX +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:46:54-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2683,12 +3087,27 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU44000005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU48264205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -501,BOGZ1FA615013075Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, +550,SMU48264205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Houston-The Woodlands-Sugar Land, TX +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:08:12-05,1,1,No description provided. +551,SMU48264205552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Houston-The Woodlands-Sugar Land, TX +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:36:17-05,1,1,No description provided. +552,BOGZ1FA613065503Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613065503.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065503&t=) provided by +the source." +553,BOGZ1FA615013075Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, Nonresidential Intellectual Property Products, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013075.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013075.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2696,9 +3115,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013075&t=) provided by the source." -502,BOGZ1FU615013075Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, +554,BOGZ1FU615013075Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, Nonresidential Intellectual Property Products, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,1,"Source ID: FU615013075.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:10-05,1,1,"Source ID: FU615013075.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2706,127 +3125,88 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013075&t=) provided by the source." -503,SMU09719505552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Bridgeport-Stamford-Norwalk, CT -(NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:04-06,1,1,No description provided. -504,BOGZ1FL103169535Q,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -Loans; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:49:11-06,1,1,"Source ID: FL103169535.Q For more information about the Flow of Funds tables, see the Financial +555,BOGZ1FA613065123Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, +Transactions",1970-07-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613065123.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169535&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065123&t=) provided by the source." -505,BOGZ1FL103169535A,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -Loans; Liability, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:15:19-05,1,1,"Source ID: FL103169535.A For more information about the Flow of Funds tables, see the Financial +556,BOGZ1FA613065123A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, +Transactions",1971-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613065123.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169535&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065123&t=) provided by the source." -506,SMU48264205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Houston-The Woodlands-Sugar Land, TX -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:50:01-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU48264205552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -507,SMU48264205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Houston-The Woodlands-Sugar Land, TX -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:07:28-06,1,1,No description provided. -508,SMU48264205552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Houston-The Woodlands-Sugar Land, TX -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:23:29-05,1,1,No description provided. -509,BOGZ1FA616006063Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Earnings Retained -Abroad, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA616006063.Q For more information about the Flow of Funds tables, see the Financial +557,BOGZ1FL103169535Q,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +Loans; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:08:33-06,1,1,"Source ID: FL103169535.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006063&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169535&t=) provided by the source." -510,BOGZ1FU616006063Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Earnings Retained -Abroad, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,1,"Source ID: FU616006063.Q For more information about the Flow of Funds tables, see the Financial +558,BOGZ1FL103169535A,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +Loans; Liability, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:04:27-06,1,1,"Source ID: FL103169535.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616006063&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL103169535&t=) provided by the source." -511,BOGZ1FR613178033Q,2023-02-27,2023-02-27,"Finance Companies; Taxes Payable to the Federal -Government; Liability, Revaluation",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:30-06,1,1,"Source ID: FR613178033.Q For more information about the Flow of Funds tables, see the Financial +559,BOGZ1FL613192305Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S.: Intercompany Debt; Liability (Market Value), +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613192305.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613178033&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192305&t=) provided by the source." -512,G19DTCNLRHFNM,2023-02-27,2023-02-27,"Revolving Consumer Credit Securitized by Finance -Companies",1997-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:35-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -513,BOGZ1FA613065123Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, -Transactions",1970-07-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613065123.Q For more information about the Flow of Funds tables, see the Financial +560,SMS39000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Ohio",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:34-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +561,SMU39000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Ohio",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:38:04-05,1,1,No description provided. +562,BOGZ1FA613069505Q,2023-03-20,2023-03-20,"Finance Companies; Nonfinancial Business Loans, +Including Paycheck Protection Program Loans; +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613069505.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065123&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613069505&t=) provided by the source." -514,BOGZ1FA613065123A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, -Transactions",1971-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-10 12:03:03-06,1,1,"Source ID: FA613065123.A For more information about the Flow of Funds tables, see the Financial +563,BOGZ1FA113169563Q,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans from Paycheck Protection Program; +Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:12:39-05,1,1,"Source ID: FA113169563.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065123&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA113169563&t=) provided by the source." -515,BOGZ1FL613192305Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S.: Intercompany Debt; Liability (Market Value), -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613192305.Q For more information about the Flow of Funds tables, see the Financial +564,BOGZ1FL713068863Q,2023-03-20,2023-03-20,"Monetary Authority; Loans to Finance Companies +Under the Paycheck Protection Program Liquidity +Facility (PPPLF); Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:13-06,1,1,"Source ID: FL713068863.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192305&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068863&t=) provided by the source." -516,SMS39000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Ohio",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:37-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -517,SMU39000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Ohio",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:30:58-05,1,1,No description provided. -518,SMU12484245552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in West Palm Beach-Boca Raton-Delray -Beach, FL (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:29:00-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU12484245552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -519,SMU04380605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Phoenix-Mesa-Scottsdale, AZ (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:46:04-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +565,SMU04380605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Phoenix-Mesa-Scottsdale, AZ (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:35:08-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2839,19 +3219,28 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU04380605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -520,SMU04380605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Phoenix-Mesa-Scottsdale, AZ (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:44-06,1,1,No description provided. -521,BOGZ1FL113169535Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:49:10-06,1,1,"Source ID: FL113169535.Q For more information about the Flow of Funds tables, see the Financial +566,SMU04380605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Phoenix-Mesa-Scottsdale, AZ (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:43-05,1,1,No description provided. +567,BOGZ1FA616006063Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Earnings Retained +Abroad, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616006063.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169535&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006063&t=) provided by +the source." +568,BOGZ1FU616006063Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Earnings Retained +Abroad, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU616006063.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616006063&t=) provided by the source." -522,BOGZ1FU615013103Q,2023-02-27,2023-02-27,"Finance Companies; Fixed Assets, Book Value, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 16:00:02-06,1,1,"Source ID: FU615013103.Q For more information about the Flow of Funds tables, see the Financial +569,BOGZ1FU615013103Q,2023-03-20,2023-03-20,"Finance Companies; Fixed Assets, Book Value, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU615013103.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2859,8 +3248,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013103&t=) provided by the source." -523,BOGZ1FA615013103Q,2023-02-27,2023-02-27,"Finance Companies; Fixed Assets, Book Value, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 16:00:22-06,1,1,"Source ID: FA615013103.Q For more information about the Flow of Funds tables, see the Financial +570,BOGZ1FA615013103Q,2023-03-20,2023-03-20,"Finance Companies; Fixed Assets, Book Value, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013103.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2868,8 +3257,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013103&t=) provided by the source." -524,BOGZ1FU615013103A,2023-02-27,2023-02-27,"Finance Companies; Fixed Assets, Book Value, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 16:00:02-06,1,1,"Source ID: FU615013103.A For more information about the Flow of Funds tables, see the Financial +571,BOGZ1FU615013103A,2023-03-20,2023-03-20,"Finance Companies; Fixed Assets, Book Value, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,1,"Source ID: FU615013103.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2877,35 +3266,70 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013103&t=) provided by the source." -525,BOGZ1FU613065000Q,2023-02-27,2023-02-27,"Finance Companies; Total Mortgages; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613065000.Q For more information about the Flow of Funds tables, see the Financial +572,SMU39000005552000008,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: +Financial Activities: Finance and Insurance in +Ohio",2001-01-01,2018-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2019-01-18 17:13:38-06,1,1,No description provided. +573,BOGZ1FR113169563Q,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans from Paycheck Protection Program; +Liability, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:13:31-05,1,1,"Source ID: FR113169563.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR113169563&t=) provided by the source." -526,BOGZ1FA613065183Q,2023-02-27,2023-02-27,"Finance Companies; Construction Loans on One-to- -Four Family Homes; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:40-06,1,1,"Source ID: FA613065183.Q For more information about the Flow of Funds tables, see the Financial +574,BOGZ1FL113169535Q,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:08:31-06,1,1,"Source ID: FL113169535.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065183&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL113169535&t=) provided by the source." -527,BOGZ1FU613065183A,2023-02-27,2023-02-27,"Finance Companies; Construction Loans on One-to- -Four Family Homes; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:11:11-05,1,1,"Source ID: FU613065183.A For more information about the Flow of Funds tables, see the Financial +575,SMU37395805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Raleigh, NC (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:56:19-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU37395805552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +576,SMU37395805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Raleigh, NC (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:27-05,1,1,No description provided. +577,BOGZ1FA313069223Q,2023-03-20,2023-03-20,"Federal Government; Loans to Finance Companies +(Chrysler Financial); Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:53-06,1,1,"Source ID: FA313069223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065183&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA313069223&t=) provided by +the source." +578,SMU27000005552000008A,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: +Financial Activities: Finance and Insurance in +Minnesota",2001-01-01,2022-01-01,Annual,A,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-03-14 03:40:25-05,1,1,No description provided. +579,SMU27000005552000008,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: +Financial Activities: Finance and Insurance in +Minnesota",2001-01-01,2023-01-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-03-14 02:18:54-05,1,1,No description provided. +580,BOGZ1FR613178033Q,2023-03-20,2023-03-20,"Finance Companies; Taxes Payable to the Federal +Government; Liability, Revaluation",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:30-06,1,1,"Source ID: FR613178033.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613178033&t=) provided by the source." -528,BOGZ1FL613090005Q,2023-02-27,2023-02-27,"Finance Companies; Total Miscellaneous Assets, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 13:33:44-06,1,1,"Source ID: FL613090005.Q For more information about the Flow of Funds tables, see the Financial +581,BOGZ1FL613090005Q,2023-03-20,2023-03-20,"Finance Companies; Total Miscellaneous Assets, +Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613090005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2913,8 +3337,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613090005&t=) provided by the source." -529,BOGZ1FL613090005A,2023-02-27,2023-02-27,"Finance Companies; Total Miscellaneous Assets, -Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 13:33:44-06,1,1,"Source ID: FL613090005.A For more information about the Flow of Funds tables, see the Financial +582,BOGZ1FL613090005A,2023-03-20,2023-03-20,"Finance Companies; Total Miscellaneous Assets, +Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613090005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -2922,12 +3346,21 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613090005&t=) provided by the source." -530,DTCTLNHFXDFBANM,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Owned and Securitized -by Finance Companies, Flow",1943-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:26-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -531,SMU17193405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +583,SMU09719505552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Bridgeport-Stamford-Norwalk, CT +(NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:10-05,1,1,No description provided. +584,BOGZ1FA613063003Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613063003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063003&t=) provided by +the source." +585,SMU17193405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Davenport-Moline-Rock Island, IA-IL -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:25:38-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:16:41-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2940,14 +3373,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU17193405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -532,SMU27000005552000008A,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Minnesota",2001-01-01,2021-01-01,Annual,A,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2022-03-15 05:34:33-05,1,1,No description provided. -533,SMU27000005552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Minnesota",2001-01-01,2022-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-01-25 02:22:23-06,1,1,No description provided. -534,SMU02112605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Anchorage, AK (MSA)",2000-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:44:55-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +586,SMU02112605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Anchorage, AK (MSA)",2000-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:33:50-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2960,21 +3387,55 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU02112605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -535,SMU02112605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Anchorage, AK (MSA)",2000-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:41:18-06,1,1,No description provided. -536,SMU02112605552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Anchorage, AK (MSA)",2000-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:47:59-05,1,1,No description provided. -537,BOGZ1LM613063003Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Market Value Levels",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:43:50-06,1,1,"Source ID: LM613063003.Q For more information about the Flow of Funds tables, see the Financial +587,SMU02112605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Anchorage, AK (MSA)",2000-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:24-05,1,1,No description provided. +588,SMU02112605552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Anchorage, AK (MSA)",2000-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:45:11-05,1,1,No description provided. +589,BOGZ1FL613193005A,2023-03-20,2023-03-20,"Finance Companies; Unidentified Miscellaneous +Liabilities, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,1,"Source ID: FL613193005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613063003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613193005&t=) provided by +the source." +590,BOGZ1FL613193005Q,2023-03-20,2023-03-20,"Finance Companies; Unidentified Miscellaneous +Liabilities, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613193005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613193005&t=) provided by +the source." +591,DTCTLNHFXDFBANM,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Owned and Securitized +by Finance Companies, Flow",1943-02-01,2023-01-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-03-07 14:02:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +release (https://www.federalreserve.gov/releases/g19/current/)." +592,SMS08000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Colorado",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:40:40-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +593,SMU08000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Colorado",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:32:35-05,1,1,No description provided. +594,BOGZ1FA613065183Q,2023-03-20,2023-03-20,"Finance Companies; Construction Loans on One-to- +Four Family Homes; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:11:00-05,1,1,"Source ID: FA613065183.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065183&t=) provided by +the source." +595,BOGZ1FU613065183A,2023-03-20,2023-03-20,"Finance Companies; Construction Loans on One-to- +Four Family Homes; Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:48-05,1,1,"Source ID: FU613065183.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065183&t=) provided by the source." -538,SMU12367405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Orlando-Kissimmee-Sanford, FL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:30:43-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +596,SMU06417405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:29:03-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -2984,13 +3445,16 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU12367405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU06417405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -539,SMU12367405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Orlando-Kissimmee-Sanford, FL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:36:47-06,1,1,No description provided. -540,SMU06417405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:38:03-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +597,SMU06417405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:41-05,1,1,No description provided. +598,SMU06417405552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:44:17-05,1,1,No description provided. +599,SMU12484245552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in West Palm Beach-Boca Raton-Delray +Beach, FL (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:20:56-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3000,27 +3464,39 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU06417405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU12484245552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -541,SMU06417405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:25-06,1,1,No description provided. -542,SMU06417405552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Diego-Carlsbad, CA (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:45:32-05,1,1,No description provided. -543,BOGZ1FA615013005Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Structures, Equipment, and -Intellectual Property Products Excluding -Securitized Equipment, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA615013005.Q For more information about the Flow of Funds tables, see the Financial +600,BOGZ1FA613030003A,2023-03-20,2023-03-20,"Finance Companies; Total Time and Savings +Deposits; Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613030003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613030003&t=) provided by +the source." +601,BOGZ1FU613030003Q,2023-03-20,2023-03-20,"Finance Companies; Total Time and Savings +Deposits; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613030003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613030003&t=) provided by +the source." +602,BOGZ1FA613030003Q,2023-03-20,2023-03-20,"Finance Companies; Total Time and Savings +Deposits; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613030003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613030003&t=) provided by the source." -544,BOGZ1FA615013043Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, +603,BOGZ1FA615013043Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, Nonresidential Research and Development, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013043.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013043.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3028,9 +3504,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013043&t=) provided by the source." -545,BOGZ1FA615013043A,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, +604,BOGZ1FA615013043A,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, Nonresidential Research and Development, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:26-06,1,1,"Source ID: FA615013043.A For more information about the Flow of Funds tables, see the Financial +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:45-05,1,1,"Source ID: FA615013043.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3038,8 +3514,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013043&t=) provided by the source." -546,SMU32399005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Reno, NV (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:50:33-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +605,SMU12367405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Orlando-Kissimmee-Sanford, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:21:32-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3049,21 +3525,31 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU32399005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU12367405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -547,BOGZ1FL613069505Q,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613069505.Q For more information about the Flow of Funds tables, see the Financial +606,SMU12367405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Orlando-Kissimmee-Sanford, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:30:52-05,1,1,No description provided. +607,SMU53000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:35:37-05,1,1,No description provided. +608,SMU53000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:04:46-05,1,1,No description provided. +609,SMS53000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Washington",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:04-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +610,BOGZ1FA615013005Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, +Nonresidential Structures, Equipment, and +Intellectual Property Products Excluding +Securitized Equipment, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA615013005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613069505&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013005&t=) provided by the source." -548,SMU22000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Louisiana",1996-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:21:45-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +611,SMU21311405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Louisville/Jefferson County, KY-IN +(MSA)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:14:46-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3073,16 +3559,13 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU22000005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU21311405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -549,SMU22000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Louisiana",1996-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:37:52-05,1,1,No description provided. -550,SMS08000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Colorado",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:39-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -551,SMU08000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Colorado",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:17-06,1,1,No description provided. -552,BOGZ1LM613192003Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in +612,SMU21311405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Louisville/Jefferson County, KY-IN +(MSA)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:23:46-05,1,1,No description provided. +613,BOGZ1LM613192003Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in U.S. (Market Value); Liability, Market Value Levels",1945-10-01,2020-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2021-03-11 11:44:52-06,1,1,"Source ID: LM613192003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, @@ -3092,36 +3575,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613192003&t=) provided by the source." -553,BOGZ1FA613030003A,2023-02-27,2023-02-27,"Finance Companies; Total Time and Savings -Deposits; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:32-05,1,1,"Source ID: FA613030003.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613030003&t=) provided by -the source." -554,BOGZ1FU613030003Q,2023-02-27,2023-02-27,"Finance Companies; Total Time and Savings -Deposits; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613030003.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613030003&t=) provided by -the source." -555,BOGZ1FA613030003Q,2023-02-27,2023-02-27,"Finance Companies; Total Time and Savings -Deposits; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613030003.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613030003&t=) provided by -the source." -556,SMU21311405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Louisville/Jefferson County, KY-IN -(MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:23:39-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +614,SMU22000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Louisiana",1996-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:14:37-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3131,41 +3586,27 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU21311405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU22000005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -557,SMU21311405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Louisville/Jefferson County, KY-IN -(MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:32:00-06,1,1,No description provided. -558,SMU48000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Texas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:08:34-06,1,1,No description provided. -559,SMS48000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Texas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:41:51-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -560,BOGZ1FR613163093Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds, -Notes, Bonds, and Debentures; Liability, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:29-06,1,1,"Source ID: FR613163093.Q For more information about the Flow of Funds tables, see the Financial +615,BOGZ1FA615013465Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Research and +Development, Current Cost Basis, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013465.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163093&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013465&t=) provided by the source." -561,SMU53000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:22:20-05,1,1,No description provided. -562,SMU53000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:04:56-06,1,1,No description provided. -563,SMS53000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Washington",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:10-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -564,SMU06401405552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +616,SMU06401405552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Riverside-San Bernardino-Ontario, CA -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:45:05-05,1,1,No description provided. -565,SMU06401405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:43:56-05,1,1,No description provided. +617,SMU06401405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Riverside-San Bernardino-Ontario, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:14-06,1,1,No description provided. -566,SMU06401405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:14-05,1,1,No description provided. +618,SMU06401405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Riverside-San Bernardino-Ontario, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:39:48-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:28:45-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3178,18 +3619,20 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06401405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -567,BOGZ1FA615013465Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Research and -Development, Current Cost Basis, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013465.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013465&t=) provided by -the source." -568,SMU37167405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Charlotte-Concord-Gastonia, NC-SC -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:04:01-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +619,BACBANAICS52SAUS,2023-03-20,2023-03-20,"Business Applications from Corporations: Finance +and Insurance in the United States",2004-07-01,2023-02-01,Monthly,M,Number,Number,Seasonally Adjusted,SA,2023-03-10 11:03:26-06,1,1,"High-Propensity Business Applications (HBA) from a corporation or personal service corporation, +based on the legal form of organization stated in the IRS Form SS-4. See the U.S. Census's FAQs +(https://www.census.gov/econ/bfs/faqs.html) for more details." +620,BACBANAICS52NSAUS,2023-03-20,2023-03-20,"Business Applications from Corporations: Finance +and Insurance in the United States",2004-07-01,2023-02-01,Monthly,M,Number,Number,Not Seasonally Adjusted,NSA,2023-03-10 11:03:26-06,1,1,"High-Propensity Business Applications (HBA) from a corporation or personal service corporation, +based on the legal form of organization stated in the IRS Form SS-4. See the U.S. Census's FAQs +(https://www.census.gov/econ/bfs/faqs.html) for more details." +621,SMU48000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Texas",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:08:48-05,1,1,No description provided. +622,SMS48000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Texas",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:16-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +623,SMU42383005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Pittsburgh, PA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:50:50-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3199,30 +3642,14 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU37167405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU42383005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -569,SMU37167405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +624,SMU42383005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Pittsburgh, PA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:11:53-05,1,1,No description provided. +625,SMU37167405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Charlotte-Concord-Gastonia, NC-SC -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:15:48-06,1,1,No description provided. -570,BOGZ1FL613066005Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613066005.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066005&t=) provided by -the source." -571,BOGZ1FL613066005A,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613066005.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066005&t=) provided by -the source." -572,SMU42383005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Pittsburgh, PA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:56:35-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:56:54-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3232,24 +3659,15 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU42383005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU37167405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -573,SMU42383005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Pittsburgh, PA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:11:17-06,1,1,No description provided. -574,SMS16000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Idaho",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:28-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -575,BACBANAICS52SAUS,2023-02-27,2023-02-27,"Business Applications from Corporations: Finance -and Insurance in the United States",2004-07-01,2023-01-01,Monthly,M,Number,Number,Seasonally Adjusted,SA,2023-02-10 11:03:22-06,1,1,"High-Propensity Business Applications (HBA) from a corporation or personal service corporation, -based on the legal form of organization stated in the IRS Form SS-4. See the U.S. Census's FAQs -(https://www.census.gov/econ/bfs/faqs.html) for more details." -576,BACBANAICS52NSAUS,2023-02-27,2023-02-27,"Business Applications from Corporations: Finance -and Insurance in the United States",2004-07-01,2023-01-01,Monthly,M,Number,Number,Not Seasonally Adjusted,NSA,2023-02-10 11:03:22-06,1,1,"High-Propensity Business Applications (HBA) from a corporation or personal service corporation, -based on the legal form of organization stated in the IRS Form SS-4. See the U.S. Census's FAQs -(https://www.census.gov/econ/bfs/faqs.html) for more details." -577,BOGZ1FL673069503Q,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial +626,SMU37167405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Charlotte-Concord-Gastonia, NC-SC +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:59-05,1,1,No description provided. +627,BOGZ1FL673069503Q,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial Business Loans Securitized by Finance Companies; -Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:49-06,1,1,"Source ID: FL673069503.Q For more information about the Flow of Funds tables, see the Financial +Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:11-05,1,1,"Source ID: FL673069503.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3257,8 +3675,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL673069503&t=) provided by the source." -578,BOGZ1FL613030003Q,2023-02-27,2023-02-27,"Finance Companies; Total Time and Savings -Deposits; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:28-06,1,1,"Source ID: FL613030003.Q For more information about the Flow of Funds tables, see the Financial +628,BOGZ1FL613030003Q,2023-03-20,2023-03-20,"Finance Companies; Total Time and Savings +Deposits; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613030003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3266,8 +3684,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613030003&t=) provided by the source." -579,BOGZ1FL613030003A,2023-02-27,2023-02-27,"Finance Companies; Total Time and Savings -Deposits; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:22:43-05,1,1,"Source ID: FL613030003.A For more information about the Flow of Funds tables, see the Financial +629,BOGZ1FL613030003A,2023-03-20,2023-03-20,"Finance Companies; Total Time and Savings +Deposits; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613030003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3275,16 +3693,17 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613030003&t=) provided by the source." -580,BOGZ1FA616006305Q,2023-02-27,2023-02-27,"Finance Companies; Net Saving Including Foreign -Earnings Retained Abroad and CCAdj, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA616006305.Q For more information about the Flow of Funds tables, see the Financial +630,SMS16000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Idaho",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:25-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +631,BOGZ1FL613066005Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613066005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006305&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066005&t=) provided by the source." -581,BOGZ1FA613063083Q,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by +632,BOGZ1FA613063083Q,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by Private Depository Institutions; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:29-06,1,1,"Source ID: FA613063083.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are @@ -3293,34 +3712,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063083&t=) provided by the source." -582,SMU36356205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York-Northern New Jersey-Long -Island, NY-NJ-PA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:28:33-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from -R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA -Seasonal Adjustment Program. More information on the 'x12' package can be found at -http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at -https://www.census.gov/srd/www/x13as/." -583,BOGZ1FL613065433Q,2023-02-27,2023-02-27,"Finance Companies; Mutlifamily Residential -Mortgages Issued by the Federal Government; Asset, -Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:24:43-06,1,1,"Source ID: FL613065433.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065433&t=) provided by -the source." -584,BOGZ1FL613065433A,2023-02-27,2023-02-27,"Finance Companies; Mutlifamily Residential -Mortgages Issued by the Federal Government; Asset, -Level",1945-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-05-11 14:25:10-05,1,1,"Source ID: FL613065433.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065433&t=) provided by -the source." -585,BOGZ1FL613066303Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Leases; Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613066303.Q For more information about the Flow of Funds tables, see the Financial +633,BOGZ1FL613066303Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Leases; Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:41-06,1,1,"Source ID: FL613066303.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3328,7 +3720,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066303&t=) provided by the source." -586,BOGZ1FL613066303A,2023-02-27,2023-02-27,"Finance Companies; Consumer Leases; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613066303.A For more information about the Flow of Funds tables, see the Financial +634,BOGZ1FL613066303A,2023-03-20,2023-03-20,"Finance Companies; Consumer Leases; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:40-06,1,1,"Source ID: FL613066303.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3336,18 +3728,33 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613066303&t=) provided by the source." -587,SMS12000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Florida",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:36-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -588,BOGZ1FA614123005A,2023-02-27,2023-02-27,"Finance Companies; Loans; Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:23:25-05,1,1,"Source ID: FA614123005.A For more information about the Flow of Funds tables, see the Financial +635,SMU32399005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Reno, NV (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:03:43-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU32399005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +636,SMS21000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Kentucky",2001-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:55-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +637,BOGZ1FR613065123Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, +Revaluation",1970-07-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:47-06,1,1,"Source ID: FR613065123.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614123005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065123&t=) provided by the source." -589,BOGZ1FR613065123Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, -Revaluation",1970-07-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613065123.Q For more information about the Flow of Funds tables, see the Financial +638,BOGZ1FR613065123A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Loans; Asset, +Revaluation",1971-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:17-06,1,1,"Source ID: FR613065123.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3355,80 +3762,46 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065123&t=) provided by the source." -590,BOGZ1FR613065123A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Loans; Asset, -Revaluation",1971-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:38:17-06,1,1,"Source ID: FR613065123.A For more information about the Flow of Funds tables, see the Financial +639,BOGZ1FL613168005Q,2023-03-20,2023-03-20,"Finance Companies; Depository Institution Loans +N.E.C., Including Loans Through the Paycheck +Protection Program Liquidity Facility (PPPLF); +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613168005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065123&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613168005&t=) provided by the source." -591,BOGZ1FL613168005Q,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C., Including Loans Through the Paycheck -Protection Program Liquidity Facility (PPPLF); -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613168005.Q For more information about the Flow of Funds tables, see the Financial +640,BOGZ1FL613065433Q,2023-03-20,2023-03-20,"Finance Companies; Mutlifamily Residential +Mortgages Issued by the Federal Government; Asset, +Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:24:43-06,1,1,"Source ID: FL613065433.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613168005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065433&t=) provided by the source." -592,SMS01000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Alabama",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:45:31-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -593,SMU01000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Alabama",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:41:20-06,1,1,No description provided. -594,A09025USA174NNBR,2023-02-27,2023-02-27,"Deficits, Finance Companies for United States",1917-01-01,1940-01-01,Annual,A,Thousands of Dollars,Thous. Of $,Not Seasonally Adjusted,NSA,2012-08-17 15:02:03-05,1,1,"1936-1940 Data Were Computed By NBER From Data In Statistics Of Income (See Notes). The 1938 Data -Were Adjusted By NBER To Conform To 1937 Industrial Classification (See Notes). Data For 1939-1940 -Are Based On 1938 Standard Industrial Classification. Source: Bureau Of Internal Revenue: Statistics -Of Income, 1916 And Successive Years. This NBER data series a09025 appears on the NBER website in -Chapter 9 at http://www.nber.org/databases/macrohistory/contents/chapter09.html. NBER Indicator: -a09025" -595,SMS21000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Kentucky",2001-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:12-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -596,BOGZ1FA613192003Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S. (Market Value); Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613192003.Q For more information about the Flow of Funds tables, see the Financial +641,BOGZ1FL613065433A,2023-03-20,2023-03-20,"Finance Companies; Mutlifamily Residential +Mortgages Issued by the Federal Government; Asset, +Level",1945-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-05-11 14:25:10-05,1,1,"Source ID: FL613065433.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613192003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065433&t=) provided by the source." -597,SMU06422005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Santa Maria-Santa Barbara, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:38:22-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU06422005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -598,SMU06371005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oxnard-Thousand Oaks-Ventura, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:40-06,1,1,No description provided. -599,SMU16142605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Boise City, ID (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:28:01-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU16142605552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -600,BOGZ1FL615000005Q,2023-02-27,2023-02-27,"Finance Companies; Net Lending (+) or Borrowing -(-) (Financial Account), Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 16:00:14-06,1,1,"Source ID: FL615000005.Q For more information about the Flow of Funds tables, see the Financial +642,SMU36356205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New York-Northern New Jersey-Long +Island, NY-NJ-PA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:28:33-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from +R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA +Seasonal Adjustment Program. More information on the 'x12' package can be found at +http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at +https://www.census.gov/srd/www/x13as/." +643,BOGZ1FL615000005Q,2023-03-20,2023-03-20,"Finance Companies; Net Lending (+) or Borrowing +(-) (Financial Account), Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:17-05,1,1,"Source ID: FL615000005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3436,35 +3809,24 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615000005&t=) provided by the source." -601,SMU12331245552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Miami-Miami Beach-Kendall, FL (MD)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:37:13-06,1,1,No description provided. -602,SMU12331245552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Miami-Miami Beach-Kendall, FL (MD)",2003-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:41:59-05,1,1,No description provided. -603,DALN0A175MFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for -Dallas-Plano-Irving, TX (MSAD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:13:52-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas -of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the -early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. -More information pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm." -604,SMU28000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Mississippi",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:14:31-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU28000005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -605,SMU28000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Mississippi",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:22:38-06,1,1,No description provided. -606,SMU17169745552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +644,A09025USA174NNBR,2023-03-20,2023-03-20,"Deficits, Finance Companies for United States",1917-01-01,1940-01-01,Annual,A,Thousands of Dollars,Thous. Of $,Not Seasonally Adjusted,NSA,2012-08-17 15:02:03-05,1,1,"1936-1940 Data Were Computed By NBER From Data In Statistics Of Income (See Notes). The 1938 Data +Were Adjusted By NBER To Conform To 1937 Industrial Classification (See Notes). Data For 1939-1940 +Are Based On 1938 Standard Industrial Classification. Source: Bureau Of Internal Revenue: Statistics +Of Income, 1916 And Successive Years. This NBER data series a09025 appears on the NBER website in +Chapter 9 at http://www.nber.org/databases/macrohistory/contents/chapter09.html. NBER Indicator: +a09025" +645,BOGZ1FA613192003Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S. (Market Value); Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613192003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613192003&t=) provided by +the source." +646,SMU17169745552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Chicago-Naperville-Arlington Heights, -IL (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:25:58-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +IL (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:17:09-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3477,23 +3839,23 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU17169745552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -607,SMU17169745552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +647,SMU17169745552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Chicago-Naperville-Arlington Heights, -IL (MD)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:40:03-05,1,1,No description provided. -608,SMU17169745552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +IL (MD)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:42:31-05,1,1,No description provided. +648,SMU17169745552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Chicago-Naperville-Arlington Heights, -IL (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:34:41-06,1,1,No description provided. -609,BOGZ1LM613092003Q,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad -(Market Value); Asset, Market Value Levels",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:43:50-06,1,1,"Source ID: LM613092003.Q For more information about the Flow of Funds tables, see the Financial +IL (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:25:25-05,1,1,No description provided. +649,BOGZ1FA616006305Q,2023-03-20,2023-03-20,"Finance Companies; Net Saving Including Foreign +Earnings Retained Abroad and CCAdj, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616006305.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613092003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616006305&t=) provided by the source." -610,BOGZ1LM613092003A,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad -(Market Value); Asset, Market Value Levels",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:13:55-05,1,1,"Source ID: LM613092003.A For more information about the Flow of Funds tables, see the Financial +650,BOGZ1LM613092003Q,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad +(Market Value); Asset, Market Value Levels",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:04:52-06,1,1,"Source ID: LM613092003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3501,32 +3863,39 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613092003&t=) provided by the source." -611,SMS18000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Indiana",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:24-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -612,BOGZ1FL613192003Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S. (Market Value); Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL613192003.Q For more information about the Flow of Funds tables, see the Financial +651,BOGZ1LM613092003A,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad +(Market Value); Asset, Market Value Levels",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:58:28-06,1,1,"Source ID: LM613092003.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=LM613092003&t=) provided by the source." -613,BOGZ1FU613065433A,2023-02-27,2023-02-27,"Finance Companies; Mutlifamily Residential -Mortgages Issued by the Federal Government; Asset, -Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-05-11 14:17:38-05,1,1,"Source ID: FU613065433.A For more information about the Flow of Funds tables, see the Financial +652,SMS19000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Iowa",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:59-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +653,BOGZ1FA614123005A,2023-03-20,2023-03-20,"Finance Companies; Loans; Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-10 16:49:57-06,1,1,"Source ID: FA614123005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065433&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614123005&t=) provided by the source." -614,SMS19000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Iowa",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:16-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -615,SMU06310805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Los Angeles-Long Beach-Anaheim, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:41:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +654,DALN0A175MFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for +Dallas-Plano-Irving, TX (MSAD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:41:10-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the +early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. +More information pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm." +655,SMU12331245552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Miami-Miami Beach-Kendall, FL (MD)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:30:57-05,1,1,No description provided. +656,SMU12331245552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Miami-Miami Beach-Kendall, FL (MD)",2003-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:43:16-05,1,1,No description provided. +657,SMS18000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Indiana",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:19-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +658,SMU06422005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Santa Maria-Santa Barbara, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:25:34-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3536,17 +3905,15 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU06310805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU06422005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -616,SMU06310805552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Los Angeles-Long Beach-Anaheim, CA -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:46:18-05,1,1,No description provided. -617,SMU06310805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +659,SMU06371005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oxnard-Thousand Oaks-Ventura, CA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:56-05,1,1,No description provided. +660,SMU06310805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Los Angeles-Long Beach-Anaheim, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:00-06,1,1,No description provided. -618,SMU08197405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Denver-Aurora-Lakewood, CO (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:34:58-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:32:27-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3556,13 +3923,17 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU08197405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU06310805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -619,SMU08197405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Denver-Aurora-Lakewood, CO (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:13-06,1,1,No description provided. -620,SMU08178205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Colorado Springs, CO (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:36:12-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +661,SMU06310805552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Los Angeles-Long Beach-Anaheim, CA +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:44:40-05,1,1,No description provided. +662,SMU06310805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Los Angeles-Long Beach-Anaheim, CA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:21-05,1,1,No description provided. +663,SMU08197405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Denver-Aurora-Lakewood, CO (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:26:30-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3572,11 +3943,13 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU08178205552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU08197405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -621,SMU06473005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Visalia-Porterville, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:36:39-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +664,SMU08197405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Denver-Aurora-Lakewood, CO (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:32:20-05,1,1,No description provided. +665,SMU06473005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Visalia-Porterville, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:27:04-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3589,15 +3962,23 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06473005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -622,HOLN0A175MFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for -Houston-The Woodlands-Sugar Land, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:13:07-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +666,BOGZ1FL613192003Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S. (Market Value); Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:17-05,1,1,"Source ID: FL613192003.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192003&t=) provided by +the source." +667,HOLN0A175MFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for +Houston-The Woodlands-Sugar Land, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:42:25-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm." -623,SMU06419405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Jose-Sunnyvale-Santa Clara, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:37:15-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +668,SMU08178205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Colorado Springs, CO (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:26:39-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3607,23 +3988,11 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU06419405552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU08178205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -624,SMU06419405552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Jose-Sunnyvale-Santa Clara, CA -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:44:53-05,1,1,No description provided. -625,SMU06419405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Jose-Sunnyvale-Santa Clara, CA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:59-06,1,1,No description provided. -626,SMU24925815552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Baltimore City, MD",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:29:55-06,1,1,"Baltimore City, MD constitutes a significant percentage of the state's total statewide employment. -This series is calculated in addition to the Baltimore-Columbia-Townson MD (MSA)'s statistics -because of it's importance to the state. For more details on non-standard area definitions, visit -the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) -of the Current Employment Statistics." -627,SMU12272605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Jacksonville, FL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:32:55-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +669,SMU16142605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Boise City, ID (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:18:29-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3633,13 +4002,18 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU12272605552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU16142605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -628,SMU12272605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Jacksonville, FL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:37:17-06,1,1,No description provided. -629,SMU48111005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Amarillo, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:54:10-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +670,SMU24925815552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Baltimore City, MD",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:21:44-05,1,1,"Baltimore City, MD constitutes a significant percentage of the state's total statewide employment. +This series is calculated in addition to the Baltimore-Columbia-Townson MD (MSA)'s statistics +because of it's importance to the state. For more details on non-standard area definitions, visit +the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) +of the Current Employment Statistics." +671,SMU06419405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Jose-Sunnyvale-Santa Clara, CA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:25:58-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3649,23 +4023,27 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU48111005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU06419405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -630,TX55520000MC175FRBDAL,2023-02-27,2023-02-27,"Change in Financial Activities: Finance and -Insurance Payroll Employment in Texas",1990-02-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:14:53-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Texas using early -benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking -technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information -pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm." -631,SMS27000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Minnesota",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:01-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -632,SMU36153805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Buffalo-Cheektowaga-Niagara Falls, NY -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:17:13-06,1,1,No description provided. -633,SMU36153805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Buffalo-Cheektowaga-Niagara Falls, NY -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:07:05-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +672,SMU06419405552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Jose-Sunnyvale-Santa Clara, CA +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:44:09-05,1,1,No description provided. +673,SMU06419405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Jose-Sunnyvale-Santa Clara, CA +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:54-05,1,1,No description provided. +674,BOGZ1FU613065433A,2023-03-20,2023-03-20,"Finance Companies; Mutlifamily Residential +Mortgages Issued by the Federal Government; Asset, +Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-05-11 14:17:38-05,1,1,"Source ID: FU613065433.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065433&t=) provided by +the source." +675,SMU12272605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Jacksonville, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:22:09-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3675,13 +4053,21 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU36153805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU12272605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -634,SMS02000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Alaska",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:45:28-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -635,SMU55000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Wisconsin",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:46:43-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +676,SMU12272605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Jacksonville, FL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:31:21-05,1,1,No description provided. +677,SMS02000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Alaska",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:40:14-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +678,TX55520000MC175FRBDAL,2023-03-20,2023-03-20,"Change in Financial Activities: Finance and +Insurance Payroll Employment in Texas",1990-02-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:44:48-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Texas using early +benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking +technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information +pertaining to two-step seasonal adjustment can be found at +http://www.dallasfed.org/research/basics/twostep.cfm." +679,SMU48111005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Amarillo, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:46:01-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3691,42 +4077,11 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU55000005552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU48111005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -636,SMS24000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Maryland",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:08-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -637,BOGZ1FR613065200A,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Revaluation",1971-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:15:34-05,1,1,"Source ID: FR613065200.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065200&t=) provided by -the source." -638,BOGZ1FR613065200Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Revaluation",1970-04-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:29-06,1,1,"Source ID: FR613065200.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065200&t=) provided by -the source." -639,BOGZ1FR613063003Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613063003.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613063003&t=) provided by -the source." -640,SMU40364205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oklahoma City, OK (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:13:26-06,1,1,No description provided. -641,SMU40364205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oklahoma City, OK (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:01:14-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +680,SMU55000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Wisconsin",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:41:22-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3736,24 +4091,15 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU40364205552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU55000005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -642,BOGZ1FR614090610A,2023-02-27,2023-02-27,"Finance Companies; Total Assets (Balance Sheet), -Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-18 17:01:17-05,1,1,"Source ID: FR614090610.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR614090610&t=) provided by -the source." -643,SMU27334605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Minneapolis-St. Paul-Bloomington, MN- -WI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:22:07-06,1,1,No description provided. -644,SMU27334605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Minneapolis-St. Paul-Bloomington, MN- -WI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:14:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +681,SMS24000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Maryland",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:50-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +682,SMU40364205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oklahoma City, OK (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:12:17-05,1,1,No description provided. +683,SMU40364205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oklahoma City, OK (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:53:55-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3763,199 +4109,204 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU27334605552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU40364205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -645,SMU06418605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +684,SMU06418605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in San Francisco-Oakland-Fremont, CA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 13:56:56-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -646,BOGZ1FU613092403Q,2023-02-27,2023-02-27,"Finance Companies; Equity in FHLB; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU613092403.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613092403&t=) provided by -the source." -647,BOGZ1FR613069505Q,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613069505.Q For more information about the Flow of Funds tables, see the Financial +685,BOGZ1FR613065200A,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Revaluation",1971-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:05:29-05,1,1,"Source ID: FR613065200.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613069505&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065200&t=) provided by the source." -648,NCBFCSQ027S,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Other Investment -in Finance Company Subsidiaries; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:50-06,1,1,"Source ID: FA103094705.Q For more information about the Flow of Funds tables, see the Financial +686,BOGZ1FR613065200Q,2023-03-20,2023-03-20,"Finance Companies; Home Equity Lines of Credit; +Asset, Revaluation",1970-04-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR613065200.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA103094705&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065200&t=) provided by the source." -649,BOGZ1FA613163093Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds, -Notes, Bonds, and Debentures; Liability, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613163093.Q For more information about the Flow of Funds tables, see the Financial +687,BOGZ1FR614090610A,2023-03-20,2023-03-20,"Finance Companies; Total Assets (Balance Sheet), +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:05:29-05,1,1,"Source ID: FR614090610.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163093&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR614090610&t=) provided by the source." -650,SMS29000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Missouri",1990-01-01,2016-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-01-24 13:47:31-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -651,SMU12453005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Tampa-St. Petersburg-Clearwater, FL -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:36:57-06,1,1,No description provided. -652,SMU11000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in District of Columbia",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:34:28-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU11000005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -653,SMU09757005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New Haven, CT (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:00-06,1,1,No description provided. -654,BOGZ1FL613063045Q,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:22:09-06,1,1,"Source ID: FL613063045.Q For more information about the Flow of Funds tables, see the Financial +688,BOGZ1FR613063003Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:47-06,1,1,"Source ID: FR613063003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613063003&t=) provided by the source." -655,BOGZ1FL613063045A,2023-02-27,2023-02-27,"Finance Companies; Corporate Bonds Issued by -Nonfinancial Corporate Businesses; Asset, Level",1945-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:24:46-06,1,1,"Source ID: FL613063045.A For more information about the Flow of Funds tables, see the Financial +689,NCBFCSQ027S,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Other Investment +in Finance Company Subsidiaries; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:29-06,1,1,"Source ID: FA103094705.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063045&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA103094705&t=) provided by the source." -656,BOGZ1FR613192305Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S.: Intercompany Debt; Liability (Market Value), -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 13:33:27-06,1,1,"Source ID: FR613192305.Q For more information about the Flow of Funds tables, see the Financial +690,BOGZ1FR613069505Q,2023-03-20,2023-03-20,"Finance Companies; Nonfinancial Business Loans, +Including Paycheck Protection Program Loans; +Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613069505.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613192305&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613069505&t=) provided by the source." -657,BOGZ1FR613169100A,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 11:59:34-06,1,1,"Source ID: FR613169100.A For more information about the Flow of Funds tables, see the Financial +691,BOGZ1FU613092403Q,2023-03-20,2023-03-20,"Finance Companies; Equity in FHLB; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU613092403.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613092403&t=) provided by the source." -658,BOGZ1FR613169100Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Paper; Liability, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613169100.Q For more information about the Flow of Funds tables, see the Financial +692,BOGZ1FA613163093Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds, +Notes, Bonds, and Debentures; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613163093.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613169100&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163093&t=) provided by the source." -659,BOGZ1FA613194733A,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Holding -Company Parent; Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:31-05,1,1,"Source ID: FA613194733.A For more information about the Flow of Funds tables, see the Financial +693,SMS29000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Missouri",1990-01-01,2016-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-01-24 13:47:31-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +694,BOGZ1FL613063045Q,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:22:09-06,1,1,"Source ID: FL613063045.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613194733&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063045&t=) provided by the source." -660,BOGZ1FA613194733Q,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Holding -Company Parent; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613194733.Q For more information about the Flow of Funds tables, see the Financial +695,BOGZ1FL613063045A,2023-03-20,2023-03-20,"Finance Companies; Corporate Bonds Issued by +Nonfinancial Corporate Businesses; Asset, Level",1945-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:24:46-06,1,1,"Source ID: FL613063045.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613194733&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063045&t=) provided by the source." -661,SMS33000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New Hampshire",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:51-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -662,BOGZ1FA613092003A,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad -(Market Value); Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:31-05,1,1,"Source ID: FA613092003.A For more information about the Flow of Funds tables, see the Financial +696,SMU11000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in District of Columbia",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:23:51-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU11000005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +697,SMU27334605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Minneapolis-St. Paul-Bloomington, MN- +WI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:18:37-05,1,1,No description provided. +698,SMU27334605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Minneapolis-St. Paul-Bloomington, MN- +WI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:07:28-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU27334605552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +699,SMU12453005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Tampa-St. Petersburg-Clearwater, FL +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:30:39-05,1,1,No description provided. +700,BOGZ1FR613192305Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S.: Intercompany Debt; Liability (Market Value), +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613192305.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613092003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613192305&t=) provided by the source." -663,BOGZ1FA613092003Q,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad -(Market Value); Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613092003.Q For more information about the Flow of Funds tables, see the Financial +701,SMU44772005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Providence-Warwick, RI-MA (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:49:09-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU44772005552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +702,SMU44772005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Providence-Warwick, RI-MA (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:11:24-05,1,1,No description provided. +703,BOGZ1FA613194733A,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Holding +Company Parent; Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613194733.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613092003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613194733&t=) provided by the source." -664,SMS26000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Michigan",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:03-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -665,SMU26000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Michigan",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:35:33-05,1,1,No description provided. -666,BOGZ1FL613178005Q,2023-02-27,2023-02-27,"Finance Companies; Total Taxes Payable; Liability, -Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613178005.Q For more information about the Flow of Funds tables, see the Financial +704,BOGZ1FA613194733Q,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Holding +Company Parent; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA613194733.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613178005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613194733&t=) provided by the source." -667,BOGZ1FA103169535A,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -Loans; Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:48-05,1,1,"Source ID: FA103169535.A For more information about the Flow of Funds tables, see the Financial +705,SMU09757005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New Haven, CT (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:00-05,1,1,No description provided. +706,SMS33000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New Hampshire",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:23-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +707,BOGZ1FA103169535A,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +Loans; Liability, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:55-06,1,1,"Source ID: FA103169535.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA103169535&t=) provided by -the source." -668,SMU44772005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Providence-Warwick, RI-MA (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:57:24-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU44772005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -669,SMU44772005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Providence-Warwick, RI-MA (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:11:02-06,1,1,No description provided. -670,BOGZ1FU615080003Q,2023-02-27,2023-02-27,"Finance Companies; Equity Capital, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:19-06,1,1,"Source ID: FU615080003.Q For more information about the Flow of Funds tables, see the Financial +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA103169535&t=) provided by +the source." +708,BOGZ1FU615080003Q,2023-03-20,2023-03-20,"Finance Companies; Equity Capital, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU615080003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3963,7 +4314,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615080003&t=) provided by the source." -671,BOGZ1FA615080003Q,2023-02-27,2023-02-27,"Finance Companies; Equity Capital, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA615080003.Q For more information about the Flow of Funds tables, see the Financial +709,BOGZ1FA615080003Q,2023-03-20,2023-03-20,"Finance Companies; Equity Capital, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615080003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -3971,10 +4322,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615080003&t=) provided by the source." -672,SMU17404205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Rockford, IL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:34:22-06,1,1,No description provided. -673,SMU72419805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Juan-Carolina-Caguas, PR (MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:45:21-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +710,SMU42338745552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Montgomery County-Bucks County- +Chester County, PA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:51:12-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -3984,14 +4334,14 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU72419805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU42338745552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -674,SMU72419805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Juan-Carolina-Caguas, PR (MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:02:26-06,1,1,No description provided. -675,SMU42338745552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +711,SMU42338745552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Montgomery County-Bucks County- -Chester County, PA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:58:06-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +Chester County, PA (MD)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:37:35-05,1,1,No description provided. +712,SMU72419805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Juan-Carolina-Caguas, PR (MSA)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:38:59-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4001,18 +4351,17 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU42338745552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU72419805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -676,SMU42338745552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Montgomery County-Bucks County- -Chester County, PA (MD)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:26:35-05,1,1,No description provided. -677,SMS30000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +713,SMU72419805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Juan-Carolina-Caguas, PR (MSA)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:02:34-05,1,1,No description provided. +714,SMS30000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Montana",1990-01-01,2016-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-01-24 13:47:01-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -678,SMU30000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Montana",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:53:01-05,1,1,No description provided. -679,SMU48417005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Antonio-New Braunfels, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:51:51-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +715,SMU30000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Montana",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:39:44-05,1,1,No description provided. +716,SMU48417005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Antonio-New Braunfels, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:44:19-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4025,37 +4374,55 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU48417005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -680,SMU48417005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Antonio-New Braunfels, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:06:08-06,1,1,No description provided. -681,SMU41000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oregon",1990-01-01,2017-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-03-13 14:23:54-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from -R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA -Seasonal Adjustment Program. More information on the 'x12' package can be found at -http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at -https://www.census.gov/srd/www/x13as/." -682,SMU26198205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Detroit-Warren-Dearborn, MI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:27:59-06,1,1,No description provided. -683,BOGZ1FR613178023A,2023-02-27,2023-02-27,"Finance Companies; Taxes Payable to State and -Local Governments; Liability, Revaluation",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:31-06,1,1,"Source ID: FR613178023.A For more information about the Flow of Funds tables, see the Financial +717,SMU48417005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Antonio-New Braunfels, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:07:55-05,1,1,No description provided. +718,SMU26198205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Detroit-Warren-Dearborn, MI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:21:58-05,1,1,No description provided. +719,BOGZ1FL613190005Q,2023-03-20,2023-03-20,"Finance Companies; Total Miscellaneous +Liabilities, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613190005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613178023&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613190005&t=) provided by the source." -684,BOGZ1FL613190005Q,2023-02-27,2023-02-27,"Finance Companies; Total Miscellaneous -Liabilities, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613190005.Q For more information about the Flow of Funds tables, see the Financial +720,SMU51472605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Virginia Beach-Norfolk-Newport News, +VA-NC (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:07:30-05,1,1,No description provided. +721,SMU51472605552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Virginia Beach-Norfolk-Newport News, +VA-NC (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:35:42-05,1,1,No description provided. +722,BOGZ1FR613169100A,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:17-06,1,1,"Source ID: FR613169100.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613190005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613169100&t=) provided by +the source." +723,BOGZ1FR613169100Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Paper; Liability, +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613169100.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613169100&t=) provided by +the source." +724,BOGZ1FR313069223Q,2023-03-20,2023-03-20,"Federal Government; Loans to Finance Companies +(Chrysler Financial); Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:56-06,1,1,"Source ID: FR313069223.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR313069223&t=) provided by the source." -685,BOGZ1FL615013263Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Equipment +725,BOGZ1FL615013263Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Equipment Including Securitized Equipment, Current Cost -Basis, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL615013263.Q For more information about the Flow of Funds tables, see the Financial +Basis, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:17-05,1,1,"Source ID: FL615013263.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4063,63 +4430,23 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615013263&t=) provided by the source." -686,SMU51472605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Virginia Beach-Norfolk-Newport News, -VA-NC (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:07:00-06,1,1,No description provided. -687,SMU51472605552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Virginia Beach-Norfolk-Newport News, -VA-NC (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:21:40-05,1,1,No description provided. -688,BOGZ1FR313069223Q,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:24-06,1,1,"Source ID: FR313069223.Q For more information about the Flow of Funds tables, see the Financial +726,SMU49416205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Salt Lake City, UT (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:06:55-05,1,1,No description provided. +727,BOGZ1FR613178023A,2023-03-20,2023-03-20,"Finance Companies; Taxes Payable to State and +Local Governments; Liability, Revaluation",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:31-06,1,1,"Source ID: FR613178023.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR313069223&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613178023&t=) provided by the source." -689,SMU49416205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Salt Lake City, UT (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:05:39-06,1,1,No description provided. -690,SMU42379805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Philadelphia-Camden-Wilmington, PA- -NJ-DE-MD (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:11:21-06,1,1,No description provided. -691,SMU42379805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Philadelphia-Camden-Wilmington, PA- -NJ-DE-MD (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:56:44-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU42379805552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -692,SMS23000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Maine",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:10-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -693,SMS20000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Kansas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:14-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -694,SMS13000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Georgia",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:43:32-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -695,SMU10000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Delaware",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:33:22-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU10000005552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -696,SMU15000005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Hawaii",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:29:43-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +728,SMS23000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Maine",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:52-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +729,SMS20000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Kansas",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:57-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +730,SMU15000005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Hawaii",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:19:09-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4132,50 +4459,48 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU15000005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -697,SMS34000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New Jersey",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:20-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -698,SMU01138205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Birmingham-Hoover, AL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:41:06-06,1,1,No description provided. -699,BOGZ1FA617005005A,2023-02-27,2023-02-27,"Finance Companies; Sector Discrepancy, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 13:33:53-06,1,1,"Source ID: FA617005005.A For more information about the Flow of Funds tables, see the Financial +731,SMS34000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New Jersey",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:46-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +732,BOGZ1FL613065115Q,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential +Mortgages Issued by Households; Asset, Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:22:09-06,1,1,"Source ID: FL613065115.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA617005005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065115&t=) provided by the source." -700,BOGZ1FA617005005Q,2023-02-27,2023-02-27,"Finance Companies; Sector Discrepancy, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 13:33:53-06,1,1,"Source ID: FA617005005.Q For more information about the Flow of Funds tables, see the Financial +733,BOGZ1FL613169005Q,2023-03-20,2023-03-20,"Finance Companies; Other Loans and Advances; +Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613169005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA617005005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169005&t=) provided by the source." -701,BOGZ1FL613065115Q,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential -Mortgages Issued by Households; Asset, Level",1945-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:22:09-06,1,1,"Source ID: FL613065115.Q For more information about the Flow of Funds tables, see the Financial +734,BOGZ1FA617005005A,2023-03-20,2023-03-20,"Finance Companies; Sector Discrepancy, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA617005005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065115&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA617005005&t=) provided by the source." -702,BOGZ1FL613169005Q,2023-02-27,2023-02-27,"Finance Companies; Other Loans and Advances; -Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613169005.Q For more information about the Flow of Funds tables, see the Financial +735,BOGZ1FA617005005Q,2023-03-20,2023-03-20,"Finance Companies; Sector Discrepancy, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA617005005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613169005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA617005005&t=) provided by the source." -703,BOGZ1FU616330053Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +736,BOGZ1FU616330053Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Entertainment, Literary, and Artistic Originals, Current Cost Basis, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:18-06,1,1,"Source ID: FU616330053.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU616330053.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4183,8 +4508,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616330053&t=) provided by the source." -704,BOGZ1FL613168003Q,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C. Due to Banks; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL613168003.Q For more information about the Flow of Funds tables, see the Financial +737,BOGZ1FL613168003Q,2023-03-20,2023-03-20,"Finance Companies; Depository Institution Loans +N.E.C. Due to Banks; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:17-05,1,1,"Source ID: FL613168003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4192,22 +4517,19 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613168003&t=) provided by the source." -705,SMU53440605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Spokane-Spokane Valley, WA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:48:35-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU53440605552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -706,BOGZ1FR613065183Q,2023-02-27,2023-02-27,"Finance Companies; Construction Loans on One-to- -Four Family Homes; Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:30-06,1,1,"Source ID: FR613065183.Q For more information about the Flow of Funds tables, see the Financial +738,BOGZ1FA613178005Q,2023-03-20,2023-03-20,"Finance Companies; Total Taxes Payable; Liability, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:20-06,1,1,"Source ID: FA613178005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178005&t=) provided by +the source." +739,SMU01138205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Birmingham-Hoover, AL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:34-05,1,1,No description provided. +740,BOGZ1FR613065183Q,2023-03-20,2023-03-20,"Finance Companies; Construction Loans on One-to- +Four Family Homes; Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR613065183.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4215,42 +4537,31 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065183&t=) provided by the source." -707,BOGZ1FA613178005Q,2023-02-27,2023-02-27,"Finance Companies; Total Taxes Payable; Liability, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613178005.Q For more information about the Flow of Funds tables, see the Financial +741,SMU17404205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Rockford, IL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:25:01-05,1,1,No description provided. +742,BOGZ1FA616000105Q,2023-03-20,2023-03-20,"Finance Companies; Gross Saving Including Foreign +Earnings Retained Abroad and CCAdj Less Net +Capital Transfers Paid, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA616000105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616000105&t=) provided by the source." -708,SMU06420205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in San Luis Obispo-Paso Robles-Arroyo -Grande, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:37:04-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU06420205552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -709,BOGZ1FU615013263A,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Equipment -Including Securitized Equipment, Current Cost -Basis, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:21:05-06,1,1,"Source ID: FU615013263.A For more information about the Flow of Funds tables, see the Financial +743,BOGZ1FU616000105Q,2023-03-20,2023-03-20,"Finance Companies; Gross Saving Including Foreign +Earnings Retained Abroad and CCAdj Less Net +Capital Transfers Paid, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:59-06,1,1,"Source ID: FU616000105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013263&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616000105&t=) provided by the source." -710,SMU48185805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Corpus Christi, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:52:55-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +744,SMU06420205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in San Luis Obispo-Paso Robles-Arroyo +Grande, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:25:49-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4260,41 +4571,11 @@ Many series include both seasonally adjusted (SA) and not seasonally adjusted (N Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU48185805552000001). Some seasonally adjusted series may +(https://fred.stlouisfed.org/series/SMU06420205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -711,BOGZ1FA616000105Q,2023-02-27,2023-02-27,"Finance Companies; Gross Saving Including Foreign -Earnings Retained Abroad and CCAdj Less Net -Capital Transfers Paid, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:01-06,1,1,"Source ID: FA616000105.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616000105&t=) provided by -the source." -712,BOGZ1FU616000105Q,2023-02-27,2023-02-27,"Finance Companies; Gross Saving Including Foreign -Earnings Retained Abroad and CCAdj Less Net -Capital Transfers Paid, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:31-06,1,1,"Source ID: FU616000105.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616000105&t=) provided by -the source." -713,BOGZ1FR673069503Q,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial -Business Loans Securitized by Finance Companies; -Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:30:03-06,1,1,"Source ID: FR673069503.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR673069503&t=) provided by -the source." -714,BOGZ1FL613194003Q,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Parent -Companies; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613194703.Q For more information about the Flow of Funds tables, see the Financial +745,BOGZ1FL613194003Q,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Parent +Companies; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613194703.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4302,18 +4583,19 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613194703&t=) provided by the source." -715,BOGZ1FR103169535A,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -Loans; Liability, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:40:38-06,1,1,"Source ID: FR103169535.A For more information about the Flow of Funds tables, see the Financial +746,BOGZ1FU615013263A,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Equipment +Including Securitized Equipment, Current Cost +Basis, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:06:47-05,1,1,"Source ID: FU615013263.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR103169535&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013263&t=) provided by the source." -716,BOGZ1FA616330023Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +747,BOGZ1FA616330023Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Equipment, Current Cost Basis, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:37-06,1,1,"Source ID: FA616330023.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616330023.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4321,7 +4603,21 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616330023&t=) provided by the source." -717,SMU27334605552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +748,SMU48185805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Corpus Christi, TX (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:47:42-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU48185805552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +749,SMU27334605552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in Minneapolis-St. Paul-Bloomington, MN-WI (MSA) (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2022-04-16 04:42:32-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis @@ -4343,29 +4639,31 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27334605552000030). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -718,SMU18269005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +750,SMU18269005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Indianapolis-Carmel-Anderson, IN -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:33:24-06,1,1,No description provided. -719,BOGZ1FA614023005Q,2023-02-27,2023-02-27,"Finance Companies; Loans; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA614023005.Q For more information about the Flow of Funds tables, see the Financial +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:24:30-05,1,1,No description provided. +751,BOGZ1FR673069503Q,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial +Business Loans Securitized by Finance Companies; +Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:10:24-05,1,1,"Source ID: FR673069503.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614023005&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR673069503&t=) provided by the source." -720,BOGZ1FA613169333A,2023-02-27,2023-02-27,"Finance Companies; FHLB Advances; Liability, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-10 12:45:49-06,1,1,"Source ID: FA613169333.A For more information about the Flow of Funds tables, see the Financial +752,BOGZ1FR103169535A,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +Loans; Liability, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:01:31-06,1,1,"Source ID: FR103169535.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613169333&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR103169535&t=) provided by the source." -721,BOGZ1FA713068863Q,2023-02-27,2023-02-27,"Monetary Authority; Loans to Finance Companies +753,BOGZ1FA713068863Q,2023-03-20,2023-03-20,"Monetary Authority; Loans to Finance Companies Under the Paycheck Protection Program Liquidity -Facility (PPPLF); Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:15-06,1,1,"Source ID: FA713068863.Q For more information about the Flow of Funds tables, see the Financial +Facility (PPPLF); Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:35-06,1,1,"Source ID: FA713068863.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4373,9 +4671,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA713068863&t=) provided by the source." -722,BOGZ1FU713068863Q,2023-02-27,2023-02-27,"Monetary Authority; Loans to Finance Companies +754,BOGZ1FU713068863Q,2023-03-20,2023-03-20,"Monetary Authority; Loans to Finance Companies Under the Paycheck Protection Program Liquidity -Facility (PPPLF); Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:46:27-06,1,1,"Source ID: FU713068863.Q For more information about the Flow of Funds tables, see the Financial +Facility (PPPLF); Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:05:52-06,1,1,"Source ID: FU713068863.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4383,16 +4681,22 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU713068863&t=) provided by the source." -723,SMU78000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in the U.S. Virgin Islands",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:19:51-05,1,1,No description provided. -724,SMS38000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in North Dakota",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:41:58-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -725,SMU19163005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Cedar Rapids, IA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:33:03-06,1,1,No description provided. -726,SMS54000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in West Virginia",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:07-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -727,SMU51947835552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Northern Virginia, VA",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:47:32-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +755,SMS38000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in North Dakota",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:37-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +756,BOGZ1FA614023005Q,2023-03-20,2023-03-20,"Finance Companies; Loans; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA614023005.Q For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614023005&t=) provided by +the source." +757,SMS54000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in West Virginia",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:01-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +758,SMU78000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in the U.S. Virgin Islands",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:33:07-05,1,1,No description provided. +759,SMU51947835552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Northern Virginia, VA",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:42:45-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4410,8 +4714,19 @@ addition to the Washington-Arlington-Alexandria, DC-VA-MD-WV (MSA)'s statistics importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -728,BOGZ1FA613194003Q,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Parent -Companies; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613194703.Q For more information about the Flow of Funds tables, see the Financial +760,SMU39171405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Cincinnati, OH-KY-IN (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:12:46-05,1,1,No description provided. +761,SMU47000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Tennessee",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:37:09-05,1,1,No description provided. +762,SMS47000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Tennessee",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:02-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +763,SMU42379805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Philadelphia-Camden-Wilmington, PA- +NJ-DE-MD (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:10:58-05,1,1,No description provided. +764,SMU19163005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Cedar Rapids, IA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:24:09-05,1,1,No description provided. +765,BOGZ1FA613194003Q,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Parent +Companies; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:20-06,1,1,"Source ID: FA613194703.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4419,9 +4734,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613194703&t=) provided by the source." -729,SMU39171405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Cincinnati, OH-KY-IN (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:14:30-06,1,1,No description provided. -730,BOGZ1FR613065143A,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential +766,SMS51000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Virginia",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:07-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +767,BOGZ1FR613065143A,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential Mortgages Issued by Nonfinancial Corporate Businesses; Asset, Revaluation",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:33-06,1,1,"Source ID: FR613065143.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, @@ -4431,12 +4746,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065143&t=) provided by the source." -731,SMU47000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Tennessee",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:24:27-05,1,1,No description provided. -732,SMS47000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Tennessee",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:41:53-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -733,BOGZ1FA613163005Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613163005.Q For more information about the Flow of Funds tables, see the Financial +768,BOGZ1FA613163005Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613163005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4444,43 +4755,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613163005&t=) provided by the source." -734,SMS51000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Virginia",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:12-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -735,SMU55333405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Milwaukee-Waukesha-West Allis, WI -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:03:07-06,1,1,No description provided. -736,SMU55333405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Milwaukee-Waukesha-West Allis, WI -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:46:11-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU55333405552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator." -737,AULN0A175MFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for -Austin-Round Rock-San Marcos, TX (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:14:42-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas -of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the -early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. -More information pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm." -738,AULN0A674AFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for -Austin-Round Rock-San Marcos, TX (MSA)",1991-01-01,2022-01-01,Annual,A,December to December Percent Change,Dec to Dec % Chg.,Not Seasonally Adjusted,NSA,2023-02-07 14:14:42-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas -of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the -early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. -More information pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created -by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -739,SMS56000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Wyoming",1990-01-01,2016-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2017-01-24 13:47:04-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -740,SMU06234205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Fresno, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:42:13-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +769,SMU06234205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Fresno, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:30:31-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4493,14 +4769,14 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06234205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -741,DTCTLNHFNM,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Owned and Securitized -by Finance Companies",1943-01-01,2022-12-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-02-07 14:02:26-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 +770,DTCTLNHFNM,2023-03-20,2023-03-20,"Nonrevolving Consumer Credit Owned and Securitized +by Finance Companies",1943-01-01,2023-01-01,Monthly,M,Billions of Dollars,Bil. of $,Not Seasonally Adjusted,NSA,2023-03-07 14:02:19-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 release (https://www.federalreserve.gov/releases/g19/current/)." -742,SMU25781005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Springfield, MA-CT (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:29:48-06,1,1,No description provided. -743,BOGZ1FA616330075Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +771,SMU25781005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Springfield, MA-CT (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:20:32-05,1,1,No description provided. +772,BOGZ1FA616330075Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Intellectual Property Products, -Current Cost Basis, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:36-06,1,1,"Source ID: FA616330075.Q For more information about the Flow of Funds tables, see the Financial +Current Cost Basis, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:56-05,1,1,"Source ID: FA616330075.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4508,8 +4784,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616330075&t=) provided by the source." -744,BOGZ1FU103169505Q,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Finance Companies -and ABS Issuers Loans; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:34:24-06,1,1,"Source ID: FU103169505.Q For more information about the Flow of Funds tables, see the Financial +773,BOGZ1FU103169505Q,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Finance Companies +and ABS Issuers Loans; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:16:54-05,1,1,"Source ID: FU103169505.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4517,8 +4793,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU103169505&t=) provided by the source." -745,BOGZ1FR613163005Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Liability, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613163005.Q For more information about the Flow of Funds tables, see the Financial +774,BOGZ1FR613163005Q,2023-03-20,2023-03-20,"Finance Companies; Corporate and Foreign Bonds; +Liability, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613163005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4526,8 +4802,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163005&t=) provided by the source." -746,BOGZ1FA613092305A,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad: -Intercompany Debt (Market Value), Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:15:31-05,1,1,"Source ID: FA613092305.A For more information about the Flow of Funds tables, see the Financial +775,BOGZ1FA613092305A,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad: +Intercompany Debt (Market Value), Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613092305.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4535,9 +4811,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613092305&t=) provided by the source." -747,BOGZ1FR613192103A,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in +776,BOGZ1FR613192103A,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in U.S.: Equity; Liability (Market Value), -Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:35-05,1,1,"Source ID: FR613192103.A For more information about the Flow of Funds tables, see the Financial +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:17-06,1,1,"Source ID: FR613192103.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4545,11 +4821,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613192103&t=) provided by the source." -748,DTCNLNHFXDFBANM,2023-02-27,2023-02-27,"Nonrevolving Consumer Credit Securitized by -Finance Companies, Flow",1989-02-01,2022-12-01,Monthly,M,"Billions of Dollars, Monthly Rate","Bil. of $, Monthly Rate",Not Seasonally Adjusted,NSA,2023-02-07 14:02:23-06,1,1,"For further information, please refer to the Board of Governors of the Federal Reserve System's G.19 -release (https://www.federalreserve.gov/releases/g19/current/)." -749,BOGZ1FU614122005A,2023-02-27,2023-02-27,"Finance Companies; Debt Securities; Liability, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:13:44-05,1,1,"Source ID: FU614122005.A For more information about the Flow of Funds tables, see the Financial +777,BOGZ1FU614122005A,2023-03-20,2023-03-20,"Finance Companies; Debt Securities; Liability, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:43-06,1,1,"Source ID: FU614122005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4557,11 +4830,11 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU614122005&t=) provided by the source." -750,SMU06409005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +778,SMU06409005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Sacramento--Roseville--Arden-Arcade, -CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:09-06,1,1,No description provided. -751,SMU42379645552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Philadelphia, PA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:56:51-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:10-05,1,1,No description provided. +779,SMU42379645552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Philadelphia, PA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:51:03-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4574,8 +4847,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU42379645552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -752,SMU06447005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Stockton-Lodi, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:36:49-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +780,SMU06447005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Stockton-Lodi, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:27:14-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4588,8 +4861,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06447005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -753,SMU36403805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Rochester, NY (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:07:57-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +781,SMU36403805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Rochester, NY (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:59:04-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4602,8 +4875,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU36403805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -754,BOGZ1FL613194733Q,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Holding -Company Parent; Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613194733.Q For more information about the Flow of Funds tables, see the Financial +782,BOGZ1FL613194733Q,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Holding +Company Parent; Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613194733.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4611,9 +4884,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613194733&t=) provided by the source." -755,BOGZ1FA615013053Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, +783,BOGZ1FA615013053Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, Nonresidential Entertainment, Literary, and -Artistic Originals, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013053.Q For more information about the Flow of Funds tables, see the Financial +Artistic Originals, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013053.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4621,8 +4894,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013053&t=) provided by the source." -756,SMU33769005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Portsmouth, NH-ME (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:09:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +784,SMU33769005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Portsmouth, NH-ME (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:03:18-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4635,18 +4908,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU33769005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -757,BOGZ1FA613093043A,2023-02-27,2023-02-27,"Finance Companies; Unidentified Miscellaneous -Assets Issued by Nonfinancial Corporate -Businesses; Asset, Flow",1945-01-01,1945-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-05-11 14:22:19-05,1,1,"Source ID: FA613093043.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613093043&t=) provided by -the source." -758,SMU26243405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Grand Rapids-Wyoming, MI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:15:09-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +785,SMU26243405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Grand Rapids-Wyoming, MI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:09:32-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4659,19 +4922,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU26243405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -759,BOGZ1FA613069500A,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-13 18:00:19-05,1,1,"Source ID: FA613069500.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613069500&t=) provided by -the source." -760,SMU33754045552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Nashua, NH-MA (NECTA Division)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:18:56-06,1,1,No description provided. -761,SMU33754045552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Nashua, NH-MA (NECTA Division)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:09:57-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +786,SMU33754045552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Nashua, NH-MA (NECTA Division)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:17:17-05,1,1,No description provided. +787,SMU33754045552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Nashua, NH-MA (NECTA Division)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:03:22-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4684,14 +4938,14 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU33754045552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -762,SMU26000005552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +788,SMU26000005552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in -Michigan",2003-01-01,2022-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:29:07-06,1,1,No description provided. -763,SMU26000005552000007A,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +Michigan",2003-01-01,2023-01-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:21:29-05,1,1,No description provided. +789,SMU26000005552000007A,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in -Michigan",2003-01-01,2021-01-01,Annual,A,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2022-03-15 05:35:33-05,1,1,No description provided. -764,BOGZ1FR613065105Q,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential -Mortgages; Asset, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613065105.Q For more information about the Flow of Funds tables, see the Financial +Michigan",2003-01-01,2022-01-01,Annual,A,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-03-14 03:40:42-05,1,1,No description provided. +790,BOGZ1FR613065105Q,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential +Mortgages; Asset, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:47-06,1,1,"Source ID: FR613065105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4699,8 +4953,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065105&t=) provided by the source." -765,BOGZ1FL613192103A,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S.: Equity; Liability (Market Value), Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:56-05,1,1,"Source ID: FL613192103.A For more information about the Flow of Funds tables, see the Financial +791,BOGZ1FL613192103A,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S.: Equity; Liability (Market Value), Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:39-06,1,1,"Source ID: FL613192103.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4708,8 +4962,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192103&t=) provided by the source." -766,BOGZ1FL613192103Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S.: Equity; Liability (Market Value), Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613192103.Q For more information about the Flow of Funds tables, see the Financial +792,BOGZ1FL613192103Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S.: Equity; Liability (Market Value), Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613192103.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4717,8 +4971,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192103&t=) provided by the source." -767,SMU34935655552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Middlesex-Monmouth-Ocean, NJ",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:10:32-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +793,SMU34935655552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Middlesex-Monmouth-Ocean, NJ",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:00:58-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4736,9 +4990,9 @@ calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statisti importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -768,BOGZ1FR613070103Q,2023-02-27,2023-02-27,"Finance Companies; Paycheck Protection Program +794,BOGZ1FR613070103Q,2023-03-20,2023-03-20,"Finance Companies; Paycheck Protection Program Receivables Due from Federal Government; Asset, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613072003.Q For more information about the Flow of Funds tables, see the Financial +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613072003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -4746,10 +5000,10 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613072003&t=) provided by the source." -769,SMU06170205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Chico, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:43-06,1,1,No description provided. -770,SMU06170205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Chico, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:43:47-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +795,SMU06170205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Chico, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:28-05,1,1,No description provided. +796,SMU06170205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Chico, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:30:40-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4762,10 +5016,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06170205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -771,SMU34158045552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Camden, NJ (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:18:38-06,1,1,No description provided. -772,SMU34158045552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Camden, NJ (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:09:13-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +797,SMU34158045552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Camden, NJ (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:16:54-05,1,1,No description provided. +798,SMU34158045552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Camden, NJ (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:01:53-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4778,10 +5032,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU34158045552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -773,SMU39104205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Akron, OH (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:14:37-06,1,1,No description provided. -774,SMU39104205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Akron, OH (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:02:17-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +799,SMU39104205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Akron, OH (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:13-05,1,1,No description provided. +800,SMU39104205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Akron, OH (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:57:16-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4794,10 +5048,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU39104205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -775,SMU17379005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Peoria, IL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:34:23-06,1,1,No description provided. -776,SMU17379005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Peoria, IL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:25:18-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +801,SMU17379005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Peoria, IL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:25:37-05,1,1,No description provided. +802,SMU17379005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Peoria, IL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:17:35-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4810,10 +5064,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU17379005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -777,SMU20458205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Topeka, KS (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:32:36-06,1,1,No description provided. -778,SMU20458205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Topeka, KS (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:24:16-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +803,SMU20458205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Topeka, KS (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:23:39-05,1,1,No description provided. +804,SMU20458205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Topeka, KS (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:13:32-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4826,10 +5080,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU20458205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -779,SMU28271405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Jackson, MS (MSA)",2001-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:22:28-06,1,1,No description provided. -780,SMU28271405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Jackson, MS (MSA)",2001-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:13:34-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +805,SMU28271405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Jackson, MS (MSA)",2001-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:19:47-05,1,1,No description provided. +806,SMU28271405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Jackson, MS (MSA)",2001-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:06:04-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4842,10 +5096,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU28271405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -781,SMU34459405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Trenton, NJ (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:19:16-06,1,1,No description provided. -782,SMU34459405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Trenton, NJ (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:11:01-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +807,SMU34459405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Trenton, NJ (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:16:36-05,1,1,No description provided. +808,SMU34459405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Trenton, NJ (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:01:28-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4858,10 +5112,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU34459405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -783,SMU55315405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Madison, WI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:03:11-06,1,1,No description provided. -784,SMU55315405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Madison, WI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:46:18-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +809,SMU55315405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Madison, WI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:06:31-05,1,1,No description provided. +810,SMU55315405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Madison, WI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:39:41-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4874,10 +5128,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU55315405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -785,SMU38220205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Fargo, ND-MN (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:15:01-06,1,1,No description provided. -786,SMU38220205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Fargo, ND-MN (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:03:45-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +811,SMU38220205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Fargo, ND-MN (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:14:37-05,1,1,No description provided. +812,SMU38220205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Fargo, ND-MN (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:57:42-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4890,10 +5144,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU38220205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -787,SMU06422205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Santa Rosa, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:54-06,1,1,No description provided. -788,SMU06422205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Santa Rosa, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:38:14-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +813,SMU06422205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Santa Rosa, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:46-05,1,1,No description provided. +814,SMU06422205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Santa Rosa, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:25:28-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4906,10 +5160,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06422205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -789,SMU13179805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Columbus, GA-AL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:36:39-06,1,1,No description provided. -790,SMU13179805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Columbus, GA-AL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:28:17-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +815,SMU13179805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Columbus, GA-AL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:31:38-05,1,1,No description provided. +816,SMU13179805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Columbus, GA-AL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:19:30-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4922,35 +5176,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU13179805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -791,SMU42979615552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Philadelphia City, PA",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:10:51-06,1,1,"Philadelphia City, PA constitutes a significant percentage of the state's total statewide -employment. This series is calculated in addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD -(MSA)'s statistics because of it's importance to the state. For more details on non-standard area -definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non- -standard-ces-areas.htm) of the Current Employment Statistics." -792,SMU42979615552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Philadelphia City, PA",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:55:57-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' -library from Python with default parameter settings. The package uses the U.S. Bureau of the Census -X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS -package can be found here -(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More -information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). -Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. -Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal -adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be -updated with the NSA data. The NSA series can be located here here -(https://fred.stlouisfed.org/series/SMU42979615552000001). Some seasonally adjusted series may -exhibit negative values because they are created from a seasonal adjustment process regardless of -the actual meaning or interpretation of the given indicator."" Philadelphia City, PA constitutes a -significant percentage of the state's total statewide employment. This series is calculated in -addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (MSA)'s statistics because of it's -importance to the state. For more details on non-standard area definitions, visit the additional -resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current -Employment Statistics." -793,SMU15465205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Urban Honolulu, HI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:35:33-06,1,1,No description provided. -794,SMU15465205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Urban Honolulu, HI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:29:25-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +817,SMU15465205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Urban Honolulu, HI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:30:18-05,1,1,No description provided. +818,SMU15465205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Urban Honolulu, HI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:18:54-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4963,10 +5192,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU15465205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -795,SMU25796005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Worcester, MA-CT (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:28:27-06,1,1,No description provided. -796,SMU25796005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Worcester, MA-CT (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:19:00-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +819,SMU25796005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Worcester, MA-CT (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:20:25-05,1,1,No description provided. +820,SMU25796005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Worcester, MA-CT (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:08:39-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4979,10 +5208,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU25796005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -797,SMU06467005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Vallejo-Fairfield, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:24-06,1,1,No description provided. -798,SMU06467005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Vallejo-Fairfield, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:36:44-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +821,SMU06467005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Vallejo-Fairfield, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:32:42-05,1,1,No description provided. +822,SMU06467005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Vallejo-Fairfield, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:27:09-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -4995,10 +5224,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06467005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -799,SMU42254205552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Harrisburg-Carlisle, PA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:11:36-06,1,1,No description provided. -800,SMU42254205552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Harrisburg-Carlisle, PA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:59:23-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +823,SMU42254205552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Harrisburg-Carlisle, PA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:11:16-05,1,1,No description provided. +824,SMU42254205552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Harrisburg-Carlisle, PA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:51:23-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5011,14 +5240,14 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU42254205552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -801,SMU36935625552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Orange-Rockland-Westchester, NY",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:16:51-06,1,1,"Orange-Rockland-Westchester, NY constitutes a significant percentage of the state's total statewide +825,SMU36935625552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Orange-Rockland-Westchester, NY",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:15:42-05,1,1,"Orange-Rockland-Westchester, NY constitutes a significant percentage of the state's total statewide employment. This series is calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics because of it's importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non- standard-ces-areas.htm) of the Current Employment Statistics." -802,SMU36935625552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Orange-Rockland-Westchester, NY",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:04:40-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +826,SMU36935625552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Orange-Rockland-Westchester, NY",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:58:34-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5036,10 +5265,10 @@ calculated in addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statisti importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -803,SMU37246605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Greensboro-High Point, NC (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:15:38-06,1,1,No description provided. -804,SMU37246605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Greensboro-High Point, NC (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:05:43-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +827,SMU37246605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Greensboro-High Point, NC (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:54-05,1,1,No description provided. +828,SMU37246605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Greensboro-High Point, NC (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:56:36-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5052,10 +5281,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU37246605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -805,SMU06421005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Santa Cruz-Watsonville, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:38:34-06,1,1,No description provided. -806,SMU06421005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Santa Cruz-Watsonville, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:38:29-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +829,SMU06421005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Santa Cruz-Watsonville, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:50-05,1,1,No description provided. +830,SMU06421005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Santa Cruz-Watsonville, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:25:40-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5068,10 +5297,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06421005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -807,SMU15279805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Kahului-Wailuku-Lahaina, HI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:35:40-06,1,1,No description provided. -808,SMU15279805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Kahului-Wailuku-Lahaina, HI (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:29:36-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +831,SMU15279805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Kahului-Wailuku-Lahaina, HI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:30:22-05,1,1,No description provided. +832,SMU15279805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Kahului-Wailuku-Lahaina, HI (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:19:03-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5084,10 +5313,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU15279805552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -809,SMU31365405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Omaha-Council Bluffs, NE-IA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:20:58-06,1,1,No description provided. -810,SMU31365405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Omaha-Council Bluffs, NE-IA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:11:58-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +833,SMU31365405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Omaha-Council Bluffs, NE-IA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:17:44-05,1,1,No description provided. +834,SMU31365405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Omaha-Council Bluffs, NE-IA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:04:04-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5100,7 +5329,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU31365405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -811,BOGZ1FU613065545A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by +835,BOGZ1FU613065545A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by Nonfinancial Corporate Businesses; Asset, Flow",1946-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065545.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are @@ -5109,7 +5338,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065545&t=) provided by the source." -812,BOGZ1FU613065545Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by +836,BOGZ1FU613065545Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:23:18-06,1,1,"Source ID: FU613065545.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are @@ -5118,10 +5347,10 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065545&t=) provided by the source." -813,SMU26476645552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Warren-Troy-Farmington Hills, MI (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:22:56-06,1,1,No description provided. -814,SMU26476645552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Warren-Troy-Farmington Hills, MI (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:16:13-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +837,SMU26476645552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Warren-Troy-Farmington Hills, MI (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:20:47-05,1,1,No description provided. +838,SMU26476645552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Warren-Troy-Farmington Hills, MI (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:06:56-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5134,12 +5363,12 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU26476645552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -815,SMU39496605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +839,SMU39496605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Youngstown-Warren-Boardman, OH-PA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:13:44-06,1,1,No description provided. -816,SMU39496605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:44-05,1,1,No description provided. +840,SMU39496605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Youngstown-Warren-Boardman, OH-PA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:02:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:54:17-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5152,12 +5381,12 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU39496605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -817,SMU42109005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +841,SMU42109005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Allentown-Bethlehem-Easton, PA-NJ -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:12:34-06,1,1,No description provided. -818,SMU42109005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:11:36-05,1,1,No description provided. +842,SMU42109005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Allentown-Bethlehem-Easton, PA-NJ -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:59:52-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:51:56-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5170,80 +5399,80 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU42109005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -819,SMU06420445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +843,SMU06420445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Santa Ana-Anaheim-Irvine, CA (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:01:22-06,1,1,No description provided. -820,SMU06420445552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +844,SMU06420445552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Santa Ana-Anaheim-Irvine, CA (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:01:22-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -821,SMU24136445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +845,SMU24136445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Bethesda-Rockville-Frederick, MD (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:40:49-06,1,1,No description provided. -822,SMU24136445552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +846,SMU24136445552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Bethesda-Rockville-Frederick, MD (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:40:49-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -823,SMU26476445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +847,SMU26476445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Warren-Troy-Farmington Hills, MI (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:37:16-06,1,1,No description provided. -824,SMU26476445552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +848,SMU26476445552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Warren-Troy-Farmington Hills, MI (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:37:16-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -825,SMU25716505552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +849,SMU25716505552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Boston-Cambridge-Quincy, MA-NH (NECTA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:39:56-06,1,1,No description provided. -826,SMU25716505552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +850,SMU25716505552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Boston-Cambridge-Quincy, MA-NH (NECTA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:39:56-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -827,SMU36356445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +851,SMU36356445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in New York-White Plains-Wayne, NY-NJ (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:28:11-06,1,1,No description provided. -828,SMU36356445552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +852,SMU36356445552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in New York-White Plains-Wayne, NY-NJ (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:28:11-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -829,SMU06311005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +853,SMU06311005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Los Angeles-Long Beach-Santa Ana, CA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 13:58:16-06,1,1,No description provided. -830,SMU06311005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +854,SMU06311005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Los Angeles-Long Beach-Santa Ana, CA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 13:58:16-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -831,SMU36391005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +855,SMU36391005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Poughkeepsie-Newburgh-Middletown, NY (MSA) (DISCONTINUED)",2005-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:28:00-06,1,1,No description provided. -832,SMU36391005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +856,SMU36391005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Poughkeepsie-Newburgh-Middletown, NY (MSA) (DISCONTINUED)",2005-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:28:00-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -833,SMU72000005552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +857,SMU72000005552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2014-02-02 01:49:12-06,1,1,No description provided. -834,SMU72000005552000007SA,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +858,SMU72000005552000007SA,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Hours per Week,Hours per Week,Seasonally Adjusted,SA,2014-02-02 10:28:21-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -5264,8 +5493,27 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU72000005552000007). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -835,BOGZ1FA613065105Q,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential -Mortgages; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613065105.Q For more information about the Flow of Funds tables, see the Financial +859,BOGZ1FA613093043A,2023-03-20,2023-03-20,"Finance Companies; Unidentified Miscellaneous +Assets Issued by Nonfinancial Corporate +Businesses; Asset, Flow",1945-01-01,1945-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-05-11 14:22:19-05,1,1,"Source ID: FA613093043.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613093043&t=) provided by +the source." +860,BOGZ1FA613069500A,2023-03-20,2023-03-20,"Finance Companies; Nonfinancial Business Loans; +Asset, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:46-05,1,1,"Source ID: FA613069500.A For more information about the Flow of Funds tables, see the Financial +Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, +the source may make major data and structural revisions to the series and tables. These changes are +available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In +the Financial Accounts, the source identifies each series by a string of patterned letters and +numbers. For a detailed description, including how this series is constructed, see the series +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613069500&t=) provided by +the source." +861,BOGZ1FA613065105Q,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential +Mortgages; Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613065105.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5273,8 +5521,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065105&t=) provided by the source." -836,SMU36350045552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Nassau County-Suffolk County, NY (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:08:26-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +862,SMU36350045552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Nassau County-Suffolk County, NY (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:59:31-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5287,7 +5535,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU36350045552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -837,BOGZ1FR616330023Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +863,BOGZ1FR616330023Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Equipment, Current Cost Basis, Revaluation",1947-01-01,1951-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2019-05-23 14:32:02-05,1,1,"Source ID: FR616330023.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, @@ -5297,7 +5545,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR616330023&t=) provided by the source." -838,BOGZ1FA614190005Q,2023-02-27,2023-02-27,"Finance Companies; Total Liabilities, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA614190005.Q For more information about the Flow of Funds tables, see the Financial +864,BOGZ1FA614190005Q,2023-03-20,2023-03-20,"Finance Companies; Total Liabilities, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA614190005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5305,32 +5553,35 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614190005&t=) provided by the source." -839,SMU39181405552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Columbus, OH (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:14:15-06,1,1,No description provided. -840,SMU39174605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Cleveland-Elyria, OH (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:14:24-06,1,1,No description provided. -841,SMU48191245552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Dallas-Plano-Irving, TX (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:07:47-06,1,1,No description provided. -842,SMU48231045552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Fort Worth-Arlington, TX (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:07:59-06,1,1,No description provided. -843,SMU22353805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New Orleans-Metairie, LA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:31:43-06,1,1,No description provided. -844,SMU24125805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Baltimore-Columbia-Towson, MD (MSA)",1991-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:31:31-06,1,1,No description provided. -845,SMU41389005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +865,SMU39181405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Columbus, OH (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:12:37-05,1,1,No description provided. +866,SMU39174605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Cleveland-Elyria, OH (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:12:42-05,1,1,No description provided. +867,SMU48191245552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Dallas-Plano-Irving, TX (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:08:30-05,1,1,No description provided. +868,SMU48231045552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Fort Worth-Arlington, TX (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:08:20-05,1,1,No description provided. +869,SMU22353805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in New Orleans-Metairie, LA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:22:36-05,1,1,No description provided. +870,SMU24125805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Baltimore-Columbia-Towson, MD (MSA)",1991-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:21:57-05,1,1,No description provided. +871,SMU55333405552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Milwaukee-Waukesha-West Allis, WI +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:06:29-05,1,1,No description provided. +872,SMU41389005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Portland-Vancouver-Hillsboro, OR-WA -(MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:13:10-06,1,1,No description provided. -846,SMU34350845552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Newark, NJ-PA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:18:19-06,1,1,No description provided. -847,SMU06360845552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oakland-Hayward-Berkeley, CA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:22-06,1,1,No description provided. -848,SMU11478945552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +(MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:13:37-05,1,1,No description provided. +873,SMU34350845552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Newark, NJ-PA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:16:44-05,1,1,No description provided. +874,SMU06360845552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oakland-Hayward-Berkeley, CA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:59-05,1,1,No description provided. +875,SMU11478945552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Washington-Arlington-Alexandria, DC- -VA-MD-WV (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:37:44-06,1,1,No description provided. -849,SMU06418845552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +VA-MD-WV (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:32:11-05,1,1,No description provided. +876,SMU06418845552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in San Francisco-Redwood City-South San -Francisco, CA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:39:04-06,1,1,No description provided. -850,SMU39000005552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +Francisco, CA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:33:36-05,1,1,No description provided. +877,SMU39000005552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in Ohio (DISCONTINUED)",2001-01-01,2018-12-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2019-01-18 17:10:45-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -5351,8 +5602,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU39000005552000008). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -851,BOGZ1FA613093005A,2023-02-27,2023-02-27,"Finance Companies; Unidentified Miscellaneous -Assets, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:45:55-06,1,1,"Source ID: FA613093005.A For more information about the Flow of Funds tables, see the Financial +878,BOGZ1FA613093005A,2023-03-20,2023-03-20,"Finance Companies; Unidentified Miscellaneous +Assets, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613093005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5360,8 +5611,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613093005&t=) provided by the source." -852,BOGZ1FL613092305A,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad: -Intercompany Debt (Market Value), Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:14:57-05,1,1,"Source ID: FL613092305.A For more information about the Flow of Funds tables, see the Financial +879,BOGZ1FL613092305A,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad: +Intercompany Debt (Market Value), Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-10 16:49:45-06,1,1,"Source ID: FL613092305.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5369,26 +5620,17 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613092305&t=) provided by the source." -853,BOGZ1FA613178003Q,2023-02-27,2023-02-27,"Finance Companies; Taxes Payable, Other; -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613178003.Q For more information about the Flow of Funds tables, see the Financial +880,BOGZ1FA613178003Q,2023-03-20,2023-03-20,"Finance Companies; Taxes Payable, Other; +Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613178003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178003&t=) provided by -the source." -854,BOGZ1FA613178013Q,2023-02-27,2023-02-27,"Finance Companies; Taxes Payable, Tax on Foreign -Earnings Retained Abroad; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613178013.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178013&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613178003&t=) provided by the source." -855,SMU22129405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Baton Rouge, LA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:21:32-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +881,SMU22129405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Baton Rouge, LA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:14:25-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5401,10 +5643,24 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU22129405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -856,SMU39193805552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Dayton, OH (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:28:25-05,1,1,No description provided. -857,BOGZ1FR615013365Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Software, -Current Cost Basis, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:29:29-06,1,1,"Source ID: FR615013365.Q For more information about the Flow of Funds tables, see the Financial +882,SMU53440605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Spokane-Spokane Valley, WA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:41:51-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU53440605552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator." +883,SMU39193805552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Dayton, OH (MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:38:18-05,1,1,No description provided. +884,BOGZ1FR615013365Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Software, +Current Cost Basis, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:12:51-05,1,1,"Source ID: FR615013365.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5412,8 +5668,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR615013365&t=) provided by the source." -858,BOGZ1FA615013365Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Software, -Current Cost Basis, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013365.Q For more information about the Flow of Funds tables, see the Financial +885,BOGZ1FA615013365Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Software, +Current Cost Basis, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013365.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5421,8 +5677,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013365&t=) provided by the source." -859,BOGZ1FL613192063Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S. (Current Cost); Liability, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:32:58-06,1,1,"Source ID: FL613192063.Q For more information about the Flow of Funds tables, see the Financial +886,BOGZ1FL613192063Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S. (Current Cost); Liability, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:14:17-05,1,1,"Source ID: FL613192063.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5430,9 +5686,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613192063&t=) provided by the source." -860,BOGZ1FA613192305Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in +887,BOGZ1FA613192305Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in U.S.: Intercompany Debt; Liability (Market Value), -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613192305.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-10 16:49:57-06,1,1,"Source ID: FA613192305.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5440,8 +5696,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613192305&t=) provided by the source." -861,BOGZ1FA613190005Q,2023-02-27,2023-02-27,"Finance Companies; Total Miscellaneous -Liabilities, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613190005.Q For more information about the Flow of Funds tables, see the Financial +888,BOGZ1FA613190005Q,2023-03-20,2023-03-20,"Finance Companies; Total Miscellaneous +Liabilities, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-10 16:49:57-06,1,1,"Source ID: FA613190005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5449,10 +5705,10 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613190005&t=) provided by the source." -862,SMU06112445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Anaheim-Santa Ana-Irvine, CA (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:18-06,1,1,No description provided. -863,SMU06125405552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Bakersfield, CA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:43:55-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +889,SMU06112445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Anaheim-Santa Ana-Irvine, CA (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:50-05,1,1,No description provided. +890,SMU06125405552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Bakersfield, CA (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:30:47-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5465,33 +5721,33 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU06125405552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -864,SMU34207645552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +891,SMU34207645552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Edison-New Brunswick, NJ (MD) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:29:40-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -865,HOLN0A175MCFRBDAL,2023-02-27,2023-02-27,"Change in Finance and Insurance Payroll Employment -for Houston-The Woodlands-Sugar Land, TX (MSA)",1990-02-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:13:08-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +892,HOLN0A175MCFRBDAL,2023-03-20,2023-03-20,"Change in Finance and Insurance Payroll Employment +for Houston-The Woodlands-Sugar Land, TX (MSA)",1990-02-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:42:25-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm." -866,SMS49000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Utah",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:41:48-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -867,SMS32000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Nevada",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:53-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -868,SMS50000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Vermont",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:13-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -869,SMS31000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Nebraska",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:54-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -870,SMS37000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in North Carolina",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:42:00-06,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. -871,BOGZ1FL615013865Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Structures, +893,SMS49000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Utah",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:11-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +894,SMS32000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Nevada",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:25-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +895,SMS50000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Vermont",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:09-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +896,SMS31000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Nebraska",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:37:26-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +897,SMS37000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in North Carolina",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:36:39-05,1,1,This series is seasonally adjusted by the U.S. Bureau of Labor Statistics. +898,BOGZ1FL615013865Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Structures, Equipment, and Intellectual Property Products Excluding Securitized Equipment, Current Cost -Basis, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:26-06,1,1,"Source ID: FL615013865.Q For more information about the Flow of Funds tables, see the Financial +Basis, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL615013865.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5499,10 +5755,10 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL615013865&t=) provided by the source." -872,BOGZ1FU615013865A,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Structures, +899,BOGZ1FU615013865A,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Structures, Equipment, and Intellectual Property Products Excluding Securitized Equipment, Current Cost -Basis, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:40:29-06,1,1,"Source ID: FU615013865.A For more information about the Flow of Funds tables, see the Financial +Basis, Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 14:59:43-06,1,1,"Source ID: FU615013865.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5510,8 +5766,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013865&t=) provided by the source." -873,SMU10488645552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Wilmington, DE-MD-NJ (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:34:34-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +900,SMU10488645552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Wilmington, DE-MD-NJ (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:23:58-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5524,8 +5780,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU10488645552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -874,BOGZ1FA614090005Q,2023-02-27,2023-02-27,"Finance Companies; Total Financial Assets, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA614090005.Q For more information about the Flow of Funds tables, see the Financial +901,BOGZ1FA614090005Q,2023-03-20,2023-03-20,"Finance Companies; Total Financial Assets, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA614090005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5533,8 +5789,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA614090005&t=) provided by the source." -875,BOGZ1FA613090005A,2023-02-27,2023-02-27,"Finance Companies; Total Miscellaneous Assets, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:45:55-06,1,1,"Source ID: FA613090005.A For more information about the Flow of Funds tables, see the Financial +902,BOGZ1FA613090005A,2023-03-20,2023-03-20,"Finance Companies; Total Miscellaneous Assets, +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:05:18-06,1,1,"Source ID: FA613090005.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5542,8 +5798,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613090005&t=) provided by the source." -876,SMU20928125552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Kansas City, KS",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:24:02-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +903,SMU20928125552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Kansas City, KS",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:13:22-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5561,14 +5817,14 @@ addition to the Kansas City, MO-KS (MSA)'s statistics because of it's importance more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -877,TX55520000A175FRBDAL,2023-02-27,2023-02-27,"Financial Activities: Finance and Insurance +904,TX55520000A175FRBDAL,2023-03-20,2023-03-20,"Financial Activities: Finance and Insurance Payroll Employment in Texas (DISCONTINUED)",1990-01-01,2016-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2017-01-31 09:46:59-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -878,BOGZ1FL613065513A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by +905,BOGZ1FL613065513A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by Nonprofit Organizations; Asset, Level",1945-01-01,2019-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:24:42-06,1,1,"Source ID: FL613065513.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are @@ -5577,15 +5833,15 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065513&t=) provided by the source." -879,DALN0A175AFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for +906,DALN0A175AFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for Dallas-Plano-Irving, TX (MSAD) (DISCONTINUED)",1990-01-01,2016-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2017-01-31 09:49:23-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -880,BOGZ1FA613192063Q,2023-02-27,2023-02-27,"Finance Companies; Foreign Direct Investment in -U.S. (Current Cost); Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:39-06,1,1,"Source ID: FA613192063.Q For more information about the Flow of Funds tables, see the Financial +907,BOGZ1FA613192063Q,2023-03-20,2023-03-20,"Finance Companies; Foreign Direct Investment in +U.S. (Current Cost); Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:59-05,1,1,"Source ID: FA613192063.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5593,7 +5849,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613192063&t=) provided by the source." -881,AULN0A175AFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for +908,AULN0A175AFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for Austin-Round Rock-San Marcos, TX (MSA) (DISCONTINUED)",1990-01-01,2016-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2017-01-31 09:53:00-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the @@ -5601,7 +5857,7 @@ early benchmarking technique can be found at http://www.dallasfed.org/research/b More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -882,HOLN0A175AFRBDAL,2023-02-27,2023-02-27,"Finance and Insurance Payroll Employment for +909,HOLN0A175AFRBDAL,2023-03-20,2023-03-20,"Finance and Insurance Payroll Employment for Houston-The Woodlands-Sugar Land, TX (MSA) (DISCONTINUED)",1990-01-01,2016-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2017-01-31 09:48:52-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the @@ -5609,7 +5865,7 @@ early benchmarking technique can be found at http://www.dallasfed.org/research/b More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm. Please note that this annual series created by the Federal Reserve bank of Dallas was calculated based on a seasonally adjusted monthly series." -883,BOGZ1FR614190005Q,2023-02-27,2023-02-27,"Finance Companies; Total Liabilities, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR614190005.Q For more information about the Flow of Funds tables, see the Financial +910,BOGZ1FR614190005Q,2023-03-20,2023-03-20,"Finance Companies; Total Liabilities, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR614190005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5617,8 +5873,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR614190005&t=) provided by the source." -884,BOGZ1FR613065000A,2023-02-27,2023-02-27,"Finance Companies; Total Mortgages; Asset, -Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 11:59:34-06,1,1,"Source ID: FR613065000.A For more information about the Flow of Funds tables, see the Financial +911,BOGZ1FR613065000A,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:17-06,1,1,"Source ID: FR613065000.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5626,8 +5882,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065000&t=) provided by the source." -885,BOGZ1FA613066005Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:03-06,1,1,"Source ID: FA613066005.Q For more information about the Flow of Funds tables, see the Financial +912,BOGZ1FA613066005Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:48-06,1,1,"Source ID: FA613066005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5635,8 +5891,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613066005&t=) provided by the source." -886,BOGZ1FA615013063Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Structures, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:38-06,1,1,"Source ID: FA615013063.Q For more information about the Flow of Funds tables, see the Financial +913,BOGZ1FA615013063Q,2023-03-20,2023-03-20,"Finance Companies; Gross Fixed Investment, +Nonresidential Structures, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:58-05,1,1,"Source ID: FA615013063.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5644,8 +5900,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013063&t=) provided by the source." -887,BOGZ1FR613194733A,2023-02-27,2023-02-27,"Finance Companies; Other Investment by Holding -Company Parent; Liability, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 11:59:34-06,1,1,"Source ID: FR613194733.A For more information about the Flow of Funds tables, see the Financial +914,BOGZ1FR613194733A,2023-03-20,2023-03-20,"Finance Companies; Other Investment by Holding +Company Parent; Liability, Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:02-06,1,1,"Source ID: FR613194733.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5653,9 +5909,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613194733&t=) provided by the source." -888,BOGZ1FA615013765A,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Intellectual +915,BOGZ1FA615013765A,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Intellectual Property Products, Current Cost Basis, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:25-06,1,1,"Source ID: FA615013765.A For more information about the Flow of Funds tables, see the Financial +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:45-05,1,1,"Source ID: FA615013765.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5663,9 +5919,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA615013765&t=) provided by the source." -889,BOGZ1FA616330033A,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +916,BOGZ1FA616330033A,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Software, Current Cost Basis, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:18:24-06,1,1,"Source ID: FA616330033.A For more information about the Flow of Funds tables, see the Financial +Transactions",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:04:44-05,1,1,"Source ID: FA616330033.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5673,7 +5929,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616330033&t=) provided by the source." -890,BOGZ1FR614123005Q,2023-02-27,2023-02-27,"Finance Companies; Loans; Liability, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR614123005.Q For more information about the Flow of Funds tables, see the Financial +917,BOGZ1FR614123005Q,2023-03-20,2023-03-20,"Finance Companies; Loans; Liability, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR614123005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5681,8 +5937,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR614123005&t=) provided by the source." -891,BOGZ1FR613169333Q,2023-02-27,2023-02-27,"Finance Companies; FHLB Advances; Liability, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613169333.Q For more information about the Flow of Funds tables, see the Financial +918,BOGZ1FR613169333Q,2023-03-20,2023-03-20,"Finance Companies; FHLB Advances; Liability, +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR613169333.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5690,8 +5946,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613169333&t=) provided by the source." -892,BOGZ1FA616310005Q,2023-02-27,2023-02-27,"Finance Companies; Capital Consumption Adjustment -(CCADj), Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 16:00:21-06,1,1,"Source ID: FA616310005.Q For more information about the Flow of Funds tables, see the Financial +919,BOGZ1FA616310005Q,2023-03-20,2023-03-20,"Finance Companies; Capital Consumption Adjustment +(CCADj), Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616310005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5699,7 +5955,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616310005&t=) provided by the source." -893,BOGZ1FR613065593Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages Issued by +920,BOGZ1FR613065593Q,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages Issued by Non-Depository Financial Institutions; Asset, Revaluation",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:31-06,1,1,"Source ID: FR613065593.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, @@ -5709,9 +5965,9 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065593&t=) provided by the source." -894,BOGZ1FU616330025Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +921,BOGZ1FU616330025Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Equipment Excluding Securitized -Equipment, Current Cost Basis, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:31:18-06,1,1,"Source ID: FU616330025.Q For more information about the Flow of Funds tables, see the Financial +Equipment, Current Cost Basis, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:15:09-05,1,1,"Source ID: FU616330025.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5719,8 +5975,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616330025&t=) provided by the source." -895,BOGZ1FR613066005Q,2023-02-27,2023-02-27,"Finance Companies; Consumer Credit; Asset, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:15-06,1,1,"Source ID: FR613066005.Q For more information about the Flow of Funds tables, see the Financial +922,BOGZ1FR613066005Q,2023-03-20,2023-03-20,"Finance Companies; Consumer Credit; Asset, +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:47-06,1,1,"Source ID: FR613066005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5728,8 +5984,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613066005&t=) provided by the source." -896,BOGZ1FA613193005Q,2023-02-27,2023-02-27,"Finance Companies; Unidentified Miscellaneous -Liabilities, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:02-06,1,1,"Source ID: FA613193005.Q For more information about the Flow of Funds tables, see the Financial +923,BOGZ1FA613193005Q,2023-03-20,2023-03-20,"Finance Companies; Unidentified Miscellaneous +Liabilities, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:20-06,1,1,"Source ID: FA613193005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5737,8 +5993,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613193005&t=) provided by the source." -897,BOGZ1FL613092003Q,2023-02-27,2023-02-27,"Finance Companies; U.S. Direct Investment Abroad -(Market Value); Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:48:27-06,1,1,"Source ID: FL613092003.Q For more information about the Flow of Funds tables, see the Financial +924,BOGZ1FL613092003Q,2023-03-20,2023-03-20,"Finance Companies; U.S. Direct Investment Abroad +(Market Value); Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:40-06,1,1,"Source ID: FL613092003.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5746,8 +6002,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613092003&t=) provided by the source." -898,SMU72386605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Ponce, PR (MSA)",2003-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:44:17-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +925,SMU72386605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Ponce, PR (MSA)",2003-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:39:55-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5760,8 +6016,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU72386605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -899,BOGZ1FL313069223Q,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Level",1945-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:49:18-06,1,1,"Source ID: FL313069223.Q For more information about the Flow of Funds tables, see the Financial +926,BOGZ1FL313069223Q,2023-03-20,2023-03-20,"Federal Government; Loans to Finance Companies +(Chrysler Financial); Asset, Level",1945-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:08:23-06,1,1,"Source ID: FL313069223.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5769,8 +6025,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL313069223&t=) provided by the source." -900,SMU42979625552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Delaware County, PA",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 02:57:42-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +927,SMU42979625552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Delaware County, PA",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:49:25-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5788,8 +6044,8 @@ addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (MSA)'s statistics b importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -901,SMU01338605552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Montgomery, AL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:45:06-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +928,SMU01338605552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Montgomery, AL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:33:59-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5802,8 +6058,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU01338605552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -902,SMU17441005552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Springfield, IL (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:25:12-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +929,SMU17441005552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Springfield, IL (MSA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:17:30-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5816,8 +6072,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU17441005552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -903,BOGZ1FA113169535Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans; Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:56-06,1,1,"Source ID: FA113169535.Q For more information about the Flow of Funds tables, see the Financial +930,BOGZ1FA113169535Q,2023-03-20,2023-03-20,"Nonfinancial Noncorporate Business; Finance +Companies Loans; Liability, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:10:20-06,1,1,"Source ID: FA113169535.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5825,16 +6081,16 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA113169535&t=) provided by the source." -904,DALN0A175MCFRBDAL,2023-02-27,2023-02-27,"Change in Finance and Insurance Payroll Employment -for Dallas-Plano-Irving, TX (MSAD)",1990-02-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:13:52-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +931,DALN0A175MCFRBDAL,2023-03-20,2023-03-20,"Change in Finance and Insurance Payroll Employment +for Dallas-Plano-Irving, TX (MSAD)",1990-02-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:41:10-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm." -905,SMU11000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in the District of Columbia",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:43:00-05,1,1,No description provided. -906,SMU34935635552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Bergen-Hudson-Passaic, NJ",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:10:48-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +932,SMU11000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in the District of Columbia",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:43:35-05,1,1,No description provided. +933,SMU34935635552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Bergen-Hudson-Passaic, NJ",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:01:15-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5852,20 +6108,20 @@ addition to the New York-Wayne-White Plains, NY-NJ (MD)'s statistics because of the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -907,AULN0A175MCFRBDAL,2023-02-27,2023-02-27,"Change in Finance and Insurance Payroll Employment -for Austin-Round Rock-San Marcos, TX (MSA)",1990-02-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:14:42-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas +934,AULN0A175MCFRBDAL,2023-03-20,2023-03-20,"Change in Finance and Insurance Payroll Employment +for Austin-Round Rock-San Marcos, TX (MSA)",1990-02-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-10 14:42:38-06,1,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Metropolitan Areas of Texas using early benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information pertaining to two-step seasonal adjustment can be found at http://www.dallasfed.org/research/basics/twostep.cfm." -908,SMU15261805552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +935,SMU15261805552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Honolulu, HI (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2015-01-28 14:06:46-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'x12' package from R with default parameter settings. The package uses the U.S. Bureau of the Census X-12-ARIMA Seasonal Adjustment Program. More information on the 'x12' package can be found at http://cran.r-project.org/web/packages/x12/x12.pdf. More information on X-12-ARIMA can be found at https://www.census.gov/srd/www/x13as/." -909,SMU26198045552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Detroit-Dearborn-Livonia, MI (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:16:54-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +936,SMU26198045552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Detroit-Dearborn-Livonia, MI (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:10:02-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5878,8 +6134,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU26198045552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -910,SMU23767505552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Portland-South Portland, ME (NECTA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:20:29-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +937,SMU23767505552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Portland-South Portland, ME (NECTA)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:11:03-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5892,8 +6148,8 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU23767505552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -911,SMU24947815552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Calvert-Charles-Prince George's, MD",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:21:08-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +938,SMU24947815552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Calvert-Charles-Prince George's, MD",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:12:17-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5911,10 +6167,10 @@ calculated in addition to the Washington-Arlington-Alexandria, DC-VA-MD-WV (MSA) because of it's importance to the state. For more details on non-standard area definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current Employment Statistics." -912,SMU39000005552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +939,SMU39000005552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Ohio",2001-01-01,2018-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2019-01-18 17:10:45-06,1,1,No description provided. -913,BOGZ1FR613065115Q,2023-02-27,2023-02-27,"Finance Companies; One-to-Four-Family Residential +940,BOGZ1FR613065115Q,2023-03-20,2023-03-20,"Finance Companies; One-to-Four-Family Residential Mortgages Issued by Households; Asset, Revaluation",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2020-12-16 12:25:33-06,1,1,"Source ID: FR613065115.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are @@ -5923,12 +6179,12 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065115&t=) provided by the source." -914,SMU39000005552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +941,SMU39000005552000030,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in Ohio",2001-01-01,2018-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2019-01-18 17:13:38-06,1,1,No description provided. -915,BOGZ1FR103094105Q,2023-02-27,2023-02-27,"Nonfinancial Corporate Business; Other Investment +942,BOGZ1FR103094105Q,2023-03-20,2023-03-20,"Nonfinancial Corporate Business; Other Investment in Finance Company Subsidiaries; Asset, -Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:47:45-06,1,1,"Source ID: FR103094705.Q For more information about the Flow of Funds tables, see the Financial +Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:07:25-06,1,1,"Source ID: FR103094705.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -5936,15 +6192,15 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR103094705&t=) provided by the source." -916,SMU06310845552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +943,SMU06310845552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Los Angeles-Long Beach-Glendale, CA -(MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:40:14-06,1,1,No description provided. -917,SMU27000005552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +(MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:34:34-05,1,1,No description provided. +944,SMU27000005552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in -Minnesota",2001-01-01,2022-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:22:23-06,1,1,No description provided. -918,SMU24435245552000001SA,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +Minnesota",2001-01-01,2023-01-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:18:55-05,1,1,No description provided. +945,SMU24435245552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Silver Spring-Frederick-Rockville, MD -(MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-01-25 03:19:54-06,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +(MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 03:12:33-05,1,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' library from Python with default parameter settings. The package uses the U.S. Bureau of the Census X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS package can be found here @@ -5957,19 +6213,19 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU24435245552000001). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -919,SMU26000005552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +946,SMU26000005552000008,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in -Michigan",2003-01-01,2022-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-01-25 02:29:06-06,1,1,No description provided. -920,SMU26000005552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +Michigan",2003-01-01,2023-01-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-03-14 02:21:28-05,1,1,No description provided. +947,SMU26000005552000030,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in -Michigan",2003-01-01,2022-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:29:06-06,1,1,No description provided. -921,SMU27000005552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +Michigan",2003-01-01,2023-01-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:21:28-05,1,1,No description provided. +948,SMU27000005552000030,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in -Minnesota",2001-01-01,2022-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:22:22-06,1,1,No description provided. -922,SMU54000005552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +Minnesota",2001-01-01,2023-01-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:18:54-05,1,1,No description provided. +949,SMU54000005552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in -West Virginia",2003-01-01,2022-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:03:51-06,1,1,No description provided. -923,BOGZ1FA613065445Q,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential +West Virginia",2003-01-01,2023-01-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:03:49-05,1,1,No description provided. +950,BOGZ1FA613065445Q,2023-03-20,2023-03-20,"Finance Companies; Multifamily Residential Mortgages Issued by Nonfinancial Corporate Businesses; Asset, Flow",1946-10-01,2020-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted,SA,2020-12-16 12:22:29-06,1,1,"Source ID: FA613065445.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, @@ -5979,13 +6235,13 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065445&t=) provided by the source." -924,SMU54000005552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +951,SMU54000005552000008,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in -West Virginia",2003-01-01,2022-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-01-25 02:03:50-06,1,1,No description provided. -925,SMU54000005552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +West Virginia",2003-01-01,2023-01-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-03-14 02:03:49-05,1,1,No description provided. +952,SMU54000005552000030,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in -West Virginia",2003-01-01,2022-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:03:50-06,1,1,No description provided. -926,SMU39000005552000007SA,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +West Virginia",2003-01-01,2023-01-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:03:49-05,1,1,No description provided. +953,SMU39000005552000007SA,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Ohio (DISCONTINUED)",2001-01-01,2018-12-01,Monthly,M,Hours per Week,Hours per Week,Seasonally Adjusted,SA,2019-01-18 17:10:45-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6006,7 +6262,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU39000005552000007). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -927,SMU39000005552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +954,SMU39000005552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in Ohio (DISCONTINUED)",2001-01-01,2018-12-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2019-01-18 17:10:44-06,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6027,10 +6283,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU39000005552000030). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -928,SMU12227445552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +955,SMU12227445552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Fort Lauderdale-Pompano Beach- -Deerfield Beach, FL (MD)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:36:52-06,1,1,No description provided. -929,SMU27000005552000007SA,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +Deerfield Beach, FL (MD)",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:31:26-05,1,1,No description provided. +956,SMU27000005552000007SA,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Minnesota (DISCONTINUED)",2001-01-01,2022-03-01,Monthly,M,Hours per Week,Hours per Week,Seasonally Adjusted,SA,2022-04-16 04:43:03-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6051,13 +6307,13 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27000005552000007). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -930,SMU72103805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +957,SMU72103805552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Aguadilla-Isabela-San Sebastian, PR (MSA) (DISCONTINUED)",2003-01-01,2013-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2014-02-02 01:48:56-06,1,1,No description provided. -931,SMU06420605552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and +958,SMU06420605552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and Insurance in Santa Barbara-Santa Maria-Goleta, CA (MSA) (DISCONTINUED)",1990-01-01,2014-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2015-01-28 14:01:07-06,1,1,No description provided. -932,SMU26000005552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +959,SMU26000005552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in Michigan (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2022-04-16 04:47:05-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6078,7 +6334,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU26000005552000008). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -933,SMU26000005552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +960,SMU26000005552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in Michigan (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2022-04-16 04:47:05-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6099,7 +6355,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU26000005552000030). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -934,SMU27000005552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +961,SMU27000005552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in Minnesota (DISCONTINUED)",2001-01-01,2022-03-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2022-04-16 04:43:03-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6120,7 +6376,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27000005552000008). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -935,SMU27000005552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +962,SMU27000005552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in Minnesota (DISCONTINUED)",2001-01-01,2022-03-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2022-04-16 04:43:02-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6141,7 +6397,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27000005552000030). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -936,SMU54000005552000007SA,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +963,SMU54000005552000007SA,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in West Virginia (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Hours per Week,Hours per Week,Seasonally Adjusted,SA,2022-04-16 04:10:09-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6162,9 +6418,9 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU54000005552000007). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -937,BOGZ1FA616330043Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +964,BOGZ1FA616330043Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Research and Development, Current -Cost Basis, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-13 15:28:36-06,1,1,"Source ID: FA616330043.Q For more information about the Flow of Funds tables, see the Financial +Cost Basis, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-15 09:10:57-05,1,1,"Source ID: FA616330043.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -6172,7 +6428,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616330043&t=) provided by the source." -938,SMU54000005552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +965,SMU54000005552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in West Virginia (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2022-04-16 04:10:09-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6193,7 +6449,7 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU54000005552000008). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -939,SMU54000005552000030SA,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +966,SMU54000005552000030SA,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in West Virginia (DISCONTINUED)",2003-01-01,2022-03-01,Monthly,M,Dollars per Week,$ per Week,Seasonally Adjusted,SA,2022-04-16 04:10:09-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis previously calculated this seasonally adjusted (SA) series based on the not seasonally adjusted @@ -6214,16 +6470,16 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU54000005552000030). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -940,SMU27334605552000007,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +967,SMU27334605552000007,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in -Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2001-01-01,2022-12-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:22:07-06,1,1,No description provided. -941,SMU27334605552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2001-01-01,2023-01-01,Monthly,M,Hours per Week,Hours per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:18:37-05,1,1,No description provided. +968,SMU27334605552000008,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in -Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2001-01-01,2022-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-01-25 02:22:07-06,1,1,No description provided. -942,SMU27334605552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: +Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2001-01-01,2023-01-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2023-03-14 02:18:37-05,1,1,No description provided. +969,SMU27334605552000030,2023-03-20,2023-03-20,"Average Weekly Earnings of Production Employees: Financial Activities: Finance and Insurance in -Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2003-01-01,2022-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-01-25 02:22:07-06,1,1,No description provided. -943,SMU27334605552000007SA,2023-02-27,2023-02-27,"Average Weekly Hours of Production Employees: +Minneapolis-St. Paul-Bloomington, MN-WI (MSA)",2003-01-01,2023-01-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2023-03-14 02:18:37-05,1,1,No description provided. +970,SMU27334605552000007SA,2023-03-20,2023-03-20,"Average Weekly Hours of Production Employees: Financial Activities: Finance and Insurance in Minneapolis-St. Paul-Bloomington, MN-WI (MSA) (DISCONTINUED)",2001-01-01,2022-03-01,Monthly,M,Hours per Week,Hours per Week,Seasonally Adjusted,SA,2022-04-16 04:42:32-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis @@ -6245,10 +6501,10 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27334605552000007). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -944,BOGZ1FR615013865Q,2023-02-27,2023-02-27,"Finance Companies; Nonresidential Structures, +971,BOGZ1FR615013865Q,2023-03-20,2023-03-20,"Finance Companies; Nonresidential Structures, Equipment, and Intellectual Property Products Excluding Securitized Equipment, Current Cost -Basis, Revaluation",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 13:33:27-06,1,1,"Source ID: FR615013865.Q For more information about the Flow of Funds tables, see the Financial +Basis, Revaluation",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:06:46-06,1,1,"Source ID: FR615013865.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -6256,7 +6512,7 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR615013865&t=) provided by the source." -945,SMU27334605552000008SA,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: +972,SMU27334605552000008SA,2023-03-20,2023-03-20,"Average Hourly Earnings of Production Employees: Financial Activities: Finance and Insurance in Minneapolis-St. Paul-Bloomington, MN-WI (MSA) (DISCONTINUED)",2001-01-01,2022-03-01,Monthly,M,Dollars per Hour,$ per Hour,Seasonally Adjusted,SA,2022-04-16 04:42:32-05,1,1,"This series is discontinued and will no longer be updated. The Federal Reserve Bank of St. Louis @@ -6278,11 +6534,11 @@ updated with the NSA data. The NSA series can be located here here (https://fred.stlouisfed.org/series/SMU27334605552000008). Some seasonally adjusted series may exhibit negative values because they are created from a seasonal adjustment process regardless of the actual meaning or interpretation of the given indicator." -946,BOGZ1FA616330005Q,2023-02-27,2023-02-27,"Finance Companies; Consumption of Fixed Capital, +973,BOGZ1FA616330005Q,2023-03-20,2023-03-20,"Finance Companies; Consumption of Fixed Capital, Nonresidential Structures, Equipment, and Intellectual Property Products Excluding Securitized Equipment, Current Cost Basis, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-12-09 13:50:01-06,1,1,"Source ID: FA616330005.Q For more information about the Flow of Funds tables, see the Financial +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:09:19-06,1,1,"Source ID: FA616330005.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -6290,8 +6546,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA616330005&t=) provided by the source." -947,BOGZ1FR613065503A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 11:59:34-06,1,1,"Source ID: FR613065503.A For more information about the Flow of Funds tables, see the Financial +974,BOGZ1FR613065503A,2023-03-20,2023-03-20,"Finance Companies; Commercial Mortgages; Asset, +Revaluation",1946-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:02:17-06,1,1,"Source ID: FR613065503.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -6299,8 +6555,8 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613065503&t=) provided by the source." -948,DDDI03JPA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Japan",2001-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-08-04 09:47:38-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that +975,DDDI03JOA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Jordan",1966-01-01,2000-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:34:24-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -6315,8 +6571,8 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -949,DDDI03ZAA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -South Africa",1961-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:24:54-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that +976,DDDI03SGA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Singapore",1968-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:24:11-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -6331,8 +6587,8 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -950,DDDI03SAA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for -Saudi Arabia",1968-01-01,2017-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:39-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that +977,DDDI03EGA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +Egypt",1996-01-01,2007-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2019-10-21 14:50:47-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions such as saving and mortgage loan institutions, post-office savings institution, building and loan @@ -6347,7 +6603,7 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -951,DDDI03BRA156NWDB,2023-02-27,2023-02-27,"Non-Bank Financial Institutions' Assets to GDP for +978,DDDI03BRA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for Brazil",1988-01-01,2020-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2022-03-23 16:23:21-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that perform financial intermediation by accepting other types of deposits or by issuing securities or other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions @@ -6363,25 +6619,77 @@ institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 9 available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and World Bank GDP estimates) Source Code: GFDD.DI.03" -952,BOGZ1FL613065000A,2023-02-27,2023-02-27,"Finance Companies; Total Mortgages; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:22:28-05,0,1,"Source ID: FL613065000.A For more information about the Flow of Funds tables, see the Financial +979,DDDI03FRA156NWDB,2023-03-20,2023-03-20,"Non-Bank Financial Institutions' Assets to GDP for +France",1961-01-01,1984-01-01,Annual,A,Percent,%,Not Seasonally Adjusted,NSA,2018-09-21 11:22:36-05,3,3,"Total assets held by financial institutions that do not accept transferable deposits but that +perform financial intermediation by accepting other types of deposits or by issuing securities or +other liabilities that are close substitutes for deposits as a share of GDP. It covers institutions +such as saving and mortgage loan institutions, post-office savings institution, building and loan +associations, finance companies that accept deposits or deposit substitutes, development banks, and +offshore banking institutions. Assets include claims on domestic real nonfinancial sector such as +central-, state- and local government, nonfinancial public enterprises and private sector. Claims +on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated +using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is other +financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data +are from the electronic version of the IMF's International Financial Statistics. Non-bank financial +institutions assets (IFS lines 42, a-d and h); GDP in local currency (IFS line 99B..ZF or, if not +available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and +annual CPI (IFS line 64..ZF). (International Monetary Fund, International Financial Statistics, and +World Bank GDP estimates) Source Code: GFDD.DI.03" +980,SMU42979615552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Philadelphia City, PA",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:06:25-05,0,1,"Philadelphia City, PA constitutes a significant percentage of the state's total statewide +employment. This series is calculated in addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD +(MSA)'s statistics because of it's importance to the state. For more details on non-standard area +definitions, visit the additional resources (https://www.bls.gov/sae/additional-resources/non- +standard-ces-areas.htm) of the Current Employment Statistics." +981,SMU42979615552000001SA,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Philadelphia City, PA",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-03-14 02:49:31-05,0,1,"The Federal Reserve Bank of St. Louis seasonally adjusts this series by using the 'statsmodels' +library from Python with default parameter settings. The package uses the U.S. Bureau of the Census +X-13ARIMA-SEATS Seasonal Adjustment Program. More information on the 'statsmodels' X-13ARIMA-SEATS +package can be found here +(https://www.statsmodels.org/dev/generated/statsmodels.tsa.x13.x13_arima_analysis.html). More +information on X-13ARIMA-SEATS can be found here (https://www.census.gov/data/software/x13as.html). +Many series include both seasonally adjusted (SA) and not seasonally adjusted (NSA) data. +Occasionally, updates to the data will not include sufficient seasonal factors to trigger a seasonal +adjustment. In these cases, the NSA series will be updated normally; but the SA series will also be +updated with the NSA data. The NSA series can be located here here +(https://fred.stlouisfed.org/series/SMU42979615552000001). Some seasonally adjusted series may +exhibit negative values because they are created from a seasonal adjustment process regardless of +the actual meaning or interpretation of the given indicator."" Philadelphia City, PA constitutes a +significant percentage of the state's total statewide employment. This series is calculated in +addition to the Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (MSA)'s statistics because of it's +importance to the state. For more details on non-standard area definitions, visit the additional +resources (https://www.bls.gov/sae/additional-resources/non-standard-ces-areas.htm) of the Current +Employment Statistics." +982,SMU56000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Wyoming",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:03:52-05,0,1,No description provided. +983,SMU12000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Florida",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:52:15-05,0,1,No description provided. +984,SMU05000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arkansas",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 02:35:15-05,0,1,No description provided. +985,SMU05000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Arkansas",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:14:36-05,0,1,No description provided. +986,SMU27000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Minnesota",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:49:05-05,0,1,No description provided. +987,SMU27000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Minnesota",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:09:33-05,0,1,No description provided. +988,BOGZ1FL613065403A,2023-03-20,2023-03-20,"Finance Companies; Multifamily Residential +Mortgages; Asset, Level",1945-01-01,2022-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-09 15:14:40-06,0,1,"Source ID: FL613065403.A For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065000&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065403&t=) provided by the source." -953,SMU72000005552000030,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2014-02-02 01:49:09-06,0,1,No description provided. -954,SMU72000005552000030A,2023-02-27,2023-02-27,"Average Weekly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2012-01-01,Annual,A,Dollars per Week,$ per Week,Not Seasonally Adjusted,NSA,2014-02-02 01:49:09-06,0,1,No description provided. -955,SMU19197805552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Des Moines-West Des Moines, IA (MSA)",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:33:01-06,0,1,No description provided. -956,BOGZ1FU673069503Q,2023-02-27,2023-02-27,"Issuers of Asset-Backed Securities; Nonfinancial +989,SMU72000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Puerto Rico",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:03:47-05,0,1,No description provided. +990,SMU42000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Pennsylvania",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:47:32-05,0,1,No description provided. +991,SMU42000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Pennsylvania",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:06:42-05,0,1,No description provided. +992,BOGZ1FU673069503Q,2023-03-20,2023-03-20,"Issuers of Asset-Backed Securities; Nonfinancial Business Loans Securitized by Finance Companies; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:37:20-06,0,1,"Source ID: FU673069503.Q For more information about the Flow of Funds tables, see the Financial +Asset, Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2023-03-15 09:25:22-05,0,1,"Source ID: FU673069503.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In @@ -6389,314 +6697,25 @@ the Financial Accounts, the source identifies each series by a string of pattern numbers. For a detailed description, including how this series is constructed, see the series analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU673069503&t=) provided by the source." -957,BOGZ1FA613065503A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:23:26-05,0,1,"Source ID: FA613065503.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065503&t=) provided by -the source." -958,BOGZ1FU613065503A,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:21:07-05,0,1,"Source ID: FU613065503.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065503&t=) provided by -the source." -959,BOGZ1FU613065503Q,2023-02-27,2023-02-27,"Finance Companies; Commercial Mortgages; Asset, -Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:56:05-06,0,1,"Source ID: FU613065503.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065503&t=) provided by -the source." -960,BOGZ1FU613065200Q,2023-02-27,2023-02-27,"Finance Companies; Home Equity Lines of Credit; -Asset, Transactions",1970-07-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:37:06-06,0,1,"Source ID: FU613065200.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065200&t=) provided by -the source." -961,BOGZ1FL613065403A,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:00:37-06,0,1,"Source ID: FL613065403.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613065403&t=) provided by -the source." -962,TX55520000M158FRBDAL,2023-02-27,2023-02-27,"Financial Activities: Finance and Insurance -Payroll Employment in Texas",1990-02-01,2022-12-01,Monthly,M,Percent Change at Annual Rate,% Chg. at Annual Rate,Seasonally Adjusted,SA,2023-02-07 14:14:53-06,0,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Texas using early -benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking -technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information -pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm." -963,TX55520000M175FRBDAL,2023-02-27,2023-02-27,"Financial Activities: Finance and Insurance -Payroll Employment in Texas",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Seasonally Adjusted,SA,2023-02-07 14:14:53-06,0,1,"The Dallas Fed has improved the quality of the payroll employment estimates for Texas using early -benchmarking and two-step seasonal adjustment. More information regarding the early benchmarking -technique can be found at http://www.dallasfed.org/research/basics/benchmark.cfm. More information -pertaining to two-step seasonal adjustment can be found at -http://www.dallasfed.org/research/basics/twostep.cfm." -964,BOGZ1FA613168005A,2023-02-27,2023-02-27,"Finance Companies; Depository Institution Loans -N.E.C., Including Loans Through the Paycheck -Protection Program Liquidity Facility (PPPLF); -Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:23:26-05,0,1,"Source ID: FA613168005.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613168005&t=) provided by -the source." -965,SMU05000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Arkansas",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:46:59-05,0,1,No description provided. -966,SMU72000005552000008,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2013-12-01,Monthly,M,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2014-02-02 01:49:11-06,0,1,No description provided. -967,SMU72000005552000008A,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Puerto Rico (DISCONTINUED)",2001-01-01,2012-01-01,Annual,A,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2014-02-02 01:49:10-06,0,1,No description provided. -968,SMU40000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oklahoma",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:13:37-06,0,1,No description provided. -969,SMU40000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Oklahoma",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:28:08-05,0,1,No description provided. -970,BOGZ1FA613065403A,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-10 12:03:03-06,0,1,"Source ID: FA613065403.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065403&t=) provided by -the source." -971,BOGZ1FU613065403A,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:34:45-06,0,1,"Source ID: FU613065403.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065403&t=) provided by -the source." -972,BOGZ1FU613065403Q,2023-02-27,2023-02-27,"Finance Companies; Multifamily Residential -Mortgages; Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:56:05-06,0,1,"Source ID: FU613065403.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613065403&t=) provided by -the source." -973,SMU13120605552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Atlanta-Sandy Springs-Roswell, GA -(MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:41:43-05,0,1,No description provided. -974,SMU36356145552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in New York-Jersey City-White Plains, -NY-NJ (MD)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:30:25-05,0,1,No description provided. -975,BOGZ1FL713068863A,2023-02-27,2023-02-27,"Monetary Authority; Loans to Finance Companies -Under the Paycheck Protection Program Liquidity -Facility (PPPLF); Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:41:47-06,0,1,"Source ID: FL713068863.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL713068863&t=) provided by -the source." -976,BOGZ1FL613069500A,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans; -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-13 18:03:27-05,0,1,"Source ID: FL613069500.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613069500&t=) provided by -the source." -977,BOGZ1FL613063003A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Level",1945-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-06-09 12:29:16-05,0,1,"Source ID: FL613063003.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL613063003&t=) provided by -the source." -978,BOGZ1FU616006403A,2023-02-27,2023-02-27,"Finance Companies; Undistributed Corporate Profits -Excluding CCAdj, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:23:00-06,0,1,"Source ID: FU616006403.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616006403&t=) provided by -the source." -979,BOGZ1FU616006403Q,2023-02-27,2023-02-27,"Finance Companies; Undistributed Corporate Profits -Excluding CCAdj, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:36:57-06,0,1,"Source ID: FU616006403.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU616006403&t=) provided by -the source." -980,BOGZ1FR613163083A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bond, -Non-Recourse Debt; Liability, Revaluation",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:15:33-05,0,1,"Source ID: FR613163083.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FR613163083&t=) provided by -the source." -981,SMU48124205552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Austin-Round Rock, TX (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:51:48-05,0,1,No description provided. -982,SMU37395805552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Raleigh, NC (MSA)",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:31:03-05,0,1,No description provided. -983,BOGZ1FU615013033A,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Software, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:22:19-06,0,1,"Source ID: FU615013033.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013033&t=) provided by -the source." -984,BOGZ1FU615013033Q,2023-02-27,2023-02-27,"Finance Companies; Gross Fixed Investment, -Nonresidential Software, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:36:58-06,0,1,"Source ID: FU615013033.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU615013033&t=) provided by -the source." -985,SMU39000005552000008A,2023-02-27,2023-02-27,"Average Hourly Earnings of Production Employees: -Financial Activities: Finance and Insurance in -Ohio",2001-01-01,2017-01-01,Annual,A,Dollars per Hour,$ per Hour,Not Seasonally Adjusted,NSA,2018-03-12 15:13:03-05,0,1,No description provided. -986,SMU42000005552000001,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Pennsylvania",1990-01-01,2022-12-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-01-25 02:12:11-06,0,1,No description provided. -987,SMU42000005552000001A,2023-02-27,2023-02-27,"All Employees: Financial Activities: Finance and -Insurance in Pennsylvania",1990-01-01,2021-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2022-03-15 05:27:46-05,0,1,No description provided. -988,BOGZ1FA613069505A,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-09-09 14:23:26-05,0,1,"Source ID: FA613069505.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613069505&t=) provided by -the source." -989,BOGZ1FU613069505A,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-09-09 14:21:07-05,0,1,"Source ID: FU613069505.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613069505&t=) provided by -the source." -990,BOGZ1FU613069505Q,2023-02-27,2023-02-27,"Finance Companies; Nonfinancial Business Loans, -Including Paycheck Protection Program Loans; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:56:05-06,0,1,"Source ID: FU613069505.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613069505&t=) provided by -the source." -991,BOGZ1FA113169563A,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-17 02:25:33-05,0,1,"Source ID: FA113169563.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA113169563&t=) provided by -the source." -992,BOGZ1FU113169563A,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-17 02:14:25-05,0,1,"Source ID: FU113169563.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU113169563&t=) provided by -the source." -993,BOGZ1FU113169563Q,2023-02-27,2023-02-27,"Nonfinancial Noncorporate Business; Finance -Companies Loans from Paycheck Protection Program; -Liability, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-13 15:39:00-06,0,1,"Source ID: FU113169563.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU113169563&t=) provided by -the source." -994,BOGZ1FA313069223A,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-03-10 12:45:39-06,0,1,"Source ID: FA313069223.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA313069223&t=) provided by -the source." -995,BOGZ1FU313069223A,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-03-10 12:35:19-06,0,1,"Source ID: FU313069223.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU313069223&t=) provided by -the source." -996,BOGZ1FU313069223Q,2023-02-27,2023-02-27,"Federal Government; Loans to Finance Companies -(Chrysler Financial); Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:56:11-06,0,1,"Source ID: FU313069223.Q For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU313069223&t=) provided by -the source." -997,BOGZ1FA613063003A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2022-06-09 12:31:55-05,0,1,"Source ID: FA613063003.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613063003&t=) provided by -the source." -998,BOGZ1FU613063003A,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Transactions",1946-01-01,2021-01-01,Annual,A,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-06-09 12:20:30-05,0,1,"Source ID: FU613063003.A For more information about the Flow of Funds tables, see the Financial -Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, -the source may make major data and structural revisions to the series and tables. These changes are -available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In -the Financial Accounts, the source identifies each series by a string of patterned letters and -numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063003&t=) provided by -the source." -999,BOGZ1FU613063003Q,2023-02-27,2023-02-27,"Finance Companies; Corporate and Foreign Bonds; -Asset, Transactions",1946-10-01,2022-07-01,Quarterly,Q,Millions of Dollars,Mil. of $,Not Seasonally Adjusted,NSA,2022-12-09 13:56:05-06,0,1,"Source ID: FU613063003.Q For more information about the Flow of Funds tables, see the Financial +993,SMU28000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Mississippi",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:09:44-05,0,1,No description provided. +994,SMU41000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oregon",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:47:06-05,0,1,No description provided. +995,SMU41000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Oregon",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:07:04-05,0,1,No description provided. +996,SMU36153805552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Buffalo-Cheektowaga-Niagara Falls, NY +(MSA)",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:08:30-05,0,1,No description provided. +997,SMU26000005552000001,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Michigan",1990-01-01,2023-01-01,Monthly,M,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 03:49:26-05,0,1,No description provided. +998,SMU01000005552000001A,2023-03-20,2023-03-20,"All Employees: Financial Activities: Finance and +Insurance in Alabama",1990-01-01,2022-01-01,Annual,A,Thousands of Persons,Thous. of Persons,Not Seasonally Adjusted,NSA,2023-03-14 04:15:05-05,0,1,No description provided. +999,BOGZ1FA613065000Q,2023-03-20,2023-03-20,"Finance Companies; Total Mortgages; Asset, +Transactions",1946-10-01,2022-10-01,Quarterly,Q,Millions of Dollars,Mil. of $,Seasonally Adjusted Annual Rate,SAAR,2023-03-09 15:23:33-06,0,1,"Source ID: FA613065000.Q For more information about the Flow of Funds tables, see the Financial Accounts Guide (https://www.federalreserve.gov/apps/fof/Default.aspx). With each quarterly release, the source may make major data and structural revisions to the series and tables. These changes are available in the Release Highlights (https://www.federalreserve.gov/apps/fof/FOFHighlight.aspx). In the Financial Accounts, the source identifies each series by a string of patterned letters and numbers. For a detailed description, including how this series is constructed, see the series -analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FU613063003&t=) provided by +analyzer (https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FA613065000&t=) provided by the source." diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].csv index e16c76dff888..dd9e27dccb60 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict1].csv @@ -1 +1,758 @@ -"" +,united_states-monthly-growth_same +1960-01-01,1.03448275862069 +1960-02-01,1.73010380622838 +1960-03-01,1.73010380622838 +1960-04-01,1.72413793103448 +1960-05-01,1.72413793103448 +1960-06-01,1.71821305841925 +1960-07-01,1.36986301369863 +1960-08-01,1.36986301369863 +1960-09-01,1.02389078498294 +1960-10-01,1.36054421768708 +1960-11-01,1.36054421768708 +1960-12-01,1.36054421768708 +1961-01-01,1.70648464163823 +1961-02-01,1.36054421768708 +1961-03-01,1.36054421768708 +1961-04-01,1.01694915254237 +1961-05-01,1.01694915254237 +1961-06-01,0.675675675675676 +1961-07-01,1.35135135135135 +1961-08-01,1.01351351351351 +1961-09-01,1.35135135135135 +1961-10-01,0.671140939597316 +1961-11-01,0.671140939597316 +1961-12-01,0.671140939597316 +1962-01-01,0.671140939597316 +1962-02-01,1.00671140939597 +1962-03-01,1.00671140939597 +1962-04-01,1.34228187919463 +1962-05-01,1.34228187919463 +1962-06-01,1.34228187919463 +1962-07-01,1.0 +1962-08-01,1.33779264214047 +1962-09-01,1.33333333333333 +1962-10-01,1.33333333333333 +1962-11-01,1.33333333333333 +1962-12-01,1.33333333333333 +1963-01-01,1.33333333333333 +1963-02-01,0.996677740863788 +1963-03-01,1.32890365448505 +1963-04-01,0.99337748344371 +1963-05-01,0.99337748344371 +1963-06-01,1.32450331125828 +1963-07-01,1.32013201320132 +1963-08-01,1.32013201320132 +1963-09-01,0.986842105263159 +1963-10-01,1.31578947368421 +1963-11-01,1.31578947368421 +1963-12-01,1.64473684210526 +1964-01-01,1.64473684210526 +1964-02-01,1.64473684210526 +1964-03-01,1.31147540983607 +1964-04-01,1.31147540983607 +1964-05-01,1.31147540983607 +1964-06-01,1.30718954248366 +1964-07-01,1.30293159609121 +1964-08-01,0.977198697068405 +1964-09-01,1.30293159609121 +1964-10-01,0.974025974025975 +1964-11-01,1.2987012987013 +1964-12-01,0.970873786407768 +1965-01-01,0.970873786407768 +1965-02-01,0.970873786407768 +1965-03-01,1.29449838187702 +1965-04-01,1.61812297734628 +1965-05-01,1.61812297734628 +1965-06-01,1.93548387096774 +1965-07-01,1.60771704180064 +1965-08-01,1.93548387096774 +1965-09-01,1.60771704180064 +1965-10-01,1.92926045016077 +1965-11-01,1.6025641025641 +1965-12-01,1.92307692307692 +1966-01-01,1.92307692307692 +1966-02-01,2.56410256410257 +1966-03-01,2.55591054313099 +1966-04-01,2.86624203821656 +1966-05-01,2.86624203821656 +1966-06-01,2.53164556962026 +1966-07-01,2.84810126582279 +1966-08-01,3.48101265822785 +1966-09-01,3.48101265822785 +1966-10-01,3.78548895899054 +1966-11-01,3.78548895899054 +1966-12-01,3.45911949685535 +1967-01-01,3.45911949685535 +1967-02-01,2.8125 +1967-03-01,2.80373831775701 +1967-04-01,2.47678018575852 +1967-05-01,2.78637770897833 +1967-06-01,2.77777777777778 +1967-07-01,2.76923076923077 +1967-08-01,2.44648318042814 +1967-09-01,2.75229357798165 +1967-10-01,2.43161094224924 +1967-11-01,2.7355623100304 +1967-12-01,3.03951367781155 +1968-01-01,3.64741641337386 +1968-02-01,3.95136778115502 +1968-03-01,3.93939393939394 +1968-04-01,3.9274924471299 +1968-05-01,3.9156626506024 +1968-06-01,4.20420420420419 +1968-07-01,4.49101796407184 +1968-08-01,4.47761194029849 +1968-09-01,4.4642857142857 +1968-10-01,4.74777448071215 +1968-11-01,4.73372781065088 +1968-12-01,4.7197640117994 +1969-01-01,4.39882697947213 +1969-02-01,4.6783625730994 +1969-03-01,5.2478134110787 +1969-04-01,5.52325581395349 +1969-05-01,5.5072463768116 +1969-06-01,5.47550432276658 +1969-07-01,5.44412607449857 +1969-08-01,5.71428571428572 +1969-09-01,5.6980056980057 +1969-10-01,5.6657223796034 +1969-11-01,5.93220338983051 +1969-12-01,6.19718309859156 +1970-01-01,6.17977528089888 +1970-02-01,6.14525139664805 +1970-03-01,5.81717451523546 +1970-04-01,6.06060606060607 +1970-05-01,6.04395604395605 +1970-06-01,6.01092896174864 +1970-07-01,5.97826086956522 +1970-08-01,5.40540540540541 +1970-09-01,5.66037735849057 +1970-10-01,5.63002680965148 +1970-11-01,5.6 +1970-12-01,5.57029177718833 +1971-01-01,5.2910052910053 +1971-02-01,5.0 +1971-03-01,4.71204188481676 +1971-04-01,4.15584415584416 +1971-05-01,4.40414507772021 +1971-06-01,4.63917525773196 +1971-07-01,4.35897435897435 +1971-08-01,4.6153846153846 +1971-09-01,4.08163265306121 +1971-10-01,3.80710659898476 +1971-11-01,3.28282828282827 +1971-12-01,3.26633165829145 +1972-01-01,3.26633165829145 +1972-02-01,3.50877192982455 +1972-03-01,3.49999999999999 +1972-04-01,3.49127182044887 +1972-05-01,3.22580645161289 +1972-06-01,2.70935960591132 +1972-07-01,2.94840294840295 +1972-08-01,2.94117647058824 +1972-09-01,3.18627450980392 +1972-10-01,3.42298288508558 +1972-11-01,3.66748166259169 +1972-12-01,3.40632603406326 +1973-01-01,3.64963503649635 +1973-02-01,3.87409200968523 +1973-03-01,4.58937198067633 +1973-04-01,5.06024096385543 +1973-05-01,5.52884615384616 +1973-06-01,5.99520383693046 +1973-07-01,5.72792362768497 +1973-08-01,7.38095238095239 +1973-09-01,7.36342042755345 +1973-10-01,7.80141843971632 +1973-11-01,8.25471698113208 +1973-12-01,8.70588235294118 +1974-01-01,9.38967136150236 +1974-02-01,10.02331002331 +1974-03-01,10.392609699769 +1974-04-01,10.0917431192661 +1974-05-01,10.7061503416856 +1974-06-01,10.8597285067873 +1974-07-01,11.5124153498871 +1974-08-01,10.8647450110865 +1974-09-01,11.9469026548673 +1974-10-01,12.0614035087719 +1974-11-01,12.2004357298475 +1974-12-01,12.3376623376623 +1975-01-01,11.8025751072961 +1975-02-01,11.228813559322 +1975-03-01,10.2510460251046 +1975-04-01,10.2083333333333 +1975-05-01,9.4650205761317 +1975-06-01,9.38775510204082 +1975-07-01,9.71659919028341 +1975-08-01,8.60000000000001 +1975-09-01,7.90513833992096 +1975-10-01,7.43639921722114 +1975-11-01,7.37864077669904 +1975-12-01,6.9364161849711 +1976-01-01,6.71785028790788 +1976-02-01,6.28571428571429 +1976-03-01,6.07210626185959 +1976-04-01,6.0491493383743 +1976-05-01,6.20300751879698 +1976-06-01,5.97014925373133 +1976-07-01,5.35055350553504 +1976-08-01,5.70902394106812 +1976-09-01,5.49450549450548 +1976-10-01,5.46448087431692 +1976-11-01,4.88245931283904 +1976-12-01,4.86486486486485 +1977-01-01,5.21582733812948 +1977-02-01,5.91397849462364 +1977-03-01,6.44007155635061 +1977-04-01,6.951871657754 +1977-05-01,6.72566371681417 +1977-06-01,6.8661971830986 +1977-07-01,6.83012259194396 +1977-08-01,6.62020905923346 +1977-09-01,6.59722222222223 +1977-10-01,6.39032815198619 +1977-11-01,6.72413793103449 +1977-12-01,6.70103092783506 +1978-01-01,6.83760683760684 +1978-02-01,6.42978003384095 +1978-03-01,6.5546218487395 +1978-04-01,6.50000000000001 +1978-05-01,6.96517412935324 +1978-06-01,7.41350906095552 +1978-07-01,7.70491803278689 +1978-08-01,7.84313725490197 +1978-09-01,8.30618892508144 +1978-10-01,8.92857142857144 +1978-11-01,8.88529886914379 +1978-12-01,9.01771336553946 +1979-01-01,9.28000000000001 +1979-02-01,9.85691573926867 +1979-03-01,10.0946372239748 +1979-04-01,10.4851330203443 +1979-05-01,10.8527131782946 +1979-06-01,10.8895705521472 +1979-07-01,11.2633181126332 +1979-08-01,11.8181818181818 +1979-09-01,12.1804511278195 +1979-10-01,12.0715350223547 +1979-11-01,12.6112759643917 +1979-12-01,13.2939438700148 +1980-01-01,13.909224011713 +1980-02-01,14.1823444283647 +1980-03-01,14.756446991404 +1980-04-01,14.7308781869689 +1980-05-01,14.4055944055944 +1980-06-01,14.3845089903181 +1980-07-01,13.1326949384405 +1980-08-01,12.8726287262873 +1980-09-01,12.6005361930295 +1980-10-01,12.7659574468085 +1980-11-01,12.6482213438735 +1980-12-01,12.51629726206 +1981-01-01,11.8251928020566 +1981-02-01,11.4068441064639 +1981-03-01,10.4868913857678 +1981-04-01,10.0 +1981-05-01,9.77995110024451 +1981-06-01,9.55259975816204 +1981-07-01,10.7617896009674 +1981-08-01,10.8043217286915 +1981-09-01,10.952380952381 +1981-10-01,10.1415094339623 +1981-11-01,9.59064327485381 +1981-12-01,8.92236384704519 +1982-01-01,8.39080459770114 +1982-02-01,7.62229806598407 +1982-03-01,6.77966101694915 +1982-04-01,6.50953984287317 +1982-05-01,6.68151447661469 +1982-06-01,7.06401766004414 +1982-07-01,6.44104803493449 +1982-08-01,5.85048754062838 +1982-09-01,5.04291845493562 +1982-10-01,5.1391862955032 +1982-11-01,4.58911419423692 +1982-12-01,3.82978723404256 +1983-01-01,3.71155885471899 +1983-02-01,3.48837209302326 +1983-03-01,3.5978835978836 +1983-04-01,3.89884088514226 +1983-05-01,3.5490605427975 +1983-06-01,2.57731958762887 +1983-07-01,2.46153846153846 +1983-08-01,2.55885363357216 +1983-09-01,2.86006128702757 +1983-10-01,2.85132382892057 +1983-11-01,3.26530612244898 +1983-12-01,3.79098360655737 +1984-01-01,4.1922290388548 +1984-02-01,4.59652706843718 +1984-03-01,4.80081716036773 +1984-04-01,4.56389452332656 +1984-05-01,4.23387096774194 +1984-06-01,4.22110552763818 +1984-07-01,4.2042042042042 +1984-08-01,4.29141716566866 +1984-09-01,4.27010923535255 +1984-10-01,4.25742574257425 +1984-11-01,4.05138339920948 +1984-12-01,3.94866732477789 +1985-01-01,3.53287536800785 +1985-02-01,3.515625 +1985-03-01,3.70370370370371 +1985-04-01,3.68574199806014 +1985-05-01,3.77176015473887 +1985-06-01,3.76084860173579 +1985-07-01,3.55427473583095 +1985-08-01,3.34928229665073 +1985-09-01,3.14285714285714 +1985-10-01,3.22886989553657 +1985-11-01,3.51377018043686 +1985-12-01,3.79867046533714 +1986-01-01,3.88625592417063 +1986-02-01,3.1132075471698 +1986-03-01,2.25563909774436 +1986-04-01,1.59027128157157 +1986-05-01,1.49114631873253 +1986-06-01,1.76579925650557 +1986-07-01,1.57699443413728 +1986-08-01,1.57407407407406 +1986-09-01,1.75438596491229 +1986-10-01,1.47194112235511 +1986-11-01,1.28440366972477 +1986-12-01,1.09789569990851 +1987-01-01,1.45985401459854 +1987-02-01,2.10430009149132 +1987-03-01,3.03308823529411 +1987-04-01,3.77532228360957 +1987-05-01,3.85674931129477 +1987-06-01,3.65296803652968 +1987-07-01,3.9269406392694 +1987-08-01,4.28441203281677 +1987-09-01,4.35571687840289 +1987-10-01,4.53309156844969 +1987-11-01,4.52898550724636 +1987-12-01,4.43438914027149 +1988-01-01,4.04676258992805 +1988-02-01,3.94265232974909 +1988-03-01,3.92506690454951 +1988-04-01,3.9041703637977 +1988-05-01,3.89036251105217 +1988-06-01,3.9647577092511 +1988-07-01,4.13005272407734 +1988-08-01,4.02097902097902 +1988-09-01,4.17391304347826 +1988-10-01,4.24978317432784 +1988-11-01,4.24610051993069 +1988-12-01,4.41941074523398 +1989-01-01,4.66724286949006 +1989-02-01,4.82758620689656 +1989-03-01,4.97854077253219 +1989-04-01,5.12382578992315 +1989-05-01,5.36170212765957 +1989-06-01,5.16949152542374 +1989-07-01,4.97890295358649 +1989-08-01,4.70588235294118 +1989-09-01,4.34056761268782 +1989-10-01,4.49251247920134 +1989-11-01,4.65502909393182 +1989-12-01,4.6473029045643 +1990-01-01,5.20231213872832 +1990-02-01,5.26315789473685 +1990-03-01,5.233033524121 +1990-04-01,4.71161657189277 +1990-05-01,4.36187399030693 +1990-06-01,4.67365028203062 +1990-07-01,4.82315112540193 +1990-08-01,5.61797752808989 +1990-09-01,6.16 +1990-10-01,6.28980891719745 +1990-11-01,6.27482128673552 +1990-12-01,6.10626486915148 +1991-01-01,5.65149136577707 +1991-02-01,5.3125 +1991-03-01,4.89510489510491 +1991-04-01,4.88750969743985 +1991-05-01,4.95356037151703 +1991-06-01,4.69591993841416 +1991-07-01,4.44785276073618 +1991-08-01,3.79939209726442 +1991-09-01,3.39110776186887 +1991-10-01,2.92134831460675 +1991-11-01,2.98953662182362 +1991-12-01,3.0642750373692 +1992-01-01,2.60029717682022 +1992-02-01,2.81899109792283 +1992-03-01,3.1851851851852 +1992-04-01,3.18047337278108 +1992-05-01,3.02359882005901 +1992-06-01,3.08823529411763 +1992-07-01,3.15712187958885 +1992-08-01,3.14787701317717 +1992-09-01,2.98833819241984 +1992-10-01,3.20232896652111 +1992-11-01,3.04789550072568 +1992-12-01,2.90065264684554 +1993-01-01,3.25850832729905 +1993-02-01,3.24675324675326 +1993-03-01,3.08686288585784 +1993-04-01,3.2258064516129 +1993-05-01,3.22118826055833 +1993-06-01,2.99572039942941 +1993-07-01,2.77580071174378 +1993-08-01,2.76792051100072 +1993-09-01,2.689313517339 +1993-10-01,2.75035260930886 +1993-11-01,2.67605633802819 +1993-12-01,2.74841437632136 +1994-01-01,2.52454417952314 +1994-02-01,2.51572327044024 +1994-03-01,2.50696378830084 +1994-04-01,2.36111111111111 +1994-05-01,2.28848821081832 +1994-06-01,2.49307479224375 +1994-07-01,2.77008310249306 +1994-08-01,2.90055248618783 +1994-09-01,2.96347346657477 +1994-10-01,2.60809883321896 +1994-11-01,2.67489711934154 +1994-12-01,2.67489711934154 +1995-01-01,2.80437756497949 +1995-02-01,2.86298568507159 +1995-03-01,2.85326086956522 +1995-04-01,3.05291723202172 +1995-05-01,3.1864406779661 +1995-06-01,3.04054054054055 +1995-07-01,2.76280323450136 +1995-08-01,2.61744966442954 +1995-09-01,2.54350736278447 +1995-10-01,2.80936454849497 +1995-11-01,2.60521042084169 +1995-12-01,2.53841015364063 +1996-01-01,2.72787757817697 +1996-02-01,2.65076209410206 +1996-03-01,2.84015852047556 +1996-04-01,2.89664252797894 +1996-05-01,2.89093298291722 +1996-06-01,2.75409836065573 +1996-07-01,2.95081967213114 +1996-08-01,2.87769784172662 +1996-09-01,3.00261096605744 +1996-10-01,2.99284320104101 +1996-11-01,3.25520833333334 +1996-12-01,3.32247557003257 +1997-01-01,3.0440414507772 +1997-02-01,3.03421562298256 +1997-03-01,2.7617212588311 +1997-04-01,2.49520153550862 +1997-05-01,2.23499361430395 +1997-06-01,2.29738353541801 +1997-07-01,2.22929936305732 +1997-08-01,2.22504767959313 +1997-09-01,2.15462610899872 +1997-10-01,2.08464939987364 +1997-11-01,1.82849936948297 +1997-12-01,1.70239596469106 +1998-01-01,1.5713387806411 +1998-02-01,1.44110275689222 +1998-03-01,1.37499999999999 +1998-04-01,1.43570536828965 +1998-05-01,1.68644597126797 +1998-06-01,1.68434185901434 +1998-07-01,1.6822429906542 +1998-08-01,1.61691542288557 +1998-09-01,1.48883374689826 +1998-10-01,1.4851485148515 +1998-11-01,1.54798761609908 +1998-12-01,1.61190328580284 +1999-01-01,1.67079207920794 +1999-02-01,1.6059295861643 +1999-03-01,1.72626387176327 +1999-04-01,2.27692307692307 +1999-05-01,2.08845208845208 +1999-06-01,1.96319018404907 +1999-07-01,2.14460784313725 +1999-08-01,2.26438188494492 +1999-09-01,2.62836185819072 +1999-10-01,2.56097560975609 +1999-11-01,2.62195121951219 +1999-12-01,2.68456375838926 +2000-01-01,2.73889227023737 +2000-02-01,3.22188449848025 +2000-03-01,3.75757575757575 +2000-04-01,3.06859205776174 +2000-05-01,3.18892900120338 +2000-06-01,3.73044524669075 +2000-07-01,3.65926814637075 +2000-08-01,3.41113105924597 +2000-09-01,3.45443716497914 +2000-10-01,3.44827586206897 +2000-11-01,3.44622697563873 +2000-12-01,3.38680926916221 +2001-01-01,3.73222748815164 +2001-02-01,3.53356890459364 +2001-03-01,2.92056074766355 +2001-04-01,3.26911850554583 +2001-05-01,3.61516034985422 +2001-06-01,3.24825986078885 +2001-07-01,2.7199074074074 +2001-08-01,2.7199074074074 +2001-09-01,2.64824409902132 +2001-10-01,2.12643678160919 +2001-11-01,1.89546237794372 +2001-12-01,1.55172413793103 +2002-01-01,1.14220445459737 +2002-02-01,1.13765642775882 +2002-03-01,1.47559591373441 +2002-04-01,1.63934426229508 +2002-05-01,1.1817670230726 +2002-06-01,1.06741573033709 +2002-07-01,1.46478873239436 +2002-08-01,1.80281690140844 +2002-09-01,1.51430173864273 +2002-10-01,2.02588632526732 +2002-11-01,2.19842164599775 +2002-12-01,2.37691001697794 +2003-01-01,2.5974025974026 +2003-02-01,2.98087739032619 +2003-03-01,3.0201342281879 +2003-04-01,2.22469410456062 +2003-05-01,2.05784204671857 +2003-06-01,2.11228460255697 +2003-07-01,2.10993892282067 +2003-08-01,2.15827338129497 +2003-09-01,2.32044198895027 +2003-10-01,2.04081632653061 +2003-11-01,1.7650303364589 +2003-12-01,1.87949143173024 +2004-01-01,1.92625206384149 +2004-02-01,1.69306389950846 +2004-03-01,1.73724212812162 +2004-04-01,2.28509249183896 +2004-05-01,3.05177111716622 +2004-06-01,3.26619488296135 +2004-07-01,2.99075584556824 +2004-08-01,2.65438786565547 +2004-09-01,2.53779697624191 +2004-10-01,3.18918918918919 +2004-11-01,3.52303523035231 +2004-12-01,3.25556158437331 +2005-01-01,2.96976241900649 +2005-02-01,3.0075187969925 +2005-03-01,3.14834578441835 +2005-04-01,3.51063829787233 +2005-05-01,2.80274986779483 +2005-06-01,2.53031101739589 +2005-07-01,3.16789862724393 +2005-08-01,3.64116094986808 +2005-09-01,4.68667719852555 +2005-10-01,4.34782608695652 +2005-11-01,3.45549738219894 +2005-12-01,3.41565948502364 +2006-01-01,3.98531725222863 +2006-02-01,3.59749739311782 +2006-03-01,3.3626487325401 +2006-04-01,3.54573484069888 +2006-05-01,4.16666666666665 +2006-06-01,4.31876606683804 +2006-07-01,4.1453428863869 +2006-08-01,3.81873727087576 +2006-09-01,2.06237424547282 +2006-10-01,1.30522088353415 +2006-11-01,1.97368421052632 +2006-12-01,2.54065040650407 +2007-01-01,2.07564296520424 +2007-02-01,2.41519879214898 +2007-03-01,2.77877877877878 +2007-04-01,2.57369727047146 +2007-05-01,2.69086419753088 +2007-06-01,2.68703794972894 +2007-07-01,2.35823095823096 +2007-08-01,1.97008337420303 +2007-09-01,2.75505174963037 +2007-10-01,3.53617443012883 +2007-11-01,4.30620347394541 +2007-12-01,4.0812685827552 +2008-01-01,4.28029404790135 +2008-02-01,4.02655541304871 +2008-03-01,3.98145623125168 +2008-04-01,3.93688977482752 +2008-05-01,4.17554304180352 +2008-06-01,5.02179004761172 +2008-07-01,5.60012290025396 +2008-08-01,5.37185511526235 +2008-09-01,4.9369274305722 +2008-10-01,3.65518627713749 +2008-11-01,1.06957469180737 +2008-12-01,0.0914129006455893 +2009-01-01,0.0298465036952666 +2009-02-01,0.236191088037882 +2009-03-01,-0.383556254917384 +2009-04-01,-0.736885715216724 +2009-05-01,-1.28143579895861 +2009-06-01,-1.42677604368987 +2009-07-01,-2.09716135367605 +2009-08-01,-1.48434861196061 +2009-09-01,-1.28620596664275 +2009-10-01,-0.182848277486101 +2009-11-01,1.83829586913028 +2009-12-01,2.72133112620585 +2010-01-01,2.62570864295763 +2010-02-01,2.14333177814537 +2010-03-01,2.31395944694395 +2010-04-01,2.23644719564809 +2010-05-01,2.02098608409396 +2010-06-01,1.05334897284567 +2010-07-01,1.23519277830146 +2010-08-01,1.1481045618392 +2010-09-01,1.14368265815928 +2010-10-01,1.17218760552695 +2010-11-01,1.14316091157028 +2010-12-01,1.49572352731431 +2011-01-01,1.63184685744875 +2011-02-01,2.10758462865817 +2011-03-01,2.68160326424087 +2011-04-01,3.16363085927646 +2011-05-01,3.56864578463458 +2011-06-01,3.55882825224234 +2011-07-01,3.62871598222108 +2011-08-01,3.77120817911978 +2011-09-01,3.8683568410403 +2011-10-01,3.5251999213574 +2011-11-01,3.39437759080085 +2011-12-01,2.96241884487108 +2012-01-01,2.92521671215085 +2012-02-01,2.87109878043822 +2012-03-01,2.65139819302177 +2012-04-01,2.30273981129894 +2012-05-01,1.7042537749376 +2012-06-01,1.66399376223851 +2012-07-01,1.40845070422536 +2012-08-01,1.69237899755015 +2012-09-01,1.99128208066498 +2012-10-01,2.16234359887113 +2012-11-01,1.76413384608586 +2012-12-01,1.74102236874756 +2013-01-01,1.59486466812257 +2013-02-01,1.97792350974904 +2013-03-01,1.47389621259677 +2013-04-01,1.06308538148945 +2013-05-01,1.36196505885168 +2013-06-01,1.75441654537688 +2013-07-01,1.9606816118444 +2013-08-01,1.51836755954321 +2013-09-01,1.18492526155215 +2013-10-01,0.963612704643408 +2013-11-01,1.23707220453391 +2013-12-01,1.50173561961839 +2014-01-01,1.57894736842106 +2014-02-01,1.12634925010552 +2014-03-01,1.51220287576309 +2014-04-01,1.95285789851675 +2014-05-01,2.12711154993668 +2014-06-01,2.07234137316707 +2014-07-01,1.9923286357643 +2014-08-01,1.69961133416282 +2014-09-01,1.65791867571505 +2014-10-01,1.66434021563205 +2014-11-01,1.32235518237088 +2014-12-01,0.756493269655739 +2015-01-01,-0.0893483130696457 +2015-02-01,-0.0251298018153031 +2015-03-01,-0.0736373908664181 +2015-04-01,-0.199517446176685 +2015-05-01,-0.0399327448507779 +2015-06-01,0.123771203685436 +2015-07-01,0.169569779643243 +2015-08-01,0.195079293005743 +2015-09-01,-0.0361297478059709 +2015-10-01,0.17057443573555 +2015-11-01,0.501797578667902 +2015-12-01,0.729519786041594 +2016-01-01,1.37308681383098 +2016-02-01,1.01779978016546 +2016-03-01,0.852536221142728 +2016-04-01,1.12511041889441 +2016-05-01,1.01932255419357 +2016-06-01,0.997326494523087 +2016-07-01,0.827138870498699 +2016-08-01,1.06287450276103 +2016-09-01,1.46378364748158 +2016-10-01,1.63598752091762 +2016-11-01,1.69253716250378 +2016-12-01,2.07462213296691 +2017-01-01,2.50004220905299 +2017-02-01,2.73795817148932 +2017-03-01,2.38061243344026 +2017-04-01,2.1996898784173 +2017-05-01,1.87487772084135 +2017-06-01,1.63348795525647 +2017-07-01,1.7279784563725 +2017-08-01,1.93897421205818 +2017-09-01,2.23296386500322 +2017-10-01,2.04112870197618 +2017-11-01,2.20258293868318 +2017-12-01,2.10908247456841 +2018-01-01,2.07050762027518 +2018-02-01,2.21179542123865 +2018-03-01,2.35971140397292 +2018-04-01,2.46274394333479 +2018-05-01,2.80101171480757 +2018-06-01,2.87154783531668 +2018-07-01,2.94951508664711 +2018-08-01,2.69918010418745 +2018-09-01,2.27697219419899 +2018-10-01,2.52246992860703 +2018-11-01,2.1766010321524 +2018-12-01,1.91015884863136 +2019-01-01,1.5512351381991 +2019-02-01,1.52013526593331 +2019-03-01,1.86252274056917 +2019-04-01,1.99643977553026 +2019-05-01,1.79022846876639 +2019-06-01,1.64848465607624 +2019-07-01,1.81146480639351 +2019-08-01,1.74977988942916 +2019-09-01,1.71130451316952 +2019-10-01,1.7640429444214 +2019-11-01,2.05127798189161 +2019-12-01,2.28512974012172 +2020-01-01,2.48657195525045 +2020-02-01,2.33487356394594 +2020-03-01,1.53932699191982 +2020-04-01,0.329096686336815 +2020-05-01,0.117926370210715 +2020-06-01,0.645733047555484 +2020-07-01,0.986081825303721 +2020-08-01,1.3096453823307 +2020-09-01,1.37132486105647 +2020-10-01,1.18206616772747 +2020-11-01,1.17453578426798 +2020-12-01,1.36200549471932 +2021-01-01,1.39976974156009 +2021-02-01,1.67621521737451 +2021-03-01,2.61976250895919 +2021-04-01,4.15969483870212 +2021-05-01,4.99270653759447 +2021-06-01,5.39145141332134 +2021-07-01,5.36547523938539 +2021-08-01,5.25127155487501 +2021-09-01,5.39034885507916 +2021-10-01,6.2218689033289 +2021-11-01,6.80900283980648 +2021-12-01,7.03640286554513 +2022-01-01,7.47987246828913 +2022-02-01,7.87106389773928 +2022-03-01,8.54245555484244 +2022-04-01,8.25862934088236 +2022-05-01,8.58151154367651 +2022-06-01,9.05975796478416 +2022-07-01,8.52481474562553 +2022-08-01,8.26269250311623 +2022-09-01,8.20166964383362 +2022-10-01,7.7454273308049 +2022-11-01,7.11032279419173 +2022-12-01,6.45440133141082 +2023-01-01,6.41014696885625 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].csv index e16c76dff888..480ef7db101c 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict2].csv @@ -1 +1,758 @@ -"" +,belgium-monthly-growth_same,united_states-monthly-growth_same +1960-01-01,1.42554952634967,1.03448275862069 +1960-02-01,1.11977971546582,1.73010380622838 +1960-03-01,1.00183823529408,1.73010380622838 +1960-04-01,0.789497842651247,1.72413793103448 +1960-05-01,0.49441494231825,1.72413793103448 +1960-06-01,0.337622045807141,1.71821305841925 +1960-07-01,0.0638686131386888,1.36986301369863 +1960-08-01,-0.526602505901591,1.36986301369863 +1960-09-01,-0.426381202939318,1.02389078498294 +1960-10-01,-0.217430693966272,1.36054421768708 +1960-11-01,-0.253118785029843,1.36054421768708 +1960-12-01,-0.17189903193703,1.36054421768708 +1961-01-01,0.136017410228529,1.70648464163823 +1961-02-01,0.290460197876019,1.36054421768708 +1961-03-01,0.582400582400602,1.36054421768708 +1961-04-01,0.692230622096746,1.01694915254237 +1961-05-01,0.974854227405259,1.01694915254237 +1961-06-01,1.00036376864314,0.675675675675676 +1961-07-01,1.6230509710951,1.35135135135135 +1961-08-01,1.93501277838628,1.01351351351351 +1961-09-01,1.56705539358603,1.35135135135135 +1961-10-01,1.07136371890319,0.671140939597316 +1961-11-01,1.04223309769801,0.671140939597316 +1961-12-01,1.00598151169113,0.671140939597316 +1962-01-01,0.977995110024417,0.671140939597316 +1962-02-01,0.905059281382919,1.00671140939597 +1962-03-01,1.03139419162216,1.00671140939597 +1962-04-01,1.51062867480777,1.34228187919463 +1962-05-01,2.50834611567263,1.34228187919463 +1962-06-01,2.88132540968842,1.34228187919463 +1962-07-01,1.98295199641097,1.0 +1962-08-01,0.510386819484238,1.33779264214047 +1962-09-01,0.834230355220654,1.33333333333333 +1962-10-01,1.27560186848727,1.33333333333333 +1962-11-01,1.28262624450623,1.33333333333333 +1962-12-01,1.15746971736206,1.33333333333333 +1963-01-01,1.50659133709982,1.33333333333333 +1963-02-01,2.77154901784913,0.996677740863788 +1963-03-01,2.6506671442644,1.32890365448505 +1963-04-01,1.96043486009625,0.99337748344371 +1963-05-01,0.431300061614313,0.99337748344371 +1963-06-01,0.00875196919310071,1.32450331125828 +1963-07-01,1.09977124758046,1.32013201320132 +1963-08-01,2.24498886414252,1.32013201320132 +1963-09-01,2.78444978204788,0.986842105263159 +1963-10-01,2.90934894447399,1.31578947368421 +1963-11-01,3.23237690400283,1.31578947368421 +1963-12-01,4.23097392229908,1.64473684210526 +1964-01-01,4.34667373442886,1.64473684210526 +1964-02-01,2.96735905044512,1.64473684210526 +1964-03-01,2.5996684986478,1.31147540983607 +1964-04-01,3.3123579793742,1.31147540983607 +1964-05-01,3.85626643295353,1.31147540983607 +1964-06-01,4.90942504594381,1.30718954248366 +1964-07-01,5.16056043860413,1.30293159609121 +1964-08-01,5.28883854665853,0.977198697068405 +1964-09-01,4.66505106456638,1.30293159609121 +1964-10-01,4.49922427167732,0.974025974025975 +1964-11-01,4.45226044436819,1.2987012987013 +1964-12-01,3.95711003318869,0.970873786407768 +1965-01-01,3.7253407840149,0.970873786407768 +1965-02-01,4.08543820986608,0.970873786407768 +1965-03-01,4.50641952214948,1.29449838187702 +1965-04-01,4.1451653836393,1.61812297734628 +1965-05-01,5.13080168776374,1.61812297734628 +1965-06-01,4.14581247914578,1.93548387096774 +1965-07-01,3.67428003972195,1.60771704180064 +1965-08-01,3.69910625620658,1.93548387096774 +1965-09-01,3.94443066236663,1.60771704180064 +1965-10-01,3.80237545364565,1.92926045016077 +1965-11-01,3.84362680683312,1.6025641025641 +1965-12-01,4.10936476751798,1.92307692307692 +1966-01-01,4.22006366827195,1.92307692307692 +1966-02-01,4.29153094462539,2.56410256410257 +1966-03-01,4.65381173216174,2.55591054313099 +1966-04-01,5.5397611891804,2.86624203821656 +1966-05-01,4.80012843152994,2.86624203821656 +1966-06-01,4.98998798558271,2.53164556962026 +1966-07-01,3.71966794380591,2.84810126582279 +1966-08-01,3.62301492299097,3.48101265822785 +1966-09-01,3.72315035799527,3.48101265822785 +1966-10-01,3.93325387365912,3.78548895899054 +1966-11-01,3.51154697880418,3.78548895899054 +1966-12-01,3.15301147979244,3.45911949685535 +1967-01-01,2.93703007518798,3.45911949685535 +1967-02-01,2.85647840141452,2.8125 +1967-03-01,2.71116245451739,2.80373831775701 +1967-04-01,2.0228750034689,2.47678018575852 +1967-05-01,1.83851645305841,2.78637770897833 +1967-06-01,1.62250695727602,2.77777777777778 +1967-07-01,2.6338407497453,2.76923076923077 +1967-08-01,3.10449069872261,2.44648318042814 +1967-09-01,3.25235947825142,2.75229357798165 +1967-10-01,3.15878240748282,2.43161094224924 +1967-11-01,3.38309486016957,2.7355623100304 +1967-12-01,3.24754622384313,3.03951367781155 +1968-01-01,3.28596802841919,3.64741641337386 +1968-02-01,3.11115486856353,3.95136778115502 +1968-03-01,2.90566408167272,3.93939393939394 +1968-04-01,2.77859309265234,3.9274924471299 +1968-05-01,2.57510729613736,3.9156626506024 +1968-06-01,2.75533054230356,4.20420420420419 +1968-07-01,2.82991344938245,4.49101796407184 +1968-08-01,2.52833478639929,4.47761194029849 +1968-09-01,2.36994219653179,4.4642857142857 +1968-10-01,2.52787389465591,4.74777448071215 +1968-11-01,2.26205310073803,4.73372781065088 +1968-12-01,2.51819226350055,4.7197640117994 +1969-01-01,2.74195089328364,4.39882697947213 +1969-02-01,3.12231452305932,4.6783625730994 +1969-03-01,3.57722026137555,5.2478134110787 +1969-04-01,3.63636363636366,5.52325581395349 +1969-05-01,3.84176492963104,5.5072463768116 +1969-06-01,3.74265681258292,5.47550432276658 +1969-07-01,3.92472101380748,5.44412607449857 +1969-08-01,3.97770219198792,5.71428571428572 +1969-09-01,3.86787125917562,5.6980056980057 +1969-10-01,3.8811287147277,5.6657223796034 +1969-11-01,4.33030274627426,5.93220338983051 +1969-12-01,4.3709722611376,6.19718309859156 +1970-01-01,4.35186907197326,6.17977528089888 +1970-02-01,4.23148148148146,6.14525139664805 +1970-03-01,4.26413704181247,5.81717451523546 +1970-04-01,4.38137227886471,6.06060606060607 +1970-05-01,4.08424908424908,6.04395604395605 +1970-06-01,3.84510000913327,6.01092896174864 +1970-07-01,4.004004004004,5.97826086956522 +1970-08-01,4.07087687414811,5.40540540540541 +1970-09-01,3.74195886563376,5.66037735849057 +1970-10-01,3.5105134915621,5.63002680965148 +1970-11-01,3.35100170694459,5.6 +1970-12-01,3.11409395973155,5.57029177718833 +1971-01-01,3.216895384067,5.2910052910053 +1971-02-01,3.70436173047882,5.0 +1971-03-01,3.55092306333364,4.71204188481676 +1971-04-01,3.69588173178456,4.15584415584416 +1971-05-01,3.93278198134789,4.40414507772021 +1971-06-01,4.11609498680738,4.63917525773196 +1971-07-01,4.20859217779337,4.35897435897435 +1971-08-01,4.38313105736489,4.6153846153846 +1971-09-01,5.14410480349345,4.08163265306121 +1971-10-01,5.23975588491717,3.80710659898476 +1971-11-01,5.29381084840052,3.28282828282827 +1971-12-01,5.57146576412391,3.26633165829145 +1972-01-01,5.51670551670551,3.26633165829145 +1972-02-01,5.25432651893964,3.50877192982455 +1972-03-01,4.94622463871779,3.49999999999999 +1972-04-01,4.76618035138328,3.49127182044887 +1972-05-01,4.70021156537627,3.22580645161289 +1972-06-01,5.49346133897104,2.70935960591132 +1972-07-01,5.63434905762084,2.94840294840295 +1972-08-01,5.41573702942454,2.94117647058824 +1972-09-01,5.38137725543735,3.18627450980392 +1972-10-01,5.70282121314005,3.42298288508558 +1972-11-01,6.11171038222754,3.66748166259169 +1972-12-01,6.40089335834609,3.40632603406326 +1973-01-01,6.85797665369648,3.64963503649635 +1973-02-01,6.87953555878083,3.87409200968523 +1973-03-01,6.97719366061076,4.58937198067633 +1973-04-01,7.21302003081665,5.06024096385543 +1973-05-01,7.45938671537055,5.52884615384616 +1973-06-01,6.94973343488194,5.99520383693046 +1973-07-01,6.62445662445664,5.72792362768497 +1973-08-01,6.93396226415092,7.38095238095239 +1973-09-01,6.72851654015556,7.36342042755345 +1973-10-01,6.83935892657471,7.80141843971632 +1973-11-01,6.71538248080658,8.25471698113208 +1973-12-01,7.29310186460914,8.70588235294118 +1974-01-01,7.53755120619028,9.38967136150236 +1974-02-01,8.32880680789425,10.02331002331 +1974-03-01,9.44896115627824,10.392609699769 +1974-04-01,10.3835444174975,10.0917431192661 +1974-05-01,11.5394936935325,10.7061503416856 +1974-06-01,12.5778885526082,10.8597285067873 +1974-07-01,13.6843038199061,11.5124153498871 +1974-08-01,14.6096162329069,10.8647450110865 +1974-09-01,15.6115550092194,11.9469026548673 +1974-10-01,15.8119658119658,12.0614035087719 +1974-11-01,16.3127329461732,12.2004357298475 +1974-12-01,15.6835887338413,12.3376623376623 +1975-01-01,15.6268517734699,11.8025751072961 +1975-02-01,15.4354003008524,11.228813559322 +1975-03-01,14.7573456586332,10.2510460251046 +1975-04-01,14.4031247457075,10.2083333333333 +1975-05-01,13.6979709680007,9.4650205761317 +1975-06-01,12.5009883766901,9.38775510204082 +1975-07-01,11.9903328915568,9.71659919028341 +1975-08-01,11.4155954122085,8.60000000000001 +1975-09-01,10.8680792891319,7.90513833992096 +1975-10-01,11.1830710143836,7.43639921722114 +1975-11-01,11.2079886727774,7.37864077669904 +1975-12-01,11.0264190039222,6.9364161849711 +1976-01-01,10.828025477707,6.71785028790788 +1976-02-01,9.86986209102228,6.28571428571429 +1976-03-01,9.8398603079343,6.07210626185959 +1976-04-01,9.63163763354821,6.0491493383743 +1976-05-01,9.51080379919032,6.20300751879698 +1976-06-01,9.29142215563534,5.97014925373133 +1976-07-01,9.12569039300237,5.35055350553504 +1976-08-01,8.71997328376554,5.70902394106812 +1976-09-01,9.19350343268309,5.49450549450548 +1976-10-01,8.20681556182552,5.46448087431692 +1976-11-01,7.45746671369936,4.88245931283904 +1976-12-01,7.4683435826397,4.86486486486485 +1977-01-01,7.60397830018082,5.21582733812948 +1977-02-01,8.14393939393941,5.91397849462364 +1977-03-01,7.36691163290915,6.44007155635061 +1977-04-01,6.96208152029124,6.951871657754 +1977-05-01,7.25557612624526,6.72566371681417 +1977-06-01,7.75459906698352,6.8661971830986 +1977-07-01,7.21208417008647,6.83012259194396 +1977-08-01,7.14099330260068,6.62020905923346 +1977-09-01,6.51725914477071,6.59722222222223 +1977-10-01,6.50274160383824,6.39032815198619 +1977-11-01,6.48685558210993,6.72413793103449 +1977-12-01,6.32427843803057,6.70103092783506 +1978-01-01,5.77262414923116,6.83760683760684 +1978-02-01,5.39571345175548,6.42978003384095 +1978-03-01,5.75959933222036,6.5546218487395 +1978-04-01,5.27189705271898,6.50000000000001 +1978-05-01,4.36462271905311,6.96517412935324 +1978-06-01,3.72488155530143,7.41350906095552 +1978-07-01,3.98240899096015,7.70491803278689 +1978-08-01,4.12404611138172,7.84313725490197 +1978-09-01,3.84522370012092,8.30618892508144 +1978-10-01,3.86935886091221,8.92857142857144 +1978-11-01,3.81532542481566,8.88529886914379 +1978-12-01,3.86427145708581,9.01771336553946 +1979-01-01,3.95614871306005,9.28000000000001 +1979-02-01,3.88510840322835,9.85691573926867 +1979-03-01,3.68587213891082,10.0946372239748 +1979-04-01,3.84858044164038,10.4851330203443 +1979-05-01,3.99306922895172,10.8527131782946 +1979-06-01,4.52827216884548,10.8895705521472 +1979-07-01,4.81672932330827,11.2633181126332 +1979-08-01,4.83393107749883,11.8181818181818 +1979-09-01,4.59555969569942,12.1804511278195 +1979-10-01,5.08828996282529,12.0715350223547 +1979-11-01,5.20382952439777,12.6112759643917 +1979-12-01,5.13490660312094,13.2939438700148 +1980-01-01,5.97585205563197,13.909224011713 +1980-02-01,6.42720824961114,14.1823444283647 +1980-03-01,6.55702228590328,14.756446991404 +1980-04-01,6.44208315860029,14.7308781869689 +1980-05-01,6.4616939177276,14.4055944055944 +1980-06-01,6.15866997277728,14.3845089903181 +1980-07-01,6.52791801865486,13.1326949384405 +1980-08-01,6.29500411785896,12.8726287262873 +1980-09-01,6.73826418891317,12.6005361930295 +1980-10-01,6.97079017741944,12.7659574468085 +1980-11-01,7.61162505136156,12.6482213438735 +1980-12-01,7.54684618989786,12.51629726206 +1981-01-01,6.96902654867258,11.8251928020566 +1981-02-01,7.09972552607503,11.4068441064639 +1981-03-01,7.59817351598174,10.4868913857678 +1981-04-01,7.40605618387448,10.0 +1981-05-01,7.00254638050203,9.77995110024451 +1981-06-01,7.34893848666302,9.55259975816204 +1981-07-01,7.81922525107603,10.7617896009674 +1981-08-01,8.06797853309479,10.8043217286915 +1981-09-01,8.39111111111112,10.952380952381 +1981-10-01,7.82103223533556,10.1415094339623 +1981-11-01,7.79424585876198,9.59064327485381 +1981-12-01,8.13488614635843,8.92236384704519 +1982-01-01,8.25577387107892,8.39080459770114 +1982-02-01,7.56876815308388,7.62229806598407 +1982-03-01,7.04464437277204,6.77966101694915 +1982-04-01,8.42391304347826,6.50953984287317 +1982-05-01,9.48495665476796,6.68151447661469 +1982-06-01,9.85463150777553,7.06401766004414 +1982-07-01,8.88223552894211,6.44104803493449 +1982-08-01,9.02168515146499,5.85048754062838 +1982-09-01,9.34886009512874,5.04291845493562 +1982-10-01,9.81865708217613,5.1391862955032 +1982-11-01,8.84826916855387,4.58911419423692 +1982-12-01,8.10159138402185,3.82978723404256 +1983-01-01,8.37446266518072,3.71155885471899 +1983-02-01,8.71982210927573,3.48837209302326 +1983-03-01,8.94386298763082,3.5978835978836 +1983-04-01,7.95739348370926,3.89884088514226 +1983-05-01,7.56093774258656,3.5490605427975 +1983-06-01,7.29342975842437,2.57731958762887 +1983-07-01,7.53131683470823,2.46153846153846 +1983-08-01,7.89553598542365,2.55885363357216 +1983-09-01,7.33463326833658,2.86006128702757 +1983-10-01,6.47128830705147,2.85132382892057 +1983-11-01,6.89552682419379,3.26530612244898 +1983-12-01,7.15241635687734,3.79098360655737 +1984-01-01,6.84589393271631,4.1922290388548 +1984-02-01,7.05624543462381,4.59652706843718 +1984-03-01,7.11790393013102,4.80081716036773 +1984-04-01,7.48694138131167,4.56389452332656 +1984-05-01,7.15935334872978,4.23387096774194 +1984-06-01,6.7546249820737,4.22110552763818 +1984-07-01,6.33612729080834,4.2042042042042 +1984-08-01,5.74162679425834,4.29141716566866 +1984-09-01,5.32420346562327,4.27010923535255 +1984-10-01,5.79851893251363,4.25742574257425 +1984-11-01,5.31071875434448,4.05138339920948 +1984-12-01,5.34276991396057,3.94866732477789 +1985-01-01,5.04606077272103,3.53287536800785 +1985-02-01,5.33569868995634,3.515625 +1985-03-01,5.73447479277076,3.70370370370371 +1985-04-01,5.45356371490281,3.68574199806014 +1985-05-01,5.33405172413794,3.77176015473887 +1985-06-01,5.0644814615798,3.76084860173579 +1985-07-01,5.06346025384103,3.55427473583095 +1985-08-01,4.65797178599949,3.34928229665073 +1985-09-01,4.55088231391801,3.14285714285714 +1985-10-01,4.0147913365029,3.22886989553657 +1985-11-01,4.21122112211222,3.51377018043686 +1985-12-01,4.03108944803057,3.79867046533714 +1986-01-01,3.48167539267017,3.88625592417063 +1986-02-01,2.50032387614974,3.1132075471698 +1986-03-01,1.52936640534635,2.25563909774436 +1986-04-01,1.44649257552482,1.59027128157157 +1986-05-01,1.11253196930945,1.49114631873253 +1986-06-01,1.22746451860376,1.76579925650557 +1986-07-01,0.673957273652062,1.57699443413728 +1986-08-01,0.762970498474048,1.57407407407406 +1986-09-01,0.913705583756344,1.75438596491229 +1986-10-01,0.850685627221942,1.47194112235511 +1986-11-01,0.544717506967319,1.28440366972477 +1986-12-01,0.58249968342409,1.09789569990851 +1987-01-01,0.885403491019483,1.45985401459854 +1987-02-01,1.01112234580384,2.10430009149132 +1987-03-01,1.26582278481012,3.03308823529411 +1987-04-01,1.41324921135647,3.77532228360957 +1987-05-01,1.69470089793854,3.85674931129477 +1987-06-01,1.67992926613618,3.65296803652968 +1987-07-01,2.03359858532273,3.9269406392694 +1987-08-01,2.25896012115095,4.28441203281677 +1987-09-01,1.72283702213278,4.35571687840289 +1987-10-01,1.72478912249778,4.53309156844969 +1987-11-01,1.49930704296335,4.52898550724636 +1987-12-01,1.44781568676822,4.43438914027149 +1988-01-01,0.952858575727171,4.04676258992805 +1988-02-01,1.02602602602604,3.94265232974909 +1988-03-01,0.962500000000016,3.92506690454951 +1988-04-01,0.958068931193248,3.9041703637977 +1988-05-01,0.994901131700056,3.89036251105217 +1988-06-01,1.05590062111801,3.9647577092511 +1988-07-01,1.01510274820501,4.13005272407734 +1988-08-01,0.913242009132395,4.02097902097902 +1988-09-01,1.19915935220669,4.17391304347826 +1988-10-01,1.3490099009901,4.24978317432784 +1988-11-01,1.5764647467726,4.24610051993069 +1988-12-01,1.92355423181931,4.41941074523398 +1989-01-01,2.38450074515648,4.66724286949006 +1989-02-01,2.5637849888531,4.82758620689656 +1989-03-01,2.76092608641821,4.97854077253219 +1989-04-01,2.98249938378111,5.12382578992315 +1989-05-01,2.99224233468784,5.36170212765957 +1989-06-01,3.01167793484943,5.16949152542374 +1989-07-01,3.02696078431372,4.97890295358649 +1989-08-01,3.15519139048552,4.70588235294118 +1989-09-01,3.55484974346447,4.34056761268782 +1989-10-01,3.63902796434242,4.49251247920134 +1989-11-01,3.58059391421236,4.65502909393182 +1989-12-01,3.6040423718495,4.6473029045643 +1990-01-01,3.60262008733623,5.20231213872832 +1990-02-01,3.38123415046494,5.26315789473685 +1990-03-01,3.39759036144579,5.233033524121 +1990-04-01,3.17137386309237,4.71161657189277 +1990-05-01,3.10856049736967,4.36187399030693 +1990-06-01,2.97136038186156,4.67365028203062 +1990-07-01,3.00939693112882,4.82315112540193 +1990-08-01,3.2602252519265,5.61797752808989 +1990-09-01,3.68054736345407,6.16 +1990-10-01,4.26534700129609,6.28980891719745 +1990-11-01,4.02312411514867,6.27482128673552 +1990-12-01,3.49042190621695,6.10626486915148 +1991-01-01,3.87542442336966,5.65149136577707 +1991-02-01,3.98317953510103,5.3125 +1991-03-01,3.29759962712652,4.89510489510491 +1991-04-01,2.88829602134325,4.88750969743985 +1991-05-01,3.22356215213358,4.95356037151703 +1991-06-01,3.62730327963843,4.69591993841416 +1991-07-01,3.82217090069286,4.44785276073618 +1991-08-01,3.53616532721011,3.79939209726442 +1991-09-01,2.53726248719988,3.39110776186887 +1991-10-01,2.2149395411911,2.92134831460675 +1991-11-01,2.84677327889305,2.98953662182362 +1991-12-01,2.79354985237338,3.0642750373692 +1992-01-01,2.27682596934174,2.60029717682022 +1992-02-01,2.25791956863625,2.81899109792283 +1992-03-01,2.70727580372252,3.1851851851852 +1992-04-01,2.76211950394588,3.18047337278108 +1992-05-01,2.77465738036397,3.02359882005901 +1992-06-01,2.63923059718183,3.08823529411763 +1992-07-01,2.54699143588032,3.15712187958885 +1992-08-01,2.07363051674427,3.14787701317717 +1992-09-01,2.31913004882381,2.98833819241984 +1992-10-01,2.16694306246546,3.20232896652111 +1992-11-01,2.22761358623733,3.04789550072568 +1992-12-01,2.39726027397259,2.90065264684554 +1993-01-01,2.84328851664094,3.25850832729905 +1993-02-01,2.77930352631002,3.24675324675326 +1993-03-01,2.9324546952224,3.08686288585784 +1993-04-01,2.9072956664838,3.2258064516129 +1993-05-01,2.68881845010384,3.22118826055833 +1993-06-01,2.37524515144913,2.99572039942941 +1993-07-01,2.5813449023861,2.77580071174378 +1993-08-01,3.18305268875612,2.76792051100072 +1993-09-01,2.81965079709358,2.689313517339 +1993-10-01,2.71615626014501,2.75035260930886 +1993-11-01,2.53505933117582,2.67605633802819 +1993-12-01,2.69716258496063,2.74841437632136 +1994-01-01,2.4217745392199,2.52454417952314 +1994-02-01,2.4903805044891,2.51572327044024 +1994-03-01,2.31540759709774,2.50696378830084 +1994-04-01,2.40938166311302,2.36111111111111 +1994-05-01,2.55455029270888,2.28848821081832 +1994-06-01,2.75649212430822,2.49307479224375 +1994-07-01,2.71727637978433,2.77008310249306 +1994-08-01,2.44261949884186,2.90055248618783 +1994-09-01,2.45754667229196,2.96347346657477 +1994-10-01,2.12810788032028,2.60809883321896 +1994-11-01,1.98842714360864,2.67489711934154 +1994-12-01,1.85943901670342,2.67489711934154 +1995-01-01,1.87277673153378,2.80437756497949 +1995-02-01,1.82500782146208,2.86298568507159 +1995-03-01,1.74157889248096,2.85326086956522 +1995-04-01,1.71767645221736,3.05291723202172 +1995-05-01,1.3803840166061,3.1864406779661 +1995-06-01,1.2739513205593,3.04054054054055 +1995-07-01,1.19402985074626,2.76280323450136 +1995-08-01,1.28468653648511,2.61744966442954 +1995-09-01,1.1941527691991,2.54350736278447 +1995-10-01,1.21724778213328,2.80936454849497 +1995-11-01,1.46482360222817,2.60521042084169 +1995-12-01,1.46452145214522,2.53841015364063 +1996-01-01,1.96158981205711,2.72787757817697 +1996-02-01,1.88135622049214,2.65076209410206 +1996-03-01,2.03700053154707,2.84015852047556 +1996-04-01,2.05313410122847,2.89664252797894 +1996-05-01,1.9116479510415,2.89093298291722 +1996-06-01,1.82181020613116,2.75409836065573 +1996-07-01,1.93114420153766,2.95081967213114 +1996-08-01,1.9398653294076,2.87769784172662 +1996-09-01,1.98444839009656,3.00261096605744 +1996-10-01,2.47263258051134,2.99284320104101 +1996-11-01,2.37992923826049,3.25520833333334 +1996-12-01,2.54501556359402,3.32247557003257 +1997-01-01,2.32393368286807,3.0440414507772 +1997-02-01,1.99406024607553,3.03421562298256 +1997-03-01,1.45562464669303,2.7617212588311 +1997-04-01,1.25564334085779,2.49520153550862 +1997-05-01,1.58281514980212,2.23499361430395 +1997-06-01,1.73802458668927,2.29738353541801 +1997-07-01,1.89526884739577,2.22929936305732 +1997-08-01,1.83447696401065,2.22504767959313 +1997-09-01,1.61380858826831,2.15462610899872 +1997-10-01,1.30124527773891,2.08464939987364 +1997-11-01,1.41100866163734,1.82849936948297 +1997-12-01,1.14349463115326,1.70239596469106 +1998-01-01,0.401606425702804,1.5713387806411 +1998-02-01,0.734886300610093,1.44110275689222 +1998-03-01,1.03078423178715,1.37499999999999 +1998-04-01,1.50480702243276,1.43570536828965 +1998-05-01,1.850306065665,1.68644597126797 +1998-06-01,1.58333333333334,1.68434185901434 +1998-07-01,1.01956461835216,1.6822429906542 +1998-08-01,0.440044004400458,1.61691542288557 +1998-09-01,0.82861483220552,1.48883374689826 +1998-10-01,0.856353591160204,1.4851485148515 +1998-11-01,0.578592092574742,1.54798761609908 +1998-12-01,0.579070729353378,1.61190328580284 +1999-01-01,0.965517241379322,1.67079207920794 +1999-02-01,0.977288368891947,1.6059295861643 +1999-03-01,1.22707845029643,1.72626387176327 +1999-04-01,1.16678105696637,2.27692307692307 +1999-05-01,0.846878841688293,2.08845208845208 +1999-06-01,0.751982499316385,1.96319018404907 +1999-07-01,0.654664484451715,2.14460784313725 +1999-08-01,0.91730558598027,2.26438188494492 +1999-09-01,1.17792083276262,2.62836185819072 +1999-10-01,1.30101342098057,2.56097560975609 +1999-11-01,1.53403643336526,2.62195121951219 +1999-12-01,1.93283070596298,2.68456375838926 +2000-01-01,1.77595628415299,2.73889227023737 +2000-02-01,1.93565976008724,3.22188449848025 +2000-03-01,2.24734404794333,3.75757575757575 +2000-04-01,2.04884667571235,3.06859205776174 +2000-05-01,2.16714072870108,3.18892900120338 +2000-06-01,2.74121319039217,3.73044524669075 +2000-07-01,2.79132791327914,3.65926814637075 +2000-08-01,2.87613620946954,3.41113105924597 +2000-09-01,3.37078651685393,3.45443716497914 +2000-10-01,2.97417872110314,3.44827586206897 +2000-11-01,3.08916767840281,3.44622697563873 +2000-12-01,2.50134480903711,3.38680926916221 +2001-01-01,2.20134228187921,3.73222748815164 +2001-02-01,2.25996255683339,3.53356890459364 +2001-03-01,2.09138137738112,2.92056074766355 +2001-04-01,2.77888578646458,3.26911850554583 +2001-05-01,3.12872862256397,3.61516034985422 +2001-06-01,2.93224144762912,3.24825986078885 +2001-07-01,2.64961771684683,2.7199074074074 +2001-08-01,2.67704074904392,2.7199074074074 +2001-09-01,2.25248821372446,2.64824409902132 +2001-10-01,2.35000656426413,2.12643678160919 +2001-11-01,2.13294948966239,1.89546237794372 +2001-12-01,2.1779060614012,1.55172413793103 +2002-01-01,2.90254793800893,1.14220445459737 +2002-02-01,2.62848175755197,1.13765642775882 +2002-03-01,2.6748434237996,1.47559591373441 +2002-04-01,1.8240620957309,1.63934426229508 +2002-05-01,1.33693276770792,1.1817670230726 +2002-06-01,0.872577954574608,1.06741573033709 +2002-07-01,1.28419160138693,1.46478873239436 +2002-08-01,1.25866940662729,1.80281690140844 +2002-09-01,1.25512295081969,1.51430173864273 +2002-10-01,1.29553617239611,2.02588632526732 +2002-11-01,1.10185778347215,2.19842164599775 +2002-12-01,1.37390857729842,2.37691001697794 +2003-01-01,1.21250797702617,2.5974025974026 +2003-02-01,1.74566768603466,2.98087739032619 +2003-03-01,1.75371711780403,3.0201342281879 +2003-04-01,1.47376445178505,2.22469410456062 +2003-05-01,1.04021311683371,2.05784204671857 +2003-06-01,1.61557053809947,2.11228460255697 +2003-07-01,1.470774692532,2.10993892282067 +2003-08-01,1.7884322678843,2.15827338129497 +2003-09-01,1.79610422463951,2.32044198895027 +2003-10-01,1.58287957452197,2.04081632653061 +2003-11-01,1.85020909897351,1.7650303364589 +2003-12-01,1.73527549081696,1.87949143173024 +2004-01-01,1.58890290037831,1.92625206384149 +2004-02-01,1.26487163431434,1.69306389950846 +2004-03-01,1.12401648557513,1.73724212812162 +2004-04-01,1.92813321647677,2.28509249183896 +2004-05-01,2.59887005649715,3.05177111716622 +2004-06-01,2.25338007010518,3.26619488296135 +2004-07-01,2.41159565163064,2.99075584556824 +2004-08-01,2.25545171339563,2.65438786565547 +2004-09-01,2.03777335984095,2.53779697624191 +2004-10-01,2.86711543256045,3.18918918918919 +2004-11-01,2.55070299863133,3.52303523035231 +2004-12-01,2.2783864541833,3.25556158437331 +2005-01-01,2.25918570009929,2.96976241900649 +2005-02-01,2.55998021271334,3.0075187969925 +2005-03-01,3.07521304186736,3.14834578441835 +2005-04-01,2.75150472914876,3.51063829787233 +2005-05-01,2.52080274106706,2.80274986779483 +2005-06-01,2.87708129285014,2.53031101739589 +2005-07-01,3.13567593948267,3.16789862724393 +2005-08-01,3.11966853521815,3.64116094986808 +2005-09-01,3.1539210910862,4.68667719852555 +2005-10-01,2.47212796897722,4.34782608695652 +2005-11-01,2.56005823829167,3.45549738219894 +2005-12-01,2.88496652465001,3.41565948502364 +2006-01-01,2.62199563000729,3.98531725222863 +2006-02-01,2.38755576992644,3.59749739311782 +2006-03-01,1.70141385094656,3.3626487325401 +2006-04-01,1.96054991034072,3.54573484069888 +2006-05-01,2.184292193841,4.16666666666665 +2006-06-01,1.86838034035463,4.31876606683804 +2006-07-01,1.60889624985212,4.1453428863869 +2006-08-01,1.63082013708342,3.81873727087576 +2006-09-01,1.22771809703695,2.06237424547282 +2006-10-01,1.20624408703879,1.30522088353415 +2006-11-01,1.49059505501007,1.97368421052632 +2006-12-01,1.64458116422149,2.54065040650407 +2007-01-01,1.66784953867991,2.07564296520424 +2007-02-01,1.76657637498529,2.41519879214898 +2007-03-01,1.81432610744581,2.77877877877878 +2007-04-01,1.78215500058624,2.57369727047146 +2007-05-01,1.28489662422615,2.69086419753088 +2007-06-01,1.28504672897196,2.68703794972894 +2007-07-01,1.37385027360577,2.35823095823096 +2007-08-01,1.11627906976744,1.97008337420303 +2007-09-01,1.50437317784257,2.75505174963037 +2007-10-01,2.24351483991587,3.53617443012883 +2007-11-01,2.94906166219838,4.30620347394541 +2007-12-01,3.08462344313818,4.0812685827552 +2008-01-01,3.45549738219895,4.28029404790135 +2008-02-01,3.64541141071635,4.02655541304871 +2008-03-01,4.38555889840312,3.98145623125168 +2008-04-01,4.15850708443727,3.93688977482752 +2008-05-01,5.21277822627149,4.17554304180352 +2008-06-01,5.80161476355248,5.02179004761172 +2008-07-01,5.90329619846102,5.60012290025396 +2008-08-01,5.39328426862927,5.37185511526235 +2008-09-01,5.46875,4.9369274305722 +2008-10-01,4.72,3.65518627713749 +2008-11-01,3.13632246376812,1.06957469180737 +2008-12-01,2.63098464317976,0.0914129006455893 +2009-01-01,2.31668915879443,0.0298465036952666 +2009-02-01,1.93166592228673,0.236191088037882 +2009-03-01,0.620773750138573,-0.383556254917384 +2009-04-01,0.597213005972119,-0.736885715216724 +2009-05-01,-0.372684423983347,-1.28143579895861 +2009-06-01,-1.10105745121552,-1.42677604368987 +2009-07-01,-1.6809456674981,-2.09716135367605 +2009-08-01,-0.774686306601212,-1.48434861196061 +2009-09-01,-1.19825708061002,-1.28620596664275 +2009-10-01,-0.971297609953072,-0.182848277486101 +2009-11-01,-0.120759688220447,1.83829586913028 +2009-12-01,0.26405545164485,2.72133112620585 +2010-01-01,0.615519894482311,2.62570864295763 +2010-02-01,0.701062547924215,2.14333177814537 +2010-03-01,1.65252836840367,2.31395944694395 +2010-04-01,1.7919964819701,2.23644719564809 +2010-05-01,2.27747827043679,2.02098608409396 +2010-06-01,2.45811287477954,1.05334897284567 +2010-07-01,2.57004191484667,1.23519277830146 +2010-08-01,2.3202111282164,1.1481045618392 +2010-09-01,2.91069459757441,1.14368265815928 +2010-10-01,3.00859598853869,1.17218760552695 +2010-11-01,2.86876236535503,1.14316091157028 +2010-12-01,3.10545374739383,1.49572352731431 +2011-01-01,3.22263491369892,1.63184685744875 +2011-02-01,3.38300881105189,2.10758462865817 +2011-03-01,3.5222715942343,2.68160326424087 +2011-04-01,3.41289556107571,3.16363085927646 +2011-05-01,3.34552495697075,3.56864578463458 +2011-06-01,3.67939752555138,3.55882825224234 +2011-07-01,3.7530917302936,3.62871598222108 +2011-08-01,3.60021493820528,3.77120817911978 +2011-09-01,3.55688879365759,3.8683568410403 +2011-10-01,3.57333903926395,3.5251999213574 +2011-11-01,3.84656480393203,3.39437759080085 +2011-12-01,3.48020434227331,2.96241884487108 +2012-01-01,3.65118001904964,2.92521671215085 +2012-02-01,3.66161616161614,2.87109878043822 +2012-03-01,3.36055276381911,2.65139819302177 +2012-04-01,3.18537859007832,2.30273981129894 +2012-05-01,2.81045071302175,1.7042537749376 +2012-06-01,2.25173809276746,1.66399376223851 +2012-07-01,2.3217247097844,1.40845070422536 +2012-08-01,2.85269709543568,1.69237899755015 +2012-09-01,2.75191392509828,1.99128208066498 +2012-10-01,2.7786385703956,2.16234359887113 +2012-11-01,2.26360736701307,1.76413384608586 +2012-12-01,2.23182145428367,1.74102236874756 +2013-01-01,1.46007759852971,1.59486466812257 +2013-02-01,1.18757612667479,1.97792350974904 +2013-03-01,1.1141497012053,1.47389621259677 +2013-04-01,1.00202429149799,1.06308538148945 +2013-05-01,1.18457021362761,1.36196505885168 +2013-06-01,1.59326161964685,1.75441654537688 +2013-07-01,1.50931928687196,1.9606816118444 +2013-08-01,1.00857286938981,1.51836755954321 +2013-09-01,0.896093435360451,1.18492526155215 +2013-10-01,0.633165829145742,0.963612704643408 +2013-11-01,0.814971325083009,1.23707220453391 +2013-12-01,0.965794768611665,1.50173561961839 +2014-01-01,1.13716413404448,1.57894736842106 +2014-02-01,0.973016350687128,1.12634925010552 +2014-03-01,0.891515576480027,1.51220287576309 +2014-04-01,0.621304739953891,1.95285789851675 +2014-05-01,0.360216129677808,2.12711154993668 +2014-06-01,0.269703326341014,2.07234137316707 +2014-07-01,0.339287496257866,1.9923286357643 +2014-08-01,0.0199700449326061,1.69961133416282 +2014-09-01,-0.119748528090994,1.65791867571505 +2014-10-01,0.0898831519025158,1.66434021563205 +2014-11-01,-0.109780439121751,1.32235518237088 +2014-12-01,-0.378636907134322,0.756493269655739 +2015-01-01,-0.646766169154247,-0.0893483130696457 +2015-02-01,-0.397377309755591,-0.0251298018153031 +2015-03-01,-0.397140587768092,-0.0736373908664181 +2015-04-01,0.288815854994539,-0.199517446176685 +2015-05-01,0.55832502492522,-0.0399327448507779 +2015-06-01,0.627615062761508,0.123771203685436 +2015-07-01,0.45748383888613,0.169569779643243 +2015-08-01,0.908455625436751,0.195079293005743 +2015-09-01,1.05904685782794,-0.0361297478059709 +2015-10-01,1.2771901816005,0.17057443573555 +2015-11-01,1.51863323009291,0.501797578667902 +2015-12-01,1.50030006001201,0.729519786041594 +2016-01-01,1.74261392088132,1.37308681383098 +2016-02-01,1.38639537203271,1.01779978016546 +2016-03-01,2.24282296650718,0.852536221142728 +2016-04-01,2.03574975173784,1.12511041889441 +2016-05-01,2.20107079119572,1.01932255419357 +2016-06-01,2.15820215820215,0.997326494523087 +2016-07-01,2.27700227700227,0.827138870498699 +2016-08-01,2.1567075583696,1.06287450276103 +2016-09-01,1.86851211072665,1.46378364748158 +2016-10-01,1.81280788177339,1.63598752091762 +2016-11-01,1.77147918511958,1.69253716250378 +2016-12-01,2.0299566417028,2.07462213296691 +2017-01-01,2.64789841519835,2.50004220905299 +2017-02-01,2.97097884899161,2.73795817148932 +2017-03-01,2.28136882129278,2.38061243344026 +2017-04-01,2.27737226277371,2.1996898784173 +2017-05-01,1.86263096623983,1.87487772084135 +2017-06-01,1.59899215040218,1.63348795525647 +2017-07-01,1.78104733326882,1.7279784563725 +2017-08-01,1.89812124733684,1.93897421205818 +2017-09-01,2.00892857142856,2.23296386500322 +2017-10-01,2.00309657441454,2.04112870197618 +2017-11-01,2.0694323566386,2.20258293868318 +2017-12-01,2.1344407958277,2.10908247456841 +2018-01-01,1.70694284618335,2.07050762027518 +2018-02-01,1.48084455909048,2.21179542123865 +2018-03-01,1.39166904966162,2.35971140397292 +2018-04-01,1.52250451993529,2.46274394333479 +2018-05-01,1.81904761904761,2.80101171480757 +2018-06-01,2.07935902327355,2.87154783531668 +2018-07-01,2.16833095577745,2.94951508664711 +2018-08-01,2.24291959703477,2.69918010418745 +2018-09-01,2.34991913233757,2.27697219419899 +2018-10-01,2.75116212883029,2.52246992860703 +2018-11-01,2.77593557555663,2.1766010321524 +2018-12-01,2.33569739952718,1.91015884863136 +2019-01-01,1.98943993965681,1.5512351381991 +2019-02-01,2.16531726605159,1.52013526593331 +2019-03-01,2.33148444110181,1.86252274056917 +2019-04-01,2.08079482613178,1.99643977553026 +2019-05-01,1.88943971564869,1.79022846876639 +2019-06-01,1.72864885068211,1.64848465607624 +2019-07-01,1.42418318905332,1.81146480639351 +2019-08-01,1.26417549730432,1.74977988942916 +2019-09-01,0.799405093883614,1.71130451316952 +2019-10-01,0.480103406887634,1.7640429444214 +2019-11-01,0.387168141592935,2.05127798189161 +2019-12-01,0.757715764184074,2.28512974012172 +2020-01-01,1.4051955255616,2.48657195525045 +2020-02-01,1.09657206044969,2.33487356394594 +2020-03-01,0.6247129076711,1.53932699191982 +2020-04-01,0.569277384996786,0.329096686336815 +2020-05-01,0.477370788579819,0.117926370210715 +2020-06-01,0.597042344080102,0.645733047555484 +2020-07-01,0.734214390602076,0.986081825303721 +2020-08-01,0.816963466128165,1.3096453823307 +2020-09-01,0.903725562523075,1.37132486105647 +2020-10-01,0.744280069833688,1.18206616772747 +2020-11-01,0.514233241505954,1.17453578426798 +2020-12-01,0.412692589875256,1.36200549471932 +2021-01-01,0.25526483726869,1.39976974156009 +2021-02-01,0.455746969282646,1.67621521737451 +2021-03-01,0.894732036884872,2.61976250895919 +2021-04-01,1.23253903040263,4.15969483870212 +2021-05-01,1.46185472818639,4.99270653759447 +2021-06-01,1.62527392257122,5.39145141332134 +2021-07-01,2.2685860058309,5.36547523938539 +2021-08-01,2.73149412728762,5.25127155487501 +2021-09-01,2.86053737890695,5.39034885507916 +2021-10-01,4.15906603429406,6.2218689033289 +2021-11-01,5.63676228759363,6.80900283980648 +2021-12-01,5.70828386153987,7.03640286554513 +2022-01-01,7.59297990361005,7.47987246828913 +2022-02-01,8.03919789492786,7.87106389773928 +2022-03-01,8.30694054836667,8.54245555484244 +2022-04-01,8.30627705627706,8.25862934088236 +2022-05-01,8.96893291310222,8.58151154367651 +2022-06-01,9.64959568733155,9.05975796478416 +2022-07-01,9.62138084632516,8.52481474562553 +2022-08-01,9.94416378622707,8.26269250311623 +2022-09-01,11.274988893825,8.20166964383362 +2022-10-01,12.2679509632224,7.7454273308049 +2022-11-01,10.6287295684511,7.11032279419173 +2022-12-01,10.350786245032,6.45440133141082 +2023-01-01,8.04597701149425,6.41014696885625 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].csv index e16c76dff888..dd9e27dccb60 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict3].csv @@ -1 +1,758 @@ -"" +,united_states-monthly-growth_same +1960-01-01,1.03448275862069 +1960-02-01,1.73010380622838 +1960-03-01,1.73010380622838 +1960-04-01,1.72413793103448 +1960-05-01,1.72413793103448 +1960-06-01,1.71821305841925 +1960-07-01,1.36986301369863 +1960-08-01,1.36986301369863 +1960-09-01,1.02389078498294 +1960-10-01,1.36054421768708 +1960-11-01,1.36054421768708 +1960-12-01,1.36054421768708 +1961-01-01,1.70648464163823 +1961-02-01,1.36054421768708 +1961-03-01,1.36054421768708 +1961-04-01,1.01694915254237 +1961-05-01,1.01694915254237 +1961-06-01,0.675675675675676 +1961-07-01,1.35135135135135 +1961-08-01,1.01351351351351 +1961-09-01,1.35135135135135 +1961-10-01,0.671140939597316 +1961-11-01,0.671140939597316 +1961-12-01,0.671140939597316 +1962-01-01,0.671140939597316 +1962-02-01,1.00671140939597 +1962-03-01,1.00671140939597 +1962-04-01,1.34228187919463 +1962-05-01,1.34228187919463 +1962-06-01,1.34228187919463 +1962-07-01,1.0 +1962-08-01,1.33779264214047 +1962-09-01,1.33333333333333 +1962-10-01,1.33333333333333 +1962-11-01,1.33333333333333 +1962-12-01,1.33333333333333 +1963-01-01,1.33333333333333 +1963-02-01,0.996677740863788 +1963-03-01,1.32890365448505 +1963-04-01,0.99337748344371 +1963-05-01,0.99337748344371 +1963-06-01,1.32450331125828 +1963-07-01,1.32013201320132 +1963-08-01,1.32013201320132 +1963-09-01,0.986842105263159 +1963-10-01,1.31578947368421 +1963-11-01,1.31578947368421 +1963-12-01,1.64473684210526 +1964-01-01,1.64473684210526 +1964-02-01,1.64473684210526 +1964-03-01,1.31147540983607 +1964-04-01,1.31147540983607 +1964-05-01,1.31147540983607 +1964-06-01,1.30718954248366 +1964-07-01,1.30293159609121 +1964-08-01,0.977198697068405 +1964-09-01,1.30293159609121 +1964-10-01,0.974025974025975 +1964-11-01,1.2987012987013 +1964-12-01,0.970873786407768 +1965-01-01,0.970873786407768 +1965-02-01,0.970873786407768 +1965-03-01,1.29449838187702 +1965-04-01,1.61812297734628 +1965-05-01,1.61812297734628 +1965-06-01,1.93548387096774 +1965-07-01,1.60771704180064 +1965-08-01,1.93548387096774 +1965-09-01,1.60771704180064 +1965-10-01,1.92926045016077 +1965-11-01,1.6025641025641 +1965-12-01,1.92307692307692 +1966-01-01,1.92307692307692 +1966-02-01,2.56410256410257 +1966-03-01,2.55591054313099 +1966-04-01,2.86624203821656 +1966-05-01,2.86624203821656 +1966-06-01,2.53164556962026 +1966-07-01,2.84810126582279 +1966-08-01,3.48101265822785 +1966-09-01,3.48101265822785 +1966-10-01,3.78548895899054 +1966-11-01,3.78548895899054 +1966-12-01,3.45911949685535 +1967-01-01,3.45911949685535 +1967-02-01,2.8125 +1967-03-01,2.80373831775701 +1967-04-01,2.47678018575852 +1967-05-01,2.78637770897833 +1967-06-01,2.77777777777778 +1967-07-01,2.76923076923077 +1967-08-01,2.44648318042814 +1967-09-01,2.75229357798165 +1967-10-01,2.43161094224924 +1967-11-01,2.7355623100304 +1967-12-01,3.03951367781155 +1968-01-01,3.64741641337386 +1968-02-01,3.95136778115502 +1968-03-01,3.93939393939394 +1968-04-01,3.9274924471299 +1968-05-01,3.9156626506024 +1968-06-01,4.20420420420419 +1968-07-01,4.49101796407184 +1968-08-01,4.47761194029849 +1968-09-01,4.4642857142857 +1968-10-01,4.74777448071215 +1968-11-01,4.73372781065088 +1968-12-01,4.7197640117994 +1969-01-01,4.39882697947213 +1969-02-01,4.6783625730994 +1969-03-01,5.2478134110787 +1969-04-01,5.52325581395349 +1969-05-01,5.5072463768116 +1969-06-01,5.47550432276658 +1969-07-01,5.44412607449857 +1969-08-01,5.71428571428572 +1969-09-01,5.6980056980057 +1969-10-01,5.6657223796034 +1969-11-01,5.93220338983051 +1969-12-01,6.19718309859156 +1970-01-01,6.17977528089888 +1970-02-01,6.14525139664805 +1970-03-01,5.81717451523546 +1970-04-01,6.06060606060607 +1970-05-01,6.04395604395605 +1970-06-01,6.01092896174864 +1970-07-01,5.97826086956522 +1970-08-01,5.40540540540541 +1970-09-01,5.66037735849057 +1970-10-01,5.63002680965148 +1970-11-01,5.6 +1970-12-01,5.57029177718833 +1971-01-01,5.2910052910053 +1971-02-01,5.0 +1971-03-01,4.71204188481676 +1971-04-01,4.15584415584416 +1971-05-01,4.40414507772021 +1971-06-01,4.63917525773196 +1971-07-01,4.35897435897435 +1971-08-01,4.6153846153846 +1971-09-01,4.08163265306121 +1971-10-01,3.80710659898476 +1971-11-01,3.28282828282827 +1971-12-01,3.26633165829145 +1972-01-01,3.26633165829145 +1972-02-01,3.50877192982455 +1972-03-01,3.49999999999999 +1972-04-01,3.49127182044887 +1972-05-01,3.22580645161289 +1972-06-01,2.70935960591132 +1972-07-01,2.94840294840295 +1972-08-01,2.94117647058824 +1972-09-01,3.18627450980392 +1972-10-01,3.42298288508558 +1972-11-01,3.66748166259169 +1972-12-01,3.40632603406326 +1973-01-01,3.64963503649635 +1973-02-01,3.87409200968523 +1973-03-01,4.58937198067633 +1973-04-01,5.06024096385543 +1973-05-01,5.52884615384616 +1973-06-01,5.99520383693046 +1973-07-01,5.72792362768497 +1973-08-01,7.38095238095239 +1973-09-01,7.36342042755345 +1973-10-01,7.80141843971632 +1973-11-01,8.25471698113208 +1973-12-01,8.70588235294118 +1974-01-01,9.38967136150236 +1974-02-01,10.02331002331 +1974-03-01,10.392609699769 +1974-04-01,10.0917431192661 +1974-05-01,10.7061503416856 +1974-06-01,10.8597285067873 +1974-07-01,11.5124153498871 +1974-08-01,10.8647450110865 +1974-09-01,11.9469026548673 +1974-10-01,12.0614035087719 +1974-11-01,12.2004357298475 +1974-12-01,12.3376623376623 +1975-01-01,11.8025751072961 +1975-02-01,11.228813559322 +1975-03-01,10.2510460251046 +1975-04-01,10.2083333333333 +1975-05-01,9.4650205761317 +1975-06-01,9.38775510204082 +1975-07-01,9.71659919028341 +1975-08-01,8.60000000000001 +1975-09-01,7.90513833992096 +1975-10-01,7.43639921722114 +1975-11-01,7.37864077669904 +1975-12-01,6.9364161849711 +1976-01-01,6.71785028790788 +1976-02-01,6.28571428571429 +1976-03-01,6.07210626185959 +1976-04-01,6.0491493383743 +1976-05-01,6.20300751879698 +1976-06-01,5.97014925373133 +1976-07-01,5.35055350553504 +1976-08-01,5.70902394106812 +1976-09-01,5.49450549450548 +1976-10-01,5.46448087431692 +1976-11-01,4.88245931283904 +1976-12-01,4.86486486486485 +1977-01-01,5.21582733812948 +1977-02-01,5.91397849462364 +1977-03-01,6.44007155635061 +1977-04-01,6.951871657754 +1977-05-01,6.72566371681417 +1977-06-01,6.8661971830986 +1977-07-01,6.83012259194396 +1977-08-01,6.62020905923346 +1977-09-01,6.59722222222223 +1977-10-01,6.39032815198619 +1977-11-01,6.72413793103449 +1977-12-01,6.70103092783506 +1978-01-01,6.83760683760684 +1978-02-01,6.42978003384095 +1978-03-01,6.5546218487395 +1978-04-01,6.50000000000001 +1978-05-01,6.96517412935324 +1978-06-01,7.41350906095552 +1978-07-01,7.70491803278689 +1978-08-01,7.84313725490197 +1978-09-01,8.30618892508144 +1978-10-01,8.92857142857144 +1978-11-01,8.88529886914379 +1978-12-01,9.01771336553946 +1979-01-01,9.28000000000001 +1979-02-01,9.85691573926867 +1979-03-01,10.0946372239748 +1979-04-01,10.4851330203443 +1979-05-01,10.8527131782946 +1979-06-01,10.8895705521472 +1979-07-01,11.2633181126332 +1979-08-01,11.8181818181818 +1979-09-01,12.1804511278195 +1979-10-01,12.0715350223547 +1979-11-01,12.6112759643917 +1979-12-01,13.2939438700148 +1980-01-01,13.909224011713 +1980-02-01,14.1823444283647 +1980-03-01,14.756446991404 +1980-04-01,14.7308781869689 +1980-05-01,14.4055944055944 +1980-06-01,14.3845089903181 +1980-07-01,13.1326949384405 +1980-08-01,12.8726287262873 +1980-09-01,12.6005361930295 +1980-10-01,12.7659574468085 +1980-11-01,12.6482213438735 +1980-12-01,12.51629726206 +1981-01-01,11.8251928020566 +1981-02-01,11.4068441064639 +1981-03-01,10.4868913857678 +1981-04-01,10.0 +1981-05-01,9.77995110024451 +1981-06-01,9.55259975816204 +1981-07-01,10.7617896009674 +1981-08-01,10.8043217286915 +1981-09-01,10.952380952381 +1981-10-01,10.1415094339623 +1981-11-01,9.59064327485381 +1981-12-01,8.92236384704519 +1982-01-01,8.39080459770114 +1982-02-01,7.62229806598407 +1982-03-01,6.77966101694915 +1982-04-01,6.50953984287317 +1982-05-01,6.68151447661469 +1982-06-01,7.06401766004414 +1982-07-01,6.44104803493449 +1982-08-01,5.85048754062838 +1982-09-01,5.04291845493562 +1982-10-01,5.1391862955032 +1982-11-01,4.58911419423692 +1982-12-01,3.82978723404256 +1983-01-01,3.71155885471899 +1983-02-01,3.48837209302326 +1983-03-01,3.5978835978836 +1983-04-01,3.89884088514226 +1983-05-01,3.5490605427975 +1983-06-01,2.57731958762887 +1983-07-01,2.46153846153846 +1983-08-01,2.55885363357216 +1983-09-01,2.86006128702757 +1983-10-01,2.85132382892057 +1983-11-01,3.26530612244898 +1983-12-01,3.79098360655737 +1984-01-01,4.1922290388548 +1984-02-01,4.59652706843718 +1984-03-01,4.80081716036773 +1984-04-01,4.56389452332656 +1984-05-01,4.23387096774194 +1984-06-01,4.22110552763818 +1984-07-01,4.2042042042042 +1984-08-01,4.29141716566866 +1984-09-01,4.27010923535255 +1984-10-01,4.25742574257425 +1984-11-01,4.05138339920948 +1984-12-01,3.94866732477789 +1985-01-01,3.53287536800785 +1985-02-01,3.515625 +1985-03-01,3.70370370370371 +1985-04-01,3.68574199806014 +1985-05-01,3.77176015473887 +1985-06-01,3.76084860173579 +1985-07-01,3.55427473583095 +1985-08-01,3.34928229665073 +1985-09-01,3.14285714285714 +1985-10-01,3.22886989553657 +1985-11-01,3.51377018043686 +1985-12-01,3.79867046533714 +1986-01-01,3.88625592417063 +1986-02-01,3.1132075471698 +1986-03-01,2.25563909774436 +1986-04-01,1.59027128157157 +1986-05-01,1.49114631873253 +1986-06-01,1.76579925650557 +1986-07-01,1.57699443413728 +1986-08-01,1.57407407407406 +1986-09-01,1.75438596491229 +1986-10-01,1.47194112235511 +1986-11-01,1.28440366972477 +1986-12-01,1.09789569990851 +1987-01-01,1.45985401459854 +1987-02-01,2.10430009149132 +1987-03-01,3.03308823529411 +1987-04-01,3.77532228360957 +1987-05-01,3.85674931129477 +1987-06-01,3.65296803652968 +1987-07-01,3.9269406392694 +1987-08-01,4.28441203281677 +1987-09-01,4.35571687840289 +1987-10-01,4.53309156844969 +1987-11-01,4.52898550724636 +1987-12-01,4.43438914027149 +1988-01-01,4.04676258992805 +1988-02-01,3.94265232974909 +1988-03-01,3.92506690454951 +1988-04-01,3.9041703637977 +1988-05-01,3.89036251105217 +1988-06-01,3.9647577092511 +1988-07-01,4.13005272407734 +1988-08-01,4.02097902097902 +1988-09-01,4.17391304347826 +1988-10-01,4.24978317432784 +1988-11-01,4.24610051993069 +1988-12-01,4.41941074523398 +1989-01-01,4.66724286949006 +1989-02-01,4.82758620689656 +1989-03-01,4.97854077253219 +1989-04-01,5.12382578992315 +1989-05-01,5.36170212765957 +1989-06-01,5.16949152542374 +1989-07-01,4.97890295358649 +1989-08-01,4.70588235294118 +1989-09-01,4.34056761268782 +1989-10-01,4.49251247920134 +1989-11-01,4.65502909393182 +1989-12-01,4.6473029045643 +1990-01-01,5.20231213872832 +1990-02-01,5.26315789473685 +1990-03-01,5.233033524121 +1990-04-01,4.71161657189277 +1990-05-01,4.36187399030693 +1990-06-01,4.67365028203062 +1990-07-01,4.82315112540193 +1990-08-01,5.61797752808989 +1990-09-01,6.16 +1990-10-01,6.28980891719745 +1990-11-01,6.27482128673552 +1990-12-01,6.10626486915148 +1991-01-01,5.65149136577707 +1991-02-01,5.3125 +1991-03-01,4.89510489510491 +1991-04-01,4.88750969743985 +1991-05-01,4.95356037151703 +1991-06-01,4.69591993841416 +1991-07-01,4.44785276073618 +1991-08-01,3.79939209726442 +1991-09-01,3.39110776186887 +1991-10-01,2.92134831460675 +1991-11-01,2.98953662182362 +1991-12-01,3.0642750373692 +1992-01-01,2.60029717682022 +1992-02-01,2.81899109792283 +1992-03-01,3.1851851851852 +1992-04-01,3.18047337278108 +1992-05-01,3.02359882005901 +1992-06-01,3.08823529411763 +1992-07-01,3.15712187958885 +1992-08-01,3.14787701317717 +1992-09-01,2.98833819241984 +1992-10-01,3.20232896652111 +1992-11-01,3.04789550072568 +1992-12-01,2.90065264684554 +1993-01-01,3.25850832729905 +1993-02-01,3.24675324675326 +1993-03-01,3.08686288585784 +1993-04-01,3.2258064516129 +1993-05-01,3.22118826055833 +1993-06-01,2.99572039942941 +1993-07-01,2.77580071174378 +1993-08-01,2.76792051100072 +1993-09-01,2.689313517339 +1993-10-01,2.75035260930886 +1993-11-01,2.67605633802819 +1993-12-01,2.74841437632136 +1994-01-01,2.52454417952314 +1994-02-01,2.51572327044024 +1994-03-01,2.50696378830084 +1994-04-01,2.36111111111111 +1994-05-01,2.28848821081832 +1994-06-01,2.49307479224375 +1994-07-01,2.77008310249306 +1994-08-01,2.90055248618783 +1994-09-01,2.96347346657477 +1994-10-01,2.60809883321896 +1994-11-01,2.67489711934154 +1994-12-01,2.67489711934154 +1995-01-01,2.80437756497949 +1995-02-01,2.86298568507159 +1995-03-01,2.85326086956522 +1995-04-01,3.05291723202172 +1995-05-01,3.1864406779661 +1995-06-01,3.04054054054055 +1995-07-01,2.76280323450136 +1995-08-01,2.61744966442954 +1995-09-01,2.54350736278447 +1995-10-01,2.80936454849497 +1995-11-01,2.60521042084169 +1995-12-01,2.53841015364063 +1996-01-01,2.72787757817697 +1996-02-01,2.65076209410206 +1996-03-01,2.84015852047556 +1996-04-01,2.89664252797894 +1996-05-01,2.89093298291722 +1996-06-01,2.75409836065573 +1996-07-01,2.95081967213114 +1996-08-01,2.87769784172662 +1996-09-01,3.00261096605744 +1996-10-01,2.99284320104101 +1996-11-01,3.25520833333334 +1996-12-01,3.32247557003257 +1997-01-01,3.0440414507772 +1997-02-01,3.03421562298256 +1997-03-01,2.7617212588311 +1997-04-01,2.49520153550862 +1997-05-01,2.23499361430395 +1997-06-01,2.29738353541801 +1997-07-01,2.22929936305732 +1997-08-01,2.22504767959313 +1997-09-01,2.15462610899872 +1997-10-01,2.08464939987364 +1997-11-01,1.82849936948297 +1997-12-01,1.70239596469106 +1998-01-01,1.5713387806411 +1998-02-01,1.44110275689222 +1998-03-01,1.37499999999999 +1998-04-01,1.43570536828965 +1998-05-01,1.68644597126797 +1998-06-01,1.68434185901434 +1998-07-01,1.6822429906542 +1998-08-01,1.61691542288557 +1998-09-01,1.48883374689826 +1998-10-01,1.4851485148515 +1998-11-01,1.54798761609908 +1998-12-01,1.61190328580284 +1999-01-01,1.67079207920794 +1999-02-01,1.6059295861643 +1999-03-01,1.72626387176327 +1999-04-01,2.27692307692307 +1999-05-01,2.08845208845208 +1999-06-01,1.96319018404907 +1999-07-01,2.14460784313725 +1999-08-01,2.26438188494492 +1999-09-01,2.62836185819072 +1999-10-01,2.56097560975609 +1999-11-01,2.62195121951219 +1999-12-01,2.68456375838926 +2000-01-01,2.73889227023737 +2000-02-01,3.22188449848025 +2000-03-01,3.75757575757575 +2000-04-01,3.06859205776174 +2000-05-01,3.18892900120338 +2000-06-01,3.73044524669075 +2000-07-01,3.65926814637075 +2000-08-01,3.41113105924597 +2000-09-01,3.45443716497914 +2000-10-01,3.44827586206897 +2000-11-01,3.44622697563873 +2000-12-01,3.38680926916221 +2001-01-01,3.73222748815164 +2001-02-01,3.53356890459364 +2001-03-01,2.92056074766355 +2001-04-01,3.26911850554583 +2001-05-01,3.61516034985422 +2001-06-01,3.24825986078885 +2001-07-01,2.7199074074074 +2001-08-01,2.7199074074074 +2001-09-01,2.64824409902132 +2001-10-01,2.12643678160919 +2001-11-01,1.89546237794372 +2001-12-01,1.55172413793103 +2002-01-01,1.14220445459737 +2002-02-01,1.13765642775882 +2002-03-01,1.47559591373441 +2002-04-01,1.63934426229508 +2002-05-01,1.1817670230726 +2002-06-01,1.06741573033709 +2002-07-01,1.46478873239436 +2002-08-01,1.80281690140844 +2002-09-01,1.51430173864273 +2002-10-01,2.02588632526732 +2002-11-01,2.19842164599775 +2002-12-01,2.37691001697794 +2003-01-01,2.5974025974026 +2003-02-01,2.98087739032619 +2003-03-01,3.0201342281879 +2003-04-01,2.22469410456062 +2003-05-01,2.05784204671857 +2003-06-01,2.11228460255697 +2003-07-01,2.10993892282067 +2003-08-01,2.15827338129497 +2003-09-01,2.32044198895027 +2003-10-01,2.04081632653061 +2003-11-01,1.7650303364589 +2003-12-01,1.87949143173024 +2004-01-01,1.92625206384149 +2004-02-01,1.69306389950846 +2004-03-01,1.73724212812162 +2004-04-01,2.28509249183896 +2004-05-01,3.05177111716622 +2004-06-01,3.26619488296135 +2004-07-01,2.99075584556824 +2004-08-01,2.65438786565547 +2004-09-01,2.53779697624191 +2004-10-01,3.18918918918919 +2004-11-01,3.52303523035231 +2004-12-01,3.25556158437331 +2005-01-01,2.96976241900649 +2005-02-01,3.0075187969925 +2005-03-01,3.14834578441835 +2005-04-01,3.51063829787233 +2005-05-01,2.80274986779483 +2005-06-01,2.53031101739589 +2005-07-01,3.16789862724393 +2005-08-01,3.64116094986808 +2005-09-01,4.68667719852555 +2005-10-01,4.34782608695652 +2005-11-01,3.45549738219894 +2005-12-01,3.41565948502364 +2006-01-01,3.98531725222863 +2006-02-01,3.59749739311782 +2006-03-01,3.3626487325401 +2006-04-01,3.54573484069888 +2006-05-01,4.16666666666665 +2006-06-01,4.31876606683804 +2006-07-01,4.1453428863869 +2006-08-01,3.81873727087576 +2006-09-01,2.06237424547282 +2006-10-01,1.30522088353415 +2006-11-01,1.97368421052632 +2006-12-01,2.54065040650407 +2007-01-01,2.07564296520424 +2007-02-01,2.41519879214898 +2007-03-01,2.77877877877878 +2007-04-01,2.57369727047146 +2007-05-01,2.69086419753088 +2007-06-01,2.68703794972894 +2007-07-01,2.35823095823096 +2007-08-01,1.97008337420303 +2007-09-01,2.75505174963037 +2007-10-01,3.53617443012883 +2007-11-01,4.30620347394541 +2007-12-01,4.0812685827552 +2008-01-01,4.28029404790135 +2008-02-01,4.02655541304871 +2008-03-01,3.98145623125168 +2008-04-01,3.93688977482752 +2008-05-01,4.17554304180352 +2008-06-01,5.02179004761172 +2008-07-01,5.60012290025396 +2008-08-01,5.37185511526235 +2008-09-01,4.9369274305722 +2008-10-01,3.65518627713749 +2008-11-01,1.06957469180737 +2008-12-01,0.0914129006455893 +2009-01-01,0.0298465036952666 +2009-02-01,0.236191088037882 +2009-03-01,-0.383556254917384 +2009-04-01,-0.736885715216724 +2009-05-01,-1.28143579895861 +2009-06-01,-1.42677604368987 +2009-07-01,-2.09716135367605 +2009-08-01,-1.48434861196061 +2009-09-01,-1.28620596664275 +2009-10-01,-0.182848277486101 +2009-11-01,1.83829586913028 +2009-12-01,2.72133112620585 +2010-01-01,2.62570864295763 +2010-02-01,2.14333177814537 +2010-03-01,2.31395944694395 +2010-04-01,2.23644719564809 +2010-05-01,2.02098608409396 +2010-06-01,1.05334897284567 +2010-07-01,1.23519277830146 +2010-08-01,1.1481045618392 +2010-09-01,1.14368265815928 +2010-10-01,1.17218760552695 +2010-11-01,1.14316091157028 +2010-12-01,1.49572352731431 +2011-01-01,1.63184685744875 +2011-02-01,2.10758462865817 +2011-03-01,2.68160326424087 +2011-04-01,3.16363085927646 +2011-05-01,3.56864578463458 +2011-06-01,3.55882825224234 +2011-07-01,3.62871598222108 +2011-08-01,3.77120817911978 +2011-09-01,3.8683568410403 +2011-10-01,3.5251999213574 +2011-11-01,3.39437759080085 +2011-12-01,2.96241884487108 +2012-01-01,2.92521671215085 +2012-02-01,2.87109878043822 +2012-03-01,2.65139819302177 +2012-04-01,2.30273981129894 +2012-05-01,1.7042537749376 +2012-06-01,1.66399376223851 +2012-07-01,1.40845070422536 +2012-08-01,1.69237899755015 +2012-09-01,1.99128208066498 +2012-10-01,2.16234359887113 +2012-11-01,1.76413384608586 +2012-12-01,1.74102236874756 +2013-01-01,1.59486466812257 +2013-02-01,1.97792350974904 +2013-03-01,1.47389621259677 +2013-04-01,1.06308538148945 +2013-05-01,1.36196505885168 +2013-06-01,1.75441654537688 +2013-07-01,1.9606816118444 +2013-08-01,1.51836755954321 +2013-09-01,1.18492526155215 +2013-10-01,0.963612704643408 +2013-11-01,1.23707220453391 +2013-12-01,1.50173561961839 +2014-01-01,1.57894736842106 +2014-02-01,1.12634925010552 +2014-03-01,1.51220287576309 +2014-04-01,1.95285789851675 +2014-05-01,2.12711154993668 +2014-06-01,2.07234137316707 +2014-07-01,1.9923286357643 +2014-08-01,1.69961133416282 +2014-09-01,1.65791867571505 +2014-10-01,1.66434021563205 +2014-11-01,1.32235518237088 +2014-12-01,0.756493269655739 +2015-01-01,-0.0893483130696457 +2015-02-01,-0.0251298018153031 +2015-03-01,-0.0736373908664181 +2015-04-01,-0.199517446176685 +2015-05-01,-0.0399327448507779 +2015-06-01,0.123771203685436 +2015-07-01,0.169569779643243 +2015-08-01,0.195079293005743 +2015-09-01,-0.0361297478059709 +2015-10-01,0.17057443573555 +2015-11-01,0.501797578667902 +2015-12-01,0.729519786041594 +2016-01-01,1.37308681383098 +2016-02-01,1.01779978016546 +2016-03-01,0.852536221142728 +2016-04-01,1.12511041889441 +2016-05-01,1.01932255419357 +2016-06-01,0.997326494523087 +2016-07-01,0.827138870498699 +2016-08-01,1.06287450276103 +2016-09-01,1.46378364748158 +2016-10-01,1.63598752091762 +2016-11-01,1.69253716250378 +2016-12-01,2.07462213296691 +2017-01-01,2.50004220905299 +2017-02-01,2.73795817148932 +2017-03-01,2.38061243344026 +2017-04-01,2.1996898784173 +2017-05-01,1.87487772084135 +2017-06-01,1.63348795525647 +2017-07-01,1.7279784563725 +2017-08-01,1.93897421205818 +2017-09-01,2.23296386500322 +2017-10-01,2.04112870197618 +2017-11-01,2.20258293868318 +2017-12-01,2.10908247456841 +2018-01-01,2.07050762027518 +2018-02-01,2.21179542123865 +2018-03-01,2.35971140397292 +2018-04-01,2.46274394333479 +2018-05-01,2.80101171480757 +2018-06-01,2.87154783531668 +2018-07-01,2.94951508664711 +2018-08-01,2.69918010418745 +2018-09-01,2.27697219419899 +2018-10-01,2.52246992860703 +2018-11-01,2.1766010321524 +2018-12-01,1.91015884863136 +2019-01-01,1.5512351381991 +2019-02-01,1.52013526593331 +2019-03-01,1.86252274056917 +2019-04-01,1.99643977553026 +2019-05-01,1.79022846876639 +2019-06-01,1.64848465607624 +2019-07-01,1.81146480639351 +2019-08-01,1.74977988942916 +2019-09-01,1.71130451316952 +2019-10-01,1.7640429444214 +2019-11-01,2.05127798189161 +2019-12-01,2.28512974012172 +2020-01-01,2.48657195525045 +2020-02-01,2.33487356394594 +2020-03-01,1.53932699191982 +2020-04-01,0.329096686336815 +2020-05-01,0.117926370210715 +2020-06-01,0.645733047555484 +2020-07-01,0.986081825303721 +2020-08-01,1.3096453823307 +2020-09-01,1.37132486105647 +2020-10-01,1.18206616772747 +2020-11-01,1.17453578426798 +2020-12-01,1.36200549471932 +2021-01-01,1.39976974156009 +2021-02-01,1.67621521737451 +2021-03-01,2.61976250895919 +2021-04-01,4.15969483870212 +2021-05-01,4.99270653759447 +2021-06-01,5.39145141332134 +2021-07-01,5.36547523938539 +2021-08-01,5.25127155487501 +2021-09-01,5.39034885507916 +2021-10-01,6.2218689033289 +2021-11-01,6.80900283980648 +2021-12-01,7.03640286554513 +2022-01-01,7.47987246828913 +2022-02-01,7.87106389773928 +2022-03-01,8.54245555484244 +2022-04-01,8.25862934088236 +2022-05-01,8.58151154367651 +2022-06-01,9.05975796478416 +2022-07-01,8.52481474562553 +2022-08-01,8.26269250311623 +2022-09-01,8.20166964383362 +2022-10-01,7.7454273308049 +2022-11-01,7.11032279419173 +2022-12-01,6.45440133141082 +2023-01-01,6.41014696885625 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].csv index e16c76dff888..a890b9fba3cf 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_get_cpi[get_cpi-kwargs_dict5].csv @@ -1 +1,243 @@ -"" +,united_states-monthly-growth_same +2002-12-01,2.8 +2003-01-01,2.4 +2003-02-01,3.1 +2003-03-01,3.2 +2003-04-01,2.3 +2003-05-01,2.0 +2003-06-01,2.1 +2003-07-01,2.1 +2003-08-01,2.2 +2003-09-01,2.4 +2003-10-01,2.0 +2003-11-01,1.7 +2003-12-01,1.8 +2004-01-01,2.0 +2004-02-01,1.6 +2004-03-01,1.5 +2004-04-01,2.1 +2004-05-01,3.1 +2004-06-01,3.4 +2004-07-01,3.0 +2004-08-01,2.6 +2004-09-01,2.4 +2004-10-01,3.4 +2004-11-01,3.9 +2004-12-01,3.5 +2005-01-01,3.1 +2005-02-01,3.0 +2005-03-01,3.2 +2005-04-01,3.8 +2005-05-01,3.0 +2005-06-01,2.6 +2005-07-01,3.4 +2005-08-01,4.1 +2005-09-01,5.7 +2005-10-01,5.1 +2005-11-01,3.8 +2005-12-01,3.7 +2006-01-01,4.5 +2006-02-01,4.0 +2006-03-01,3.7 +2006-04-01,3.8 +2006-05-01,4.4 +2006-06-01,4.6 +2006-07-01,4.4 +2006-08-01,3.9 +2006-09-01,1.4 +2006-10-01,0.4 +2006-11-01,1.2 +2006-12-01,2.0 +2007-01-01,1.4 +2007-02-01,1.8 +2007-03-01,2.4 +2007-04-01,2.2 +2007-05-01,2.4 +2007-06-01,2.4 +2007-07-01,2.0 +2007-08-01,1.5 +2007-09-01,2.6 +2007-10-01,3.7 +2007-11-01,4.8 +2007-12-01,4.5 +2008-01-01,4.8 +2008-02-01,4.5 +2008-03-01,4.4 +2008-04-01,4.5 +2008-05-01,4.8 +2008-06-01,6.0 +2008-07-01,6.8 +2008-08-01,6.5 +2008-09-01,5.9 +2008-10-01,4.2 +2008-11-01,0.8 +2008-12-01,-0.5 +2009-01-01,-0.5 +2009-02-01,-0.2 +2009-03-01,-1.0 +2009-04-01,-1.5 +2009-05-01,-2.2 +2009-06-01,-2.3 +2009-07-01,-3.1 +2009-08-01,-2.3 +2009-09-01,-2.0 +2009-10-01,-0.5 +2009-11-01,2.4 +2009-12-01,3.6 +2010-01-01,3.6 +2010-02-01,3.1 +2010-03-01,3.4 +2010-04-01,3.4 +2010-05-01,3.1 +2010-06-01,1.8 +2010-07-01,2.0 +2010-08-01,1.9 +2010-09-01,1.8 +2010-10-01,1.8 +2010-11-01,1.5 +2010-12-01,1.9 +2011-01-01,2.0 +2011-02-01,2.6 +2011-03-01,3.3 +2011-04-01,3.9 +2011-05-01,4.4 +2011-06-01,4.4 +2011-07-01,4.4 +2011-08-01,4.6 +2011-09-01,4.7 +2011-10-01,4.2 +2011-11-01,4.0 +2011-12-01,3.4 +2012-01-01,3.3 +2012-02-01,3.2 +2012-03-01,2.8 +2012-04-01,2.3 +2012-05-01,1.5 +2012-06-01,1.5 +2012-07-01,1.4 +2012-08-01,1.6 +2012-09-01,2.0 +2012-10-01,2.2 +2012-11-01,1.7 +2012-12-01,1.7 +2013-01-01,1.5 +2013-02-01,2.0 +2013-03-01,1.4 +2013-04-01,0.8 +2013-05-01,1.2 +2013-06-01,1.7 +2013-07-01,1.8 +2013-08-01,1.3 +2013-09-01,0.8 +2013-10-01,0.5 +2013-11-01,0.9 +2013-12-01,1.2 +2014-01-01,1.3 +2014-02-01,0.7 +2014-03-01,1.2 +2014-04-01,1.8 +2014-05-01,2.0 +2014-06-01,1.9 +2014-07-01,1.8 +2014-08-01,1.4 +2014-09-01,1.4 +2014-10-01,1.3 +2014-11-01,0.9 +2014-12-01,0.2 +2015-01-01,-0.9 +2015-02-01,-0.9 +2015-03-01,-0.9 +2015-04-01,-1.1 +2015-05-01,-0.9 +2015-06-01,-0.8 +2015-07-01,-0.7 +2015-08-01,-0.7 +2015-09-01,-1.0 +2015-10-01,-0.8 +2015-11-01,-0.3 +2015-12-01,0.0 +2016-01-01,0.8 +2016-02-01,0.3 +2016-03-01,0.1 +2016-04-01,0.5 +2016-05-01,0.3 +2016-06-01,0.2 +2016-07-01,0.0 +2016-08-01,0.3 +2016-09-01,0.8 +2016-10-01,1.0 +2016-11-01,1.1 +2016-12-01,1.6 +2017-01-01,2.1 +2017-02-01,2.5 +2017-03-01,2.0 +2017-04-01,1.8 +2017-05-01,1.4 +2017-06-01,1.1 +2017-07-01,1.3 +2017-08-01,1.5 +2017-09-01,1.9 +2017-10-01,1.7 +2017-11-01,1.9 +2017-12-01,1.8 +2018-01-01,1.7 +2018-02-01,1.9 +2018-03-01,2.1 +2018-04-01,2.2 +2018-05-01,2.6 +2018-06-01,2.7 +2018-07-01,2.8 +2018-08-01,2.5 +2018-09-01,2.0 +2018-10-01,2.3 +2018-11-01,1.8 +2018-12-01,1.5 +2019-01-01,1.1 +2019-02-01,1.0 +2019-03-01,1.4 +2019-04-01,1.6 +2019-05-01,1.3 +2019-06-01,1.1 +2019-07-01,1.4 +2019-08-01,1.3 +2019-09-01,1.2 +2019-10-01,1.3 +2019-11-01,1.7 +2019-12-01,2.0 +2020-01-01,2.2 +2020-02-01,2.1 +2020-03-01,1.0 +2020-04-01,-0.5 +2020-05-01,-0.7 +2020-06-01,0.0 +2020-07-01,0.5 +2020-08-01,0.9 +2020-09-01,1.0 +2020-10-01,0.8 +2020-11-01,0.9 +2020-12-01,1.1 +2021-01-01,1.2 +2021-02-01,1.6 +2021-03-01,2.8 +2021-04-01,4.8 +2021-05-01,5.9 +2021-06-01,6.3 +2021-07-01,6.2 +2021-08-01,6.1 +2021-09-01,6.1 +2021-10-01,7.1 +2021-11-01,7.8 +2021-12-01,8.0 +2022-01-01,8.5 +2022-02-01,8.9 +2022-03-01,9.8 +2022-04-01,9.3 +2022-05-01,9.6 +2022-06-01,10.1 +2022-07-01,9.3 +2022-08-01,8.8 +2022-09-01,8.7 +2022-10-01,8.0 +2022-11-01,7.1 +2022-12-01,6.1 +2023-01-01,6.0 diff --git a/tests/openbb_terminal/economy/csv/test_fred_model/test_load_data[get_series_data-kwargs_dict0].csv b/tests/openbb_terminal/economy/csv/test_fred_model/test_load_data[get_series_data-kwargs_dict0].csv index 8b65b8785130..2969c944122b 100644 --- a/tests/openbb_terminal/economy/csv/test_fred_model/test_load_data[get_series_data-kwargs_dict0].csv +++ b/tests/openbb_terminal/economy/csv/test_fred_model/test_load_data[get_series_data-kwargs_dict0].csv @@ -822,3 +822,17 @@ 2023-02-22,3.93 2023-02-23,3.88 2023-02-24,3.95 +2023-02-27,3.92 +2023-02-28,3.92 +2023-03-01,4.01 +2023-03-02,4.08 +2023-03-03,3.97 +2023-03-06,3.98 +2023-03-07,3.97 +2023-03-08,3.98 +2023-03-09,3.93 +2023-03-10,3.7 +2023-03-13,3.55 +2023-03-14,3.64 +2023-03-15,3.51 +2023-03-16,3.56 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_balance.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_balance.csv new file mode 100644 index 000000000000..af9e169334ca --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_balance.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,-14.8599779853008,-10.9103983787705 +2021,-12.0643385283542,-4.38138393970716 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_cpi.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_cpi.csv new file mode 100644 index 000000000000..c0b6cdca7388 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_cpi.csv @@ -0,0 +1,9 @@ +TIME,united_states,canada +2020-01,2.118652,1.80917 +2020-04,0.3642956,0.02445586 +2020-07,1.222386,0.2682927 +2020-10,1.239488,0.7816316 +2021-01,1.898514,1.436222 +2021-04,4.848945,3.349633 +2021-07,5.335693,4.062272 +2021-10,6.689106,4.726127 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_debt.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_debt.csv new file mode 100644 index 000000000000..d532693a9f6d --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_debt.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,160.3383,146.0698 +2021,148.0194,134.0756 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_fgdp.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_fgdp.csv new file mode 100644 index 000000000000..bad30730c630 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_fgdp.csv @@ -0,0 +1,9 @@ +TIME,united_states,canada +2020-01,-4.61840480160517,-8.35396749824822 +2020-04,-29.8574197741433,-37.3776227888085 +2020-07,35.3171391372906,41.0750818731529 +2020-10,3.90887822555523,9.06232614203013 +2021-01,6.31545495620863,4.44400949928597 +2021-04,7.00489594009191,-3.13075289989114 +2021-07,2.652766290028,5.33479715083745 +2021-10,6.95725734423304,6.56605086723929 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_gdp.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_gdp.csv new file mode 100644 index 000000000000..c8de225e87d9 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_gdp.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,63480.861222,47265.698235 +2021,70181.12175,53101.315002 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_qgdp.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_qgdp.csv new file mode 100644 index 000000000000..7eff406bd4c6 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_qgdp.csv @@ -0,0 +1,9 @@ +TIME,united_states,canada +2020-01,0.820082981,-0.467293746 +2020-04,-8.350640156,-12.211942682 +2020-07,-2.024010121,-4.651911857 +2020-10,-1.516619933,-2.937785714 +2021-01,1.19193505,0.471026779 +2021-04,12.460854406,12.133964192 +2021-07,4.955654481,4.330050305 +2021-10,5.717100091,3.861233437 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_revenue.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_revenue.csv new file mode 100644 index 000000000000..c30642331981 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_revenue.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,32.4460527336659,42.7124548747082 +2021,32.8732947571574,42.2933689509718 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_rgdp.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_rgdp.csv new file mode 100644 index 000000000000..7eff406bd4c6 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_rgdp.csv @@ -0,0 +1,9 @@ +TIME,united_states,canada +2020-01,0.820082981,-0.467293746 +2020-04,-8.350640156,-12.211942682 +2020-07,-2.024010121,-4.651911857 +2020-10,-1.516619933,-2.937785714 +2021-01,1.19193505,0.471026779 +2021-04,12.460854406,12.133964192 +2021-07,4.955654481,4.330050305 +2021-10,5.717100091,3.861233437 diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_spending.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_spending.csv new file mode 100644 index 000000000000..6b270a9261cc --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_spending.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,47.3115551435357, +2021,44.9326415378956, diff --git a/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_trust.csv b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_trust.csv new file mode 100644 index 000000000000..3464cefa6fd0 --- /dev/null +++ b/tests/openbb_terminal/economy/csv/test_oecd_model/test_get_trust.csv @@ -0,0 +1,3 @@ +TIME,united_states,canada +2020,46.4917090465757,60.0424110070179 +2021,40.4625220436663,61.0411167292314 diff --git a/tests/openbb_terminal/economy/json/test_fred_model/test_output[check_series_id-kwargs_dict0].json b/tests/openbb_terminal/economy/json/test_fred_model/test_output[check_series_id-kwargs_dict0].json index d9fd72f94009..9d355cf0d27a 100644 --- a/tests/openbb_terminal/economy/json/test_fred_model/test_output[check_series_id-kwargs_dict0].json +++ b/tests/openbb_terminal/economy/json/test_fred_model/test_output[check_series_id-kwargs_dict0].json @@ -1 +1 @@ -[{"id": "DGS5", "realtime_start": "2023-02-27", "realtime_end": "2023-02-27", "title": "Market Yield on U.S. Treasury Securities at 5-Year Constant Maturity, Quoted on an Investment Basis", "observation_start": "1962-01-02", "observation_end": "2023-02-24", "frequency": "Daily", "frequency_short": "D", "units": "Percent", "units_short": "%", "seasonal_adjustment": "Not Seasonally Adjusted", "seasonal_adjustment_short": "NSA", "last_updated": "2023-02-27 15:22:09-06", "popularity": 77, "notes": "For further information regarding treasury constant maturity data, please refer to the H.15 Statistical Release notes (https://www.federalreserve.gov/releases/h15/default.htm) and the Treasury Yield Curve Methodology (https://home.treasury.gov/policy-issues/financing-the-government/interest-rate-statistics/treasury-yield-curve-methodology)."}] \ No newline at end of file +[{"id": "DGS5", "realtime_start": "2023-03-20", "realtime_end": "2023-03-20", "title": "Market Yield on U.S. Treasury Securities at 5-Year Constant Maturity, Quoted on an Investment Basis", "observation_start": "1962-01-02", "observation_end": "2023-03-16", "frequency": "Daily", "frequency_short": "D", "units": "Percent", "units_short": "%", "seasonal_adjustment": "Not Seasonally Adjusted", "seasonal_adjustment_short": "NSA", "last_updated": "2023-03-17 15:25:10-05", "popularity": 77, "notes": "For further information regarding treasury constant maturity data, please refer to the H.15 Statistical Release notes (https://www.federalreserve.gov/releases/h15/default.htm) and the Treasury Yield Curve Methodology (https://home.treasury.gov/policy-issues/financing-the-government/interest-rate-statistics/treasury-yield-curve-methodology)."}] \ No newline at end of file diff --git a/tests/openbb_terminal/economy/test_economy_controller.py b/tests/openbb_terminal/economy/test_economy_controller.py index 1d61f2963bc9..46f19263c86c 100644 --- a/tests/openbb_terminal/economy/test_economy_controller.py +++ b/tests/openbb_terminal/economy/test_economy_controller.py @@ -613,6 +613,219 @@ def test_call_func_expect_queue(expected_queue, func, queue): limit=20, ), ), + ( + "call_gdp", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_gdp", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + units="USD_CAP", + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_rgdp", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_real_gdp", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + raw=False, + units="PC_CHGPY", + export="csv", + sheet_name=None, + ), + ), + ( + "call_fgdp", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_gdp_forecast", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + quarterly=False, + types="real", + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_debt", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_debt", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_cpi", + [ + "--countries=united states", + "--frequency=monthly", + "--units=growth_same", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "fred_view.plot_cpi", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + frequency="monthly", + units="growth_same", + harmonized=False, + options=False, + smart_select=True, + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_ccpi", + [ + "--countries=united states", + "--frequency=M", + "--perspective=TOT", + "--units=AGRWTH", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_cpi", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + frequency="M", + perspective="TOT", + units="AGRWTH", + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_balance", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_balance", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_revenue", + [ + "--countries=united states", + "--units=PC_GDP", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_revenue", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + units="PC_GDP", + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_spending", + [ + "--countries=united states", + "--units=PC_GDP", + "--perspective=TOT", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_spending", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + perspective="TOT", + units="PC_GDP", + raw=False, + export="csv", + sheet_name=None, + ), + ), + ( + "call_trust", + [ + "--countries=united states", + "--start=2021-01-01", + "--end=2023-01-01", + "--export=csv", + ], + "oecd_view.plot_trust", + [], + dict( + countries=["united states"], + start_date=datetime.datetime(2021, 1, 1, 0, 0), + end_date=datetime.datetime(2023, 1, 1, 0, 0), + raw=False, + export="csv", + sheet_name=None, + ), + ), ], ) def test_call_func( diff --git a/tests/openbb_terminal/economy/test_oecd_model.py b/tests/openbb_terminal/economy/test_oecd_model.py new file mode 100644 index 000000000000..fa3f7f903511 --- /dev/null +++ b/tests/openbb_terminal/economy/test_oecd_model.py @@ -0,0 +1,114 @@ +from datetime import datetime + +import pandas as pd +import pytest + +from openbb_terminal.economy import oecd_model + + +@pytest.mark.vcr +def test_get_gdp(recorder): + """Test get_gdp""" + data = oecd_model.get_gdp( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_rgdp(recorder): + """Test get_real_gdp""" + data = oecd_model.get_real_gdp( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_fgdp(recorder): + """Test get_gdp_forecast""" + data = oecd_model.get_gdp_forecast( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_debt(recorder): + """Test get_debt""" + data = oecd_model.get_debt( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_cpi(recorder): + """Test get_cpi""" + data = oecd_model.get_cpi( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_balance(recorder): + """Test get_balance""" + data = oecd_model.get_balance( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_revenue(recorder): + """Test get_revenue""" + data = oecd_model.get_revenue( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_spending(recorder): + """Test get_spending""" + data = oecd_model.get_spending( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) + + +@pytest.mark.vcr +def test_get_trust(recorder): + """Test get_trust""" + data = oecd_model.get_trust( + countries=["united_states", "canada"], + start_date=datetime.strptime("2020-01-01", "%Y-%m-%d"), + end_date=datetime.strptime("2022-01-31", "%Y-%m-%d"), + ) + assert isinstance(data, pd.DataFrame) + recorder.capture(data) diff --git a/tests/openbb_terminal/economy/txt/test_economy_controller/test_print_help.txt b/tests/openbb_terminal/economy/txt/test_economy_controller/test_print_help.txt index c0e3c589ad44..748c9982a9da 100644 --- a/tests/openbb_terminal/economy/txt/test_economy_controller/test_print_help.txt +++ b/tests/openbb_terminal/economy/txt/test_economy_controller/test_print_help.txt @@ -1,21 +1,32 @@ - overview show a market overview of either indices, bonds or currencies [WallStreetJournal] - futures display a futures and commodities overview [WallStreetJournal, Finviz] - map S&P500 index stocks map [Finviz] - bigmac The Economist Big Mac index [Nasdaq] - events show economic calendar [Nasdaq] - edebt show external debt statistics for various countries [Wikipedia] + overview show a market overview of either indices, bonds or currencies [WallStreetJournal] + futures display a futures and commodities overview [WallStreetJournal, Finviz] + map S&P500 index stocks map [Finviz] + bigmac The Economist Big Mac index [Nasdaq] + events show economic calendar [Nasdaq] + edebt show external debt statistics for various countries [Wikipedia] - rtps real-time performance sectors [AlphaVantage] - valuation valuation of sectors, industry, country [Finviz] - performance performance of sectors, industry, country [Finviz] - spectrum spectrum of sectors, industry, country [Finviz] + rtps real-time performance sectors [AlphaVantage] + valuation valuation of sectors, industry, country [Finviz] + performance performance of sectors, industry, country [Finviz] + spectrum spectrum of sectors, industry, country [Finviz] + +Country Performance: + gdp Show nominal Gross Domestic Product (GDP) [OECD] + rgdp Show real Gross Domestic Product (GDP) [OECD] + fgdp Show forecasts of nominal and real Gross Domestic Product (GDP) [OECD] + debt Show government debt-to-GDP ratio [OECD] + cpi obtain the (harmonized) Consumer Price Index (CPI) [FRED] + ccpi obtain components of the CPI including Food, Energy and Total [OECD] + balance Show Government defict or surplus in capital income and expenditures [OECD] + revenue Show Government revenue based on tax income [OECD] + spending Show Government spending as indicator of size of government [OECD] + trust Show Government trust based on surveys regarding confidence in the government [OECD] Databases: - macro collect macro data for a country or countries [EconDB] - treasury obtain U.S. treasury rates [EconDB] - cpi obtain (harmonized) Consumer Price Indices for any country [FRED] - fred collect macro data from FRED based on a series ID [FRED] - index find and plot any (major) index on the market [YahooFinance] + macro collect macro data for a country or countries + treasury obtain U.S. treasury rates [EconDB] + fred collect macro data from FRED based on a series ID [FRED] + index find and plot any (major) index on the market [YahooFinance] Stored datasets: